StorageReplaceDataWrapper::getCollectionName

public StorageReplaceDataWrapper::getCollectionName() Gets the name of the current collection the storage is using. Return value string The current collection name. Overrides StorageInterface::getCollectionName File core/modules/config/src/StorageReplaceDataWrapper.php, line 184 Class StorageReplaceDataWrapper Wraps a configuration storage to allow replacing specific configuration data. Namespace Drupal\config Code public function getCollectionName() { return $this->collection; }

QueryBase::hasAllTags

public QueryBase::hasAllTags() Determines if a given query has all specified tags. Parameters $tags: A variable number of arguments, one for each tag to check. Return value TRUE if this query has been marked with all specified tags, FALSE otherwise. Overrides AlterableInterface::hasAllTags File core/lib/Drupal/Core/Entity/Query/QueryBase.php, line 350 Class QueryBase The base entity query class. Namespace Drupal\Core\Entity\Query Code public function hasAllTags() { return !(boolean

BookManagerInterface::getAllBooks

public BookManagerInterface::getAllBooks() Returns an array of all books. This list may be used for generating a list of all the books, or for building the options for a form select. Return value array An array of all books. File core/modules/book/src/BookManagerInterface.php, line 169 Class BookManagerInterface Provides an interface defining a book manager. Namespace Drupal\book Code public function getAllBooks();

UpdaterFileTransferException

Defines a child class of Drupal\Core\Updater\UpdaterException that indicates a Drupal\Core\FileTransfer\FileTransfer exception. We have to catch Drupal\Core\FileTransfer\FileTransfer exceptions and wrap those in t(), since Drupal\Core\FileTransfer\FileTransfer is so low-level that it doesn't use any Drupal APIs and none of the strings are translated. Hierarchy class \Drupal\Core\Updater\UpdaterException extends \Exceptionclass \Drupal\Core\Updater\UpdaterFileTransferException File core/lib/

views_ui_theme

views_ui_theme() Implements hook_theme(). File core/modules/views_ui/views_ui.module, line 63 Provide structure for the administrative interface to Views. Code function views_ui_theme() { return array( // edit a view 'views_ui_display_tab_setting' => array( 'variables' => array('description' => '', 'link' => '', 'settings_links' => array(), 'overridden' => FALSE, 'defaulted' => FALSE, 'description_separator' => TRUE, 'class' => array()), 'file'

FormHelper::processStatesArray

protected static FormHelper::processStatesArray(array &$conditions, $search, $replace) Helper function for self::rewriteStatesSelector(). Parameters array $conditions: States conditions array. string $search: A partial or entire jQuery selector string to replace in #states. string $replace: The string to replace all instances of $search with. File core/lib/Drupal/Core/Form/FormHelper.php, line 47 Class FormHelper Provides helpers to operate on forms. Namespace Drupal\Core\Form Cod

ContentLanguageSettingsInterface::setLanguageAlterable

public ContentLanguageSettingsInterface::setLanguageAlterable($language_alterable) Sets if the language must be alterable or not. Parameters bool $language_alterable: Flag indicating if the language must be alterable. Return value $this File core/modules/language/src/ContentLanguageSettingsInterface.php, line 61 Class ContentLanguageSettingsInterface Provides an interface defining language settings for content entities. Namespace Drupal\language Code public function setLanguageAltera

FieldItemListInterface::getSetting

public FieldItemListInterface::getSetting($setting_name) Returns the value of a given field setting. Parameters string $setting_name: The setting name. Return value mixed The setting value. File core/lib/Drupal/Core/Field/FieldItemListInterface.php, line 79 Class FieldItemListInterface Interface for fields, being lists of field items. Namespace Drupal\Core\Field Code public function getSetting($setting_name);

Condition::$module

The name of the module providing the type. Type: string File core/lib/Drupal/Core/Condition/Annotation/Condition.php, line 49 Class Condition Defines a condition plugin annotation object. Namespace Drupal\Core\Condition\Annotation Code public $module;

FormBuilder::rebuildForm

public FormBuilder::rebuildForm($form_id, FormStateInterface &$form_state, $old_form = NULL) Constructs a new $form from the information in $form_state. This is the key function for making multi-step forms advance from step to step. It is called by self::processForm() when all user input processing, including calling validation and submission handlers, for the request is finished. If a validate or submit handler set $form_state->isRebuilding() to TRUE, and if other conditions don't preem