class Custom in Drupal 10
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/field/Custom.php \Drupal\views\Plugin\views\field\Custom
- 9 core/modules/views/src/Plugin/views/field/Custom.php \Drupal\views\Plugin\views\field\Custom
A handler to provide a field that is completely custom by the administrator.
Plugin annotation
@ViewsField("custom");
Hierarchy
- class \Drupal\views\Plugin\views\field\Custom extends \Drupal\views\Plugin\views\field\FieldPluginBase
Expanded class hierarchy of Custom
11 string references to 'Custom'
- BooleanFormatter::getOutputFormats in core/
lib/ Drupal/ Core/ Field/ Plugin/ Field/ FieldFormatter/ BooleanFormatter.php - Gets the available format options.
- BooleanFormatterSettingsTest::testBooleanFormatterSettings in core/
modules/ field/ tests/ src/ Functional/ Boolean/ BooleanFormatterSettingsTest.php - Tests the formatter settings page for the Boolean formatter.
- BooleanFormatterSettingsTest::testBooleanFormatterSettings in core/
modules/ field/ tests/ src/ FunctionalJavascript/ Boolean/ BooleanFormatterSettingsTest.php - Tests the formatter settings page for the Boolean formatter.
- ConfigTestForm::form in core/
modules/ config/ tests/ config_test/ src/ ConfigTestForm.php - Date::buildOptionsForm in core/
modules/ views/ src/ Plugin/ views/ field/ Date.php
File
- core/
modules/ views/ src/ Plugin/ views/ field/ Custom.php, line 17
Namespace
Drupal\views\Plugin\views\fieldView source
class Custom extends FieldPluginBase {
/**
* {@inheritdoc}
*/
public function usesGroupBy() {
return FALSE;
}
/**
* {@inheritdoc}
*/
public function query() {
// do nothing -- to override the parent query.
}
/**
* {@inheritdoc}
*/
protected function defineOptions() {
$options = parent::defineOptions();
// Override the alter text option to always alter the text.
$options['alter']['contains']['alter_text'] = [
'default' => TRUE,
];
$options['hide_alter_empty'] = [
'default' => FALSE,
];
return $options;
}
/**
* {@inheritdoc}
*/
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
// Remove the checkbox
unset($form['alter']['alter_text']);
unset($form['alter']['text']['#states']);
unset($form['alter']['help']['#states']);
$form['#pre_render'][] = [
$this,
'preRenderCustomForm',
];
}
/**
* {@inheritdoc}
*/
public static function trustedCallbacks() {
$callbacks = parent::trustedCallbacks();
$callbacks[] = 'preRenderCustomForm';
return $callbacks;
}
/**
* {@inheritdoc}
*/
public function render(ResultRow $values) {
// Return the text, so the code never thinks the value is empty.
return ViewsRenderPipelineMarkup::create(Xss::filterAdmin($this->options['alter']['text']));
}
/**
* Prerender function to move the textarea to the top of a form.
*
* @param array $form
* The form build array.
*
* @return array
* The modified form build array.
*/
public function preRenderCustomForm($form) {
$form['text'] = $form['alter']['text'];
$form['help'] = $form['alter']['help'];
unset($form['alter']['text']);
unset($form['alter']['help']);
return $form;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Custom:: |
public | function | ||
Custom:: |
protected | function | ||
Custom:: |
public | function | Prerender function to move the textarea to the top of a form. | |
Custom:: |
public | function | ||
Custom:: |
public | function | ||
Custom:: |
public static | function | ||
Custom:: |
public | function |