Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ArgumentPluginBase.php

function ArgumentPluginBase::preRenderMoveArgumentOptions

Moves argument options into their place.

When configuring the default argument behavior, almost each of the radio buttons has its own fieldset shown below it when the radio button is clicked. That fieldset is created through a custom form process callback. Each element that has #argument_option defined and pointing to a default behavior gets moved to the appropriate fieldset. So if #argument_option is specified as 'default', the element is moved to the 'default_options' fieldset.

File

core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php, line 1246

Class

ArgumentPluginBase
Base class for argument (contextual filter) handler plugins.

Namespace

Drupal\views\Plugin\views\argument

Code

public static function preRenderMoveArgumentOptions($form) {
    foreach (Element::children($form) as $key) {
        $element = $form[$key];
        if (!empty($element['#argument_option'])) {
            $container_name = $element['#argument_option'] . '_options';
            if (isset($form['no_argument']['default_action'][$container_name])) {
                $form['no_argument']['default_action'][$container_name][$key] = $element;
            }
            // Remove the original element this duplicates.
            unset($form[$key]);
        }
    }
    return $form;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal