BookRemoveForm::getQuestion

public BookRemoveForm::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/book/src/Form/BookRemoveForm.php, line 87 Class BookRemoveForm Remove form for book module. Namespace Drupal\book\Form Code public function getQuestion() { return $this->t('Are you sure you want to remove %title from the book hierarchy?', array('%title' => $this-

SearchQuery::$searchExpression

The keywords and advanced search options that are entered by the user. Type: string File core/modules/search/src/SearchQuery.php, line 82 Class SearchQuery Search query extender and helper functions. Namespace Drupal\search Code protected $searchExpression;

rdf_help

rdf_help($route_name, RouteMatchInterface $route_match) Implements hook_help(). File core/modules/rdf/rdf.module, line 15 Enables semantically enriched output for Drupal sites in the form of RDFa. Code function rdf_help($route_name, RouteMatchInterface $route_match) { switch ($route_name) { case 'help.page.rdf': $output = ''; $output .= '<h3>' . t('About') . '</h3>'; $output .= '<p>' . t('The RDF module enriches your content with metadata to let other

ImageToolkitInterface::save

public ImageToolkitInterface::save($destination) Writes an image resource to a destination file. Parameters string $destination: A string file URI or path where the image should be saved. Return value bool TRUE on success, FALSE on failure. File core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php, line 90 Class ImageToolkitInterface Defines an interface for image toolkits. Namespace Drupal\Core\ImageToolkit Code public function save($destination);

Entity::invalidateTagsOnSave

protected Entity::invalidateTagsOnSave($update) Invalidates an entity's cache tags upon save. Parameters bool $update: TRUE if the entity has been updated, or FALSE if it has been inserted. File core/lib/Drupal/Core/Entity/Entity.php, line 524 Class Entity Defines a base entity class. Namespace Drupal\Core\Entity Code protected function invalidateTagsOnSave($update) { // An entity was created or updated: invalidate its list cache tags. (An // updated entity may start to appear in

SearchQuery::LOWER_CASE_OR

Indicates that lower-case "or" was in the search expression. The word "or" in lower case was found in the search expression. This probably means someone was trying to do an OR search but used lower-case instead of upper-case. See also SearchQuery::getStatus() File core/modules/search/src/SearchQuery.php, line 68 Class SearchQuery Search query extender and helper functions. Namespace Drupal\search Code const LOWER_CASE_OR = 4;

EntityType::$label_plural

The indefinite plural name of the type. Type: string File core/lib/Drupal/Core/Entity/EntityType.php, line 196 Class EntityType Provides an implementation of an entity type and its metadata. Namespace Drupal\Core\Entity Code protected $label_plural = '';

UserStorage::isColumnSerial

protected UserStorage::isColumnSerial($table_name, $schema_name) Checks whether a field column should be treated as serial. Parameters $table_name: The name of the table the field column belongs to. $schema_name: The schema name of the field column. Return value bool TRUE if the column is serial, FALSE otherwise. Overrides SqlContentEntityStorage::isColumnSerial See also \Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema::processBaseTable() \Drupal\Core\Entity\Sql\SqlContentEntityStorageS

EntityDisplayModeController::formModeTypeSelection

public EntityDisplayModeController::formModeTypeSelection() Provides a list of eligible entity types for adding form modes. Return value array A list of entity types to add a form mode for. File core/modules/field_ui/src/Controller/EntityDisplayModeController.php, line 42 Class EntityDisplayModeController Provides methods for entity display mode routes. Namespace Drupal\field_ui\Controller Code public function formModeTypeSelection() { $entity_types = array(); foreach ($this->e

VariantInterface::setWeight

public VariantInterface::setWeight($weight) Sets the weight of the display variant. Parameters int $weight: The weight to set. File core/lib/Drupal/Core/Display/VariantInterface.php, line 61 Class VariantInterface Provides an interface for DisplayVariant plugins. Namespace Drupal\Core\Display Code public function setWeight($weight);