drupal_load_updates

drupal_load_updates() Loads .install files for installed modules to initialize the update system. File core/includes/install.inc, line 79 API functions for installing modules and themes. Code function drupal_load_updates() { foreach (drupal_get_installed_schema_version(NULL, FALSE, TRUE) as $module => $schema_version) { if ($schema_version > -1) { module_load_install($module); } } }

Link

Defines an object that holds information about a link. Hierarchy class \Drupal\Core\Link implements RenderableInterface uses LinkGeneratorTrait File core/lib/Drupal/Core/Link.php, line 11 Namespace Drupal\Core Members Name Modifiers Type Description Link::$text protected property The text of the link. Link::$url protected property The URL of the link. Link::createFromRoute public static function Creates a Link object from a given route name and parameters

Drupal::currentUser

public static Drupal::currentUser() Gets the current active user. Return value \Drupal\Core\Session\AccountProxyInterface File core/lib/Drupal.php, line 246 Contains \Drupal. Class Drupal Static Service Container wrapper. Code public static function currentUser() { return static::getContainer()->get('current_user'); }

ContextualLinkInterface::getOptions

public ContextualLinkInterface::getOptions() Returns the link options passed to the link generator. Return value array An associative array of options. File core/lib/Drupal/Core/Menu/ContextualLinkInterface.php, line 58 Class ContextualLinkInterface Defines a contextual link plugin. Namespace Drupal\Core\Menu Code public function getOptions();

Analyze

Displays analysis information for a view. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\views_ui\Form\Ajax\ViewsFormBase implements ViewsFormInterfaceclass \Drupal\views_ui\Form\Ajax\Analyze File core/modules/views_ui/src/Form/Ajax/Analyze.php, line 11 Namespace Drupal\views_ui\Form

ContextualLinkInterface

Defines a contextual link plugin. Contextual links by default are in the module_name.links.contextual.yml file. These YAML files contain a list of contextual link plugin definitions, keyed by the plugin ID. Each definition must define a route_name and a group and might define title, options, and weight. See the getter methods on this interface for an explanation of each. Hierarchy interface \Drupal\Core\Menu\ContextualLinkInterface Related topics Menu system Define the navigation menus, loca

Role::$id

The machine name of this role. Type: string File core/modules/user/src/Entity/Role.php, line 54 Class Role Defines the user role entity class. Namespace Drupal\user\Entity Code protected $id;

REQUIREMENT_OK

Requirement severity -- Requirement successfully met. File core/includes/install.inc, line 24 API functions for installing modules and themes. Code const REQUIREMENT_OK = 0;

template_preprocess_details

template_preprocess_details(&$variables) Prepares variables for details element templates. Default template: details.html.twig. Parameters array $variables: An associative array containing: element: An associative array containing the properties of the element. Properties used: #attributes, #children, #open, #description, #id, #title, #value, #optional. File core/includes/form.inc, line 241 Functions for form and batch generation and processing. Code function template_preprocess_detai

DRUPAL_OPTIONAL

Optional option on forms and settings File core/modules/system/system.module, line 54 Configuration system that lets administrators modify the workings of the site. Code const DRUPAL_OPTIONAL = 1;