RegisterEntityResolversCompilerPass::sort

protected RegisterEntityResolversCompilerPass::sort($services) Sorts by priority. Order services from highest priority number to lowest (reverse sorting). Parameters array $services: A nested array keyed on priority number. For each priority number, the value is an array of Symfony\Component\DependencyInjection\Reference objects, each a reference to a normalizer or encoder service. Return value array A flattened array of Reference objects from $services, ordered from high to low priority. Fil

FieldWidget::$field_types

An array of field types the widget supports. Type: array File core/lib/Drupal/Core/Field/Annotation/FieldWidget.php, line 63 Class FieldWidget Defines a FieldWidget annotation object. Namespace Drupal\Core\Field\Annotation Code public $field_types = array();

FileStorage::listAll

public FileStorage::listAll($prefix = '') Gets configuration object names starting with a given prefix. Given the following configuration objects: node.type.article node.type.page Passing the prefix 'node.type.' will return an array containing the above names. Parameters string $prefix: (optional) The prefix to search for. If omitted, all configuration object names that exist are returned. Return value array An array containing matching configuration object names. Overrides StorageInterface

comment_theme

comment_theme() Implements hook_theme(). File core/modules/comment/comment.module, line 126 Enables users to comment on published content. Code function comment_theme() { return array( 'comment' => array( 'render element' => 'elements', ), 'field__comment' => array( 'base hook' => 'field', ), ); }

FieldStorageConfig::$id

The field ID. The ID consists of 2 parts: the entity type and the field name. Example: node.body, user.field_main_image. Type: string File core/modules/field/src/Entity/FieldStorageConfig.php, line 62 Class FieldStorageConfig Defines the Field storage configuration entity. Namespace Drupal\field\Entity Code protected $id;

PoStreamReader::readItem

public PoStreamReader::readItem() Reads and returns a PoItem (source/translation pair). Return value \Drupal\Component\Gettext\PoItem Wrapper for item data instance. Overrides PoReaderInterface::readItem File core/lib/Drupal/Component/Gettext/PoStreamReader.php, line 180 Class PoStreamReader Implements Gettext PO stream reader. Namespace Drupal\Component\Gettext Code public function readItem() { // Clear out the last item. $this->_last_item = NULL; // Read until finished wit

FieldItemBase::delete

public FieldItemBase::delete() Defines custom delete behavior for field values. This method is called during the process of deleting an entity, just before values are deleted from storage. Overrides FieldItemInterface::delete File core/lib/Drupal/Core/Field/FieldItemBase.php, line 204 Class FieldItemBase An entity field item. Namespace Drupal\Core\Field Code public function delete() { }

StorageCacheInterface

Defines an interface for cached configuration storage. Hierarchy interface \Drupal\Core\Config\StorageCacheInterface File core/lib/Drupal/Core/Config/StorageCacheInterface.php, line 8 Namespace Drupal\Core\Config Members Name Modifiers Type Description StorageCacheInterface::resetListCache public function Reset the static cache of the listAll() cache.

forum.views.inc

Provide views data for forum.module. File core/modules/forum/forum.views.inc Functions Name Description forum_views_data Implements hook_views_data().

ConfigurableLanguage::getWeight

public ConfigurableLanguage::getWeight() Gets the weight of the language. Return value int The weight, used to order languages with larger positive weights sinking items toward the bottom of lists. Overrides LanguageInterface::getWeight File core/modules/language/src/Entity/ConfigurableLanguage.php, line 222 Class ConfigurableLanguage Defines the ConfigurableLanguage entity. Namespace Drupal\language\Entity Code public function getWeight() { return $this->weight; }