public function ViewUI::getOverrideValues in Views (for Drupal 7) 8.3
Return the was_defaulted, is_defaulted and revert state of a form.
2 calls to ViewUI::getOverrideValues()
- ViewUI::standardSubmit in views_ui/
lib/ Drupal/ views_ui/ ViewUI.php - Basic submit handler applicable to all 'standard' forms.
- ViewUI::submitItemAdd in views_ui/
lib/ Drupal/ views_ui/ ViewUI.php - Submit handler for adding new item(s) to a view.
File
- views_ui/
lib/ Drupal/ views_ui/ ViewUI.php, line 1079 - Definition of Drupal\views_ui\ViewUI.
Class
- ViewUI
- Stores UI related temporary settings.
Namespace
Drupal\views_uiCode
public function getOverrideValues($form, $form_state) {
// Make sure the dropdown exists in the first place.
if (isset($form_state['values']['override']['dropdown'])) {
// #default_value is used to determine whether it was the default value or not.
// So the available options are: $display, 'default' and 'default_revert', not 'defaults'.
$was_defaulted = $form['override']['dropdown']['#default_value'] === 'defaults';
$is_defaulted = $form_state['values']['override']['dropdown'] === 'default';
$revert = $form_state['values']['override']['dropdown'] === 'default_revert';
if ($was_defaulted !== $is_defaulted && isset($form['#section'])) {
// We're changing which display these values apply to.
// Update the #section so it knows what to mark changed.
$form['#section'] = str_replace('default-', $form_state['display_id'] . '-', $form['#section']);
}
}
else {
// The user didn't get the dropdown for overriding the default display.
$was_defaulted = FALSE;
$is_defaulted = FALSE;
$revert = FALSE;
}
return array(
$was_defaulted,
$is_defaulted,
$revert,
);
}