class ConfigHandlerExtra in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views_ui/src/Form/Ajax/ConfigHandlerExtra.php \Drupal\views_ui\Form\Ajax\ConfigHandlerExtra
Provides a form for configuring extra information for a Views UI item.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\views_ui\Form\Ajax\ViewsFormBase implements ViewsFormInterface
- class \Drupal\views_ui\Form\Ajax\ConfigHandlerExtra
- class \Drupal\views_ui\Form\Ajax\ViewsFormBase implements ViewsFormInterface
Expanded class hierarchy of ConfigHandlerExtra
File
- core/
modules/ views_ui/ src/ Form/ Ajax/ ConfigHandlerExtra.php, line 17 - Contains \Drupal\views_ui\Form\Ajax\ConfigHandlerExtra.
Namespace
Drupal\views_ui\Form\AjaxView source
class ConfigHandlerExtra extends ViewsFormBase {
/**
* Constructs a new ConfigHandlerExtra object.
*/
public function __construct($type = NULL, $id = NULL) {
$this
->setType($type);
$this
->setID($id);
}
/**
* {@inheritdoc}
*/
public function getFormKey() {
return 'handler-extra';
}
/**
* {@inheritdoc}
*/
public function getForm(ViewEntityInterface $view, $display_id, $js, $type = NULL, $id = NULL) {
$this
->setType($type);
$this
->setID($id);
return parent::getForm($view, $display_id, $js);
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'views_ui_config_item_extra_form';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$view = $form_state
->get('view');
$display_id = $form_state
->get('display_id');
$type = $form_state
->get('type');
$id = $form_state
->get('id');
$form = array(
'options' => array(
'#tree' => true,
'#theme_wrappers' => array(
'container',
),
'#attributes' => array(
'class' => array(
'scroll',
),
'data-drupal-views-scroll' => TRUE,
),
),
);
$executable = $view
->getExecutable();
if (!$executable
->setDisplay($display_id)) {
$form['markup'] = array(
'#markup' => $this
->t('Invalid display id @display', array(
'@display' => $display_id,
)),
);
return $form;
}
$item = $executable
->getHandler($display_id, $type, $id);
if ($item) {
$handler = $executable->display_handler
->getHandler($type, $id);
if (empty($handler)) {
$form['markup'] = array(
'#markup' => $this
->t("Error: handler for @table > @field doesn't exist!", array(
'@table' => $item['table'],
'@field' => $item['field'],
)),
);
}
else {
$handler
->init($executable, $executable->display_handler, $item);
$types = ViewExecutable::getHandlerTypes();
$form['#title'] = $this
->t('Configure extra settings for @type %item', array(
'@type' => $types[$type]['lstitle'],
'%item' => $handler
->adminLabel(),
));
$form['#section'] = $display_id . '-' . $type . '-' . $id;
// Get form from the handler.
$handler
->buildExtraOptionsForm($form['options'], $form_state);
$form_state
->set('handler', $handler);
}
$view
->getStandardButtons($form, $form_state, 'views_ui_config_item_extra_form');
}
return $form;
}
/**
* {@inheritdoc}
*/
public function validateForm(array &$form, FormStateInterface $form_state) {
$form_state
->get('handler')
->validateExtraOptionsForm($form['options'], $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$view = $form_state
->get('view');
$handler = $form_state
->get('handler');
// Run it through the handler's submit function.
$handler
->submitExtraOptionsForm($form['options'], $form_state);
$item = $handler->options;
// Store the data we're given.
foreach ($form_state
->getValue('options') as $key => $value) {
$item[$key] = $value;
}
// Store the item back on the view
$view
->getExecutable()
->setHandler($form_state
->get('display_id'), $form_state
->get('type'), $form_state
->get('id'), $item);
// Write to cache
$view
->cacheSet();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigHandlerExtra:: |
public | function |
Form constructor. Overrides FormInterface:: |
|
ConfigHandlerExtra:: |
public | function |
Creates a new instance of this form. Overrides ViewsFormBase:: |
|
ConfigHandlerExtra:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
ConfigHandlerExtra:: |
public | function |
Returns the key that represents this form. Overrides ViewsFormInterface:: |
|
ConfigHandlerExtra:: |
public | function |
Form submission handler. Overrides ViewsFormBase:: |
|
ConfigHandlerExtra:: |
public | function |
Form validation handler. Overrides ViewsFormBase:: |
|
ConfigHandlerExtra:: |
public | function | Constructs a new ConfigHandlerExtra object. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormBase:: |
protected | property | The config factory. | 3 |
FormBase:: |
protected | property | The logger factory. | |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Retrieves a configuration object. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 3 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
public static | function |
Instantiates a new instance of this class. Overrides ContainerInjectionInterface:: |
84 |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Returns a redirect response object for the specified route. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. | |
ViewsFormBase:: |
protected | property | The ID of the item this form is manipulating. | |
ViewsFormBase:: |
protected | property | The type of item this form is manipulating. | |
ViewsFormBase:: |
protected | function | Wrapper for handling AJAX forms. | |
ViewsFormBase:: |
public | function |
Gets the form state for this form. Overrides ViewsFormInterface:: |
1 |
ViewsFormBase:: |
protected | function | Sets the ID for this form. | |
ViewsFormBase:: |
protected | function | Sets the type for this form. |