public Breakpoint::getLabel()
Returns the translated label.
Return value
string The translated label.
Overrides BreakpointInterface::getLabel
File
- core/modules/breakpoint/src/Breakpoint.php, line 18
Class
- Breakpoint
- Default object used for breakpoint plugins.
Namespace
Drupal\breakpoint
Code
1 2 3 | public function getLabel() { return $this ->t( $this ->pluginDefinition[ 'label' ], array (), array ( 'context' => 'breakpoint' )); } |
Please login to continue.