SearchPageInterface::isIndexable

public SearchPageInterface::isIndexable() Determines if this search page entity is indexable. Return value bool TRUE if this search page entity is indexable, FALSE otherwise. File core/modules/search/src/SearchPageInterface.php, line 42 Class SearchPageInterface Provides an interface defining a search page entity. Namespace Drupal\search Code public function isIndexable();

StorageInterface::getCollectionName

public StorageInterface::getCollectionName() Gets the name of the current collection the storage is using. Return value string The current collection name. File core/lib/Drupal/Core/Config/StorageInterface.php, line 199 Class StorageInterface Defines an interface for configuration storage. Namespace Drupal\Core\Config Code public function getCollectionName();

Schema::buildTableNameCondition

protected Schema::buildTableNameCondition($table_name, $operator = '=', $add_prefix = TRUE) Build a condition to match a table name against a standard information_schema. The information_schema is a SQL standard that provides information about the database server and the databases, schemas, tables, columns and users within it. This makes information_schema a useful tool to use across the drupal database drivers and is used by a few different functions. The function below describes the condition

menu_ui_preprocess_block

menu_ui_preprocess_block(&$variables) Implements hook_preprocess_HOOK() for block templates. File core/modules/menu_ui/menu_ui.module, line 494 Allows administrators to customize the site's navigation menus. Code function menu_ui_preprocess_block(&$variables) { if ($variables['configuration']['provider'] == 'menu_ui') { $variables['attributes']['role'] = 'navigation'; } }

Settings::initialize

public static Settings::initialize($app_root, $site_path, &$class_loader) Bootstraps settings.php and the Settings singleton. Parameters string $app_root: The app root. string $site_path: The current site path. \Composer\Autoload\ClassLoader $class_loader: The class loader that is used for this request. Passed by reference and exposed to the local scope of settings.php, so as to allow it to be decorated with Symfony's ApcClassLoader, for example. See also default.settings.php File core/li

FieldStorageConfig::getProvider

public FieldStorageConfig::getProvider() Returns the name of the provider of this field. Return value string The provider name; e.g., the module name. Overrides FieldStorageDefinitionInterface::getProvider File core/modules/field/src/Entity/FieldStorageConfig.php, line 608 Class FieldStorageConfig Defines the Field storage configuration entity. Namespace Drupal\field\Entity Code public function getProvider() { return 'field'; }

FormStateInterface::getBuildInfo

public FormStateInterface::getBuildInfo() Returns the build info for the form. Return value array An array of build info. See also \Drupal\Core\Form\FormState::$build_info File core/lib/Drupal/Core/Form/FormStateInterface.php, line 242 Class FormStateInterface Provides an interface for an object containing the current state of a form. Namespace Drupal\Core\Form Code public function getBuildInfo();

ConfigEntityBase::isSyncing

public ConfigEntityBase::isSyncing() Returns whether this entity is being changed as part of an import process. If you are writing code that responds to a change in this entity (insert, update, delete, presave, etc.), and your code would result in a configuration change (whether related to this configuration entity, another configuration entity, or non-entity configuration) or your code would result in a change to this entity itself, you need to check and see if this entity change is part of an

FieldConfigBase::onDependencyRemoval

public FieldConfigBase::onDependencyRemoval(array $dependencies) Informs the entity that entities it depends on will be deleted. This method allows configuration entities to remove dependencies instead of being deleted themselves. Configuration entities can use this method to avoid being unnecessarily deleted during an extension uninstallation. For example, entity displays remove references to widgets and formatters if the plugin that supplies them depends on a module that is being uninstalled.

VocabularyForm::__construct

public VocabularyForm::__construct(VocabularyStorageInterface $vocabulary_storage) Constructs a new vocabulary form. Parameters \Drupal\taxonomy\VocabularyStorageInterface $vocabulary_storage: The vocabulary storage. File core/modules/taxonomy/src/VocabularyForm.php, line 30 Class VocabularyForm Base form for vocabulary edit forms. Namespace Drupal\taxonomy Code public function __construct(VocabularyStorageInterface $vocabulary_storage) { $this->vocabularyStorage = $vocabulary_st