User

Defines the user entity class. The base table name here is plural, despite Drupal table naming standards, because "user" is a reserved word in many databases. Plugin annotation @ContentEntityType( id = "user", label = @Translation("User"), handlers = { "storage" = "Drupal\user\UserStorage", "storage_schema" = "Drupal\user\UserStorageSchema", "access" = "Drupal\user\UserAccessControlHandler", "list_builder" = "Drupal\user\UserListBuilder", "views_data" = "Drupal\user\Us

MenuLinkInterface::isTranslatable

public MenuLinkInterface::isTranslatable() Returns whether this link can be translated. Return value bool TRUE if the link can be translated, FALSE otherwise. File core/lib/Drupal/Core/Menu/MenuLinkInterface.php, line 95 Class MenuLinkInterface Defines an interface for classes providing a type of menu link. Namespace Drupal\Core\Menu Code public function isTranslatable();

FeedViewBuilder

View builder handler for aggregator feeds. Hierarchy class \Drupal\Core\Entity\EntityHandlerBase uses DependencySerializationTrait, StringTranslationTraitclass \Drupal\Core\Entity\EntityViewBuilder implements EntityHandlerInterface, EntityViewBuilderInterfaceclass \Drupal\aggregator\FeedViewBuilder File core/modules/aggregator/src/FeedViewBuilder.php, line 16 Namespace Drupal\aggregator Members Name Modifiers Type Description DependencySerializationTrait::$_serviceIds prot

TaxonomyController

Provides route responses for taxonomy.module. Hierarchy class \Drupal\Core\Controller\ControllerBase implements ContainerInjectionInterface uses LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\taxonomy\Controller\TaxonomyController File core/modules/taxonomy/src/Controller/TaxonomyController.php, line 13 Namespace Drupal\taxonomy\Controller Members Name Modifiers Type Description ControllerBase::$configF

DateHelper::weekDaysOrdered

public static DateHelper::weekDaysOrdered($weekdays) Reorders weekdays to match the first day of the week. Parameters array $weekdays: An array of weekdays. Return value array An array of weekdays reordered to match the first day of the week. The keys will remain unchanged. For example, if the first day of the week is set to be Monday, the array keys will be [1, 2, 3, 4, 5, 6, 0]. File core/lib/Drupal/Core/Datetime/DateHelper.php, line 258 Class DateHelper Defines Gregorian Calendar date

DiffOpChange::$type

Overrides DiffOp::$type File core/lib/Drupal/Component/Diff/Engine/DiffOpChange.php, line 11 Class DiffOpChange @todo document @private @subpackage DifferenceEngine Namespace Drupal\Component\Diff\Engine Code public $type = 'change';

FormState::$validate_handlers

Stores the gathered validation handlers. This property is uncacheable. Type: array File core/lib/Drupal/Core/Form/FormState.php, line 441 Class FormState Stores information about the state of a form. Namespace Drupal\Core\Form Code protected $validate_handlers = [];

install_run_task

install_run_task($task, &$install_state) Runs an individual installation task. Parameters $task: An array of information about the task to be run as returned by hook_install_tasks(). $install_state: An array of information about the current installation state. This is passed in by reference so that it can be modified by the task. Return value The output of the task function, if there is any. File core/includes/install.core.inc, line 578 API functions for installing Drupal. Code function

TwigExtension::getFunctions

public TwigExtension::getFunctions() File core/lib/Drupal/Core/Template/TwigExtension.php, line 123 Class TwigExtension A class providing Drupal Twig extensions. Namespace Drupal\Core\Template Code public function getFunctions() { return [ // This function will receive a renderable array, if an array is detected. new \Twig_SimpleFunction('render_var', array($this, 'renderVar')), // The url and path function are defined in close parallel to those found // in \Symfony\B

DATETIME_STORAGE_TIMEZONE

Defines the timezone that dates should be stored in. File core/modules/datetime/datetime.module, line 13 Field hooks to implement a simple datetime field. Code const DATETIME_STORAGE_TIMEZONE = 'UTC';