Same name in other branches
- 8.x-2.x src/ColorRGB.php \Drupal\color_field\ColorRGB::getRed()
Get the red value (rounded).
Return value
int The red value
3 calls to ColorRGB::getRed()
- ColorRGB::toHex in src/
ColorRGB.php - Get the color as a hex instance.
- ColorRGB::toHsl in src/
ColorRGB.php - Get the color as an HSL instance.
- ColorRGB::toString in src/
ColorRGB.php - A string representation of this color in the current format.
File
-
src/
ColorRGB.php, line 58
Class
- ColorRGB
- RGB represents the RGB color format.
Namespace
Drupal\color_fieldCode
public function getRed() : int {
return $this->red;
}