Breakpoint::getLabel

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 public function getLabel() { return $this->t($this->pluginDefinition['label'], array(), array('context' => 'breakpoint')); }

Breakpoint::getGroup

public Breakpoint::getGroup() Returns the breakpoint group. Return value string The breakpoint group. Overrides BreakpointInterface::getGroup File core/modules/breakpoint/src/Breakpoint.php, line 53 Class Breakpoint Default object used for breakpoint plugins. Namespace Drupal\breakpoint Code public function getGroup() { return $this->pluginDefinition['group']; }

breakpoint.module

Manage breakpoints and breakpoint groups for responsive designs. File core/modules/breakpoint/breakpoint.module Functions Name Description breakpoint_help Implements hook_help(). breakpoint_themes_installed Implements hook_themes_installed() breakpoint_themes_uninstalled Implements hook_themes_uninstalled()

Breakpoint

Default object used for breakpoint plugins. Hierarchy class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterfaceclass \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, StringTranslationTraitclass \Drupal\breakpoint\Breakpoint implements BreakpointInterface See also \Drupal\breakpoint\BreakpointManager Plugin API File core/modules/breakpoint/src/Breakpoint.php, line 13 Namespace Drupal\breakpoint Members Name Modif

BreakLockForm::__construct

public BreakLockForm::__construct(EntityManagerInterface $entity_manager, SharedTempStoreFactory $temp_store_factory) Constructs a \Drupal\views_ui\Form\BreakLockForm object. Parameters \Drupal\Core\Entity\EntityManagerInterface $entity_manager: The Entity manager. \Drupal\user\SharedTempStoreFactory $temp_store_factory: The factory for the temp store object. File core/modules/views_ui/src/Form/BreakLockForm.php, line 38 Class BreakLockForm Builds the form to break the lock of an edited v

BreakLockForm::submitForm

public BreakLockForm::submitForm(array &$form, FormStateInterface $form_state) This is the default entity object builder function. It is called before any other submit handler to build the new entity object to be used by the following submit handlers. At this point of the form workflow the entity is validated and the form state can be updated, this way the subsequently invoked handlers can retrieve a regular entity object to act on. Generally this method should not be overridden unless the

BreakLockForm::getQuestion

public BreakLockForm::getQuestion() Returns the question to ask the user. Return value string The form question. The page title will be set to this value. Overrides ConfirmFormInterface::getQuestion File core/modules/views_ui/src/Form/BreakLockForm.php, line 63 Class BreakLockForm Builds the form to break the lock of an edited view. Namespace Drupal\views_ui\Form Code public function getQuestion() { return $this->t('Do you want to break the lock on view %name?', array('%name' =&g

BreakLockForm::getFormId

public BreakLockForm::getFormId() Returns a unique string identifying the form. Return value string The unique string identifying the form. Overrides EntityForm::getFormId File core/modules/views_ui/src/Form/BreakLockForm.php, line 56 Class BreakLockForm Builds the form to break the lock of an edited view. Namespace Drupal\views_ui\Form Code public function getFormId() { return 'views_ui_break_lock_confirm'; }

BreakLockForm::getDescription

public BreakLockForm::getDescription() Returns additional text to display as a description. Return value string The form description. Overrides EntityConfirmFormBase::getDescription File core/modules/views_ui/src/Form/BreakLockForm.php, line 70 Class BreakLockForm Builds the form to break the lock of an edited view. Namespace Drupal\views_ui\Form Code public function getDescription() { $locked = $this->tempStore->getMetadata($this->entity->id()); $account = $this->e

BreakLockForm::getConfirmText

public BreakLockForm::getConfirmText() Returns a caption for the button that confirms the action. Return value string The form confirmation text. Overrides EntityConfirmFormBase::getConfirmText File core/modules/views_ui/src/Form/BreakLockForm.php, line 90 Class BreakLockForm Builds the form to break the lock of an edited view. Namespace Drupal\views_ui\Form Code public function getConfirmText() { return $this->t('Break lock'); }