taxonomy_term_title

taxonomy_term_title(Term $term) Title callback for term pages. Parameters \Drupal\taxonomy\Entity\Term $term: A taxonomy term entity. Return value The term name to be used as the page title. File core/modules/taxonomy/taxonomy.module, line 462 Enables the organization of content into categories. Code function taxonomy_term_title(Term $term) { return $term->getName(); }

Node::getRevisionCreationTime

public Node::getRevisionCreationTime() Gets the node revision creation timestamp. Return value int The UNIX timestamp of when this revision was created. Overrides NodeInterface::getRevisionCreationTime File core/modules/node/src/Entity/Node.php, line 293 Class Node Defines the node entity class. Namespace Drupal\node\Entity Code public function getRevisionCreationTime() { return $this->get('revision_timestamp')->value; }

LocaleLookup::$langcode

A language code. Type: string File core/modules/locale/src/LocaleLookup.php, line 22 Class LocaleLookup A cache collector to allow for dynamic building of the locale cache. Namespace Drupal\locale Code protected $langcode;

DateFormatListBuilder::$dateFormatter

The date formatter service. Type: \Drupal\Core\Datetime\DateFormatterInterface File core/modules/system/src/DateFormatListBuilder.php, line 24 Class DateFormatListBuilder Defines a class to build a listing of date format entities. Namespace Drupal\system Code protected $dateFormatter;

EntityRouteAlterSubscriber::onRoutingRouteAlterSetType

public EntityRouteAlterSubscriber::onRoutingRouteAlterSetType(RouteBuildEvent $event) Applies parameter converters to route parameters. Parameters \Drupal\Core\Routing\RouteBuildEvent $event: The event to process. File core/lib/Drupal/Core/EventSubscriber/EntityRouteAlterSubscriber.php, line 46 Class EntityRouteAlterSubscriber Registers the 'type' of route parameter names that match an entity type. Namespace Drupal\Core\EventSubscriber Code public function onRoutingRouteAlterSetType(R

UPDATE_CURRENT

Project is up to date. File core/modules/update/update.module, line 44 Handles updates of Drupal core and contributed projects. Code const UPDATE_CURRENT = 5;

PoStreamWriter::$_uri

URI of the PO stream that is being written. Type: string File core/lib/Drupal/Component/Gettext/PoStreamWriter.php, line 15 Class PoStreamWriter Defines a Gettext PO stream writer. Namespace Drupal\Component\Gettext Code private $_uri;

LocaleLookup::$languageManager

The language manager. Type: \Drupal\Core\Language\LanguageManagerInterface File core/modules/locale/src/LocaleLookup.php, line 64 Class LocaleLookup A cache collector to allow for dynamic building of the locale cache. Namespace Drupal\locale Code protected $languageManager;

FieldItemList::generateSampleItems

public FieldItemList::generateSampleItems($count = 1) Populates a specified number of field items with valid sample data. Parameters int $count: The number of items to create. Overrides FieldItemListInterface::generateSampleItems File core/lib/Drupal/Core/Field/FieldItemList.php, line 260 Class FieldItemList Represents an entity field; that is, a list of field item objects. Namespace Drupal\Core\Field Code public function generateSampleItems($count = 1) { $field_definition = $this-&

EntityStorageInterface::getAggregateQuery

public EntityStorageInterface::getAggregateQuery($conjunction = 'AND') Gets an aggregated query instance. Parameters string $conjunction: (optional) The logical operator for the query, either: AND: all of the conditions on the query need to match. OR: at least one of the conditions on the query need to match. Return value \Drupal\Core\Entity\Query\QueryAggregateInterface The aggregated query object that can query the given entity type. See also \Drupal\Core\Entity\EntityStorageBase::getQ