aggregator-feed.html.twig

Default theme implementation to present an aggregator feed. The contents are rendered above feed listings when browsing source feeds. For example, "example.com/aggregator/sources/1". Available variables: title: Title of the feed item. content: All field items. Use {{ content }} to print them all, or print a subset such as {{ content.field_example }}. Use {{ content|without('field_example') }} to temporarily suppress the printing of a given element. title_attributes: Same as attributes, excep

AfterCommand::render

public AfterCommand::render() Implements Drupal\Core\Ajax\CommandInterface:render(). Overrides InsertCommand::render File core/lib/Drupal/Core/Ajax/AfterCommand.php, line 24 Class AfterCommand An AJAX command for calling the jQuery after() method. Namespace Drupal\Core\Ajax Code public function render() { return array( 'command' => 'insert', 'method' => 'after', 'selector' => $this->selector, 'data' => $this->getRenderedContent(), 'settings' =&g

AfterCommand

An AJAX command for calling the jQuery after() method. The 'insert/after' command instructs the client to use jQuery's after() method to insert the given HTML content after each element matched by the given selector. This command is implemented by Drupal.AjaxCommands.prototype.insert() defined in misc/ajax.js. Hierarchy class \Drupal\Core\Ajax\InsertCommand implements CommandInterface, CommandWithAttachedAssetsInterface uses CommandWithAttachedAssetsTraitclass \Drupal\Core\Ajax\AfterCommand

AdvancedSettingsForm::submitForm

public AdvancedSettingsForm::submitForm(array &$form, FormStateInterface $form_state) Form submission handler. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Overrides ConfigFormBase::submitForm File core/modules/views_ui/src/Form/AdvancedSettingsForm.php, line 89 Class AdvancedSettingsForm Form builder for the advanced admin settings page. Namespace Drupal\views_ui\

AdvancedSettingsForm::getFormId

public AdvancedSettingsForm::getFormId() Returns a unique string identifying the form. Return value string The unique string identifying the form. Overrides FormInterface::getFormId File core/modules/views_ui/src/Form/AdvancedSettingsForm.php, line 17 Class AdvancedSettingsForm Form builder for the advanced admin settings page. Namespace Drupal\views_ui\Form Code public function getFormId() { return 'views_ui_admin_settings_advanced'; }

AdvancedSettingsForm::getEditableConfigNames

protected AdvancedSettingsForm::getEditableConfigNames() Gets the configuration names that will be editable. Return value array An array of configuration object names that are editable if called in conjunction with the trait's config() method. Overrides ConfigFormBaseTrait::getEditableConfigNames File core/modules/views_ui/src/Form/AdvancedSettingsForm.php, line 24 Class AdvancedSettingsForm Form builder for the advanced admin settings page. Namespace Drupal\views_ui\Form Code protect

AdvancedSettingsForm::cacheSubmit

public AdvancedSettingsForm::cacheSubmit() Submission handler to clear the Views cache. File core/modules/views_ui/src/Form/AdvancedSettingsForm.php, line 102 Class AdvancedSettingsForm Form builder for the advanced admin settings page. Namespace Drupal\views_ui\Form Code public function cacheSubmit() { views_invalidate_cache(); drupal_set_message($this->t('The cache has been cleared.')); }

AdvancedSettingsForm::buildForm

public AdvancedSettingsForm::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/views_ui/src/Form/AdvancedSettingsForm.php, line 31 Class AdvancedSettingsForm Form builder for the advanced admin settings page. N

AdvancedSettingsForm

Form builder for the advanced admin settings page. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTraitclass \Drupal\views_ui\Form\AdvancedSettingsForm File core/modules/views_ui/src/Form/AdvancedSettingsForm.php, line 12 Namespace Drupal\v

AdminRouteSubscriber::getSubscribedEvents

public static AdminRouteSubscriber::getSubscribedEvents() Returns an array of event names this subscriber wants to listen to. The array keys are event names and the value can be: The method name to call (priority defaults to 0) An array composed of the method name to call and the priority An array of arrays composed of the method names to call and respective priorities, or 0 if unset For instance: array('eventName' => 'methodName') array('eventName' => array('methodName', $priority))