DateFormatDeleteForm::create

public static DateFormatDeleteForm::create(ContainerInterface $container) Instantiates a new instance of this class. This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container: The ser

FileCacheFactory::$prefix

The cache prefix. Type: string File core/lib/Drupal/Component/FileCache/FileCacheFactory.php, line 27 Class FileCacheFactory Creates a FileCache object. Namespace Drupal\Component\FileCache Code protected static $prefix;

install_base_system

install_base_system(&$install_state) Installation task; install the base functionality Drupal needs to bootstrap. Parameters $install_state: An array of information about the current installation state. File core/includes/install.core.inc, line 1035 API functions for installing Drupal. Code function install_base_system(&$install_state) { // Install system.module. drupal_install_system($install_state); // Call file_ensure_htaccess() to ensure that all of Drupal's standard //

PoDatabaseReader::getHeader

public PoDatabaseReader::getHeader() Get header metadata. Return value \Drupal\Component\Gettext\PoHeader $header Header instance representing metadata in a PO header. Overrides PoMetadataInterface::getHeader File core/modules/locale/src/PoDatabaseReader.php, line 87 Class PoDatabaseReader Gettext PO reader working with the locale module database. Namespace Drupal\locale Code public function getHeader() { return new PoHeader($this->getLangcode()); }

forum_theme

forum_theme() Implements hook_theme(). File core/modules/forum/forum.module, line 86 Provides discussion forums. Code function forum_theme() { return array( 'forums' => array( 'variables' => array('forums' => array(), 'topics' => array(), 'topics_pager' => array(), 'parents' => NULL, 'term' => NULL, 'sortby' => NULL, 'forum_per_page' => NULL, 'header' => array()), ), 'forum_list' => array( 'variables' => array('forums' => NULL,

RouteBuilder::rebuildIfNeeded

public RouteBuilder::rebuildIfNeeded() Rebuilds the route information if necessary, and dumps it. Return value bool Returns TRUE if the rebuild occurs, FALSE otherwise. Overrides RouteBuilderInterface::rebuildIfNeeded File core/lib/Drupal/Core/Routing/RouteBuilder.php, line 203 Class RouteBuilder Managing class for rebuilding the router table. Namespace Drupal\Core\Routing Code public function rebuildIfNeeded() { if ($this->rebuildNeeded) { return $this->rebuild(); } r

LocaleLookup::getCid

protected LocaleLookup::getCid() Gets the cache ID. Return value string Overrides CacheCollector::getCid File core/modules/locale/src/LocaleLookup.php, line 109 Class LocaleLookup A cache collector to allow for dynamic building of the locale cache. Namespace Drupal\locale Code protected function getCid() { if (!isset($this->cid)) { // Add the current user's role IDs to the cache key, this ensures that, // for example, strings for admin menu items and settings forms are no

RouteSubscriber::getApplicableViews

protected RouteSubscriber::getApplicableViews() Returns all views/display combinations with routes. See also \Drupal\views\Views::getApplicableViews() File core/modules/views/src/EventSubscriber/RouteSubscriber.php, line 171 Class RouteSubscriber Builds up the routes of all views. Namespace Drupal\views\EventSubscriber Code protected function getApplicableViews() { return Views::getApplicableViews('uses_route'); }

TwigExtension::getUrl

public TwigExtension::getUrl($name, $parameters = array(), $options = array()) Generates an absolute URL given a route name and parameters. @todo Add an option for scheme-relative URLs. Parameters $name: The name of the route. array $parameters: An associative array of route parameter names and values. array $options: (optional) An associative array of additional options. The 'absolute' option is forced to be TRUE. Return value string The generated absolute URL for the given route. File core/

StorageInterface::delete

public StorageInterface::delete($name) Deletes a configuration object from the storage. Parameters string $name: The name of a configuration object to delete. Return value bool TRUE on success, FALSE otherwise. File core/lib/Drupal/Core/Config/StorageInterface.php, line 78 Class StorageInterface Defines an interface for configuration storage. Namespace Drupal\Core\Config Code public function delete($name);