FieldStorageConfig::getColumns

public FieldStorageConfig::getColumns() Returns the field columns, as defined in the field schema. Return value array[] The array of field columns, keyed by column name, in the same format returned by getSchema(). Overrides FieldStorageDefinitionInterface::getColumns See also \Drupal\Core\Field\FieldStorageDefinitionInterface::getSchema() File core/modules/field/src/Entity/FieldStorageConfig.php, line 481 Class FieldStorageConfig Defines the Field storage configuration entity. Namespac

system-config-form.html.twig

Default theme implementation for a system settings form. This template will be used when a system config form specifies 'config_form' as its #theme callback. Otherwise, by default, system config forms will be themed by form.html.twig. This does not alter the appearance of a form at all, but is provided as a convenience for themers. Available variables: form: The confirm form. File core/modules/system/templates/system-config-form.html.twig Related topics Theme system overview Functions and

ReadOnlyStream::unlink

public ReadOnlyStream::unlink($uri) Support for unlink(). The file will not be deleted from the stream as this is a read-only stream wrapper. Parameters string $uri: A string containing the uri to the resource to delete. Return value bool TRUE so that file_delete() will remove db reference to file. File is not actually deleted. Overrides PhpStreamWrapperInterface::unlink See also http://php.net/manual/streamwrapper.unlink.php File core/lib/Drupal/Core/StreamWrapper/ReadOnlyStream.php, line 1

NegotiationBrowserForm::buildForm

public NegotiationBrowserForm::buildForm(array $form, FormStateInterface $form_state) Form constructor. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Return value array The form structure. Overrides ConfigFormBase::buildForm File core/modules/language/src/Form/NegotiationBrowserForm.php, line 62 Class NegotiationBrowserForm Configure the browser language negotiation metho

SystemInfoController::create

public static SystemInfoController::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

ViewsSearchQuery::publicParseSearchExpression

public ViewsSearchQuery::publicParseSearchExpression() Executes and returns the protected parseSearchExpression method. File core/modules/search/src/ViewsSearchQuery.php, line 56 Class ViewsSearchQuery Extends the core SearchQuery to be able to gets its protected values. Namespace Drupal\search Code public function publicParseSearchExpression() { return $this->parseSearchExpression(); }

CurrentRouteMatch::getParameters

public CurrentRouteMatch::getParameters() Returns the bag of all processed route parameters. Raw URL parameters are processed by the parameter conversion system, which does operations such as converting entity ID parameters to fully-loaded entities. For example, the path node/12345 would have a raw node ID parameter value of 12345, while the processed parameter value would be the corresponding loaded node object. Return value \Symfony\Component\HttpFoundation\ParameterBag The parameter bag. Ov

ForumManager::getTopics

public ForumManager::getTopics($tid, AccountInterface $account) Gets list of forum topics. Parameters int $tid: Term ID. \Drupal\Core\Session\AccountInterface $account: Account to fetch topics for. Return value array Array with keys 'topics' and 'header'. Overrides ForumManagerInterface::getTopics File core/modules/forum/src/ForumManager.php, line 133 Class ForumManager Provides forum manager service. Namespace Drupal\forum Code public function getTopics($tid, AccountInterface $accou

content_moderation_entity_insert

content_moderation_entity_insert(EntityInterface $entity) Implements hook_entity_insert(). File core/modules/content_moderation/content_moderation.module, line 96 Contains content_moderation.module. Code function content_moderation_entity_insert(EntityInterface $entity) { return \Drupal::service('class_resolver') ->getInstanceFromDefinition(EntityOperations::class) ->entityInsert($entity); }

ViewListBuilder::load

public ViewListBuilder::load() Loads entities of this type from storage for listing. This allows the implementation to manipulate the listing, like filtering or sorting the loaded entities. Return value \Drupal\Core\Entity\EntityInterface[] An array of entities implementing \Drupal\Core\Entity\EntityInterface. Overrides ConfigEntityListBuilder::load File core/modules/views_ui/src/ViewListBuilder.php, line 67 Class ViewListBuilder Defines a class to build a listing of view entities. Name