function TokenizeAreaPluginBase::defineOptions
Overrides AreaPluginBase::defineOptions
6 calls to TokenizeAreaPluginBase::defineOptions()
- Entity::defineOptions in core/
modules/ views/ src/ Plugin/ views/ area/ Entity.php - Information about options for all kinds of purposes will be held here.
- Entity::defineOptions in core/
modules/ views/ src/ Plugin/ views/ area/ Entity.php - Information about options for all kinds of purposes will be held here.
- Text::defineOptions in core/
modules/ views/ src/ Plugin/ views/ area/ Text.php - Information about options for all kinds of purposes will be held here.
- Text::defineOptions in core/
modules/ views/ src/ Plugin/ views/ area/ Text.php - Information about options for all kinds of purposes will be held here.
- TextCustom::defineOptions in core/
modules/ views/ src/ Plugin/ views/ area/ TextCustom.php - Information about options for all kinds of purposes will be held here.
3 methods override TokenizeAreaPluginBase::defineOptions()
- Entity::defineOptions in core/
modules/ views/ src/ Plugin/ views/ area/ Entity.php - Information about options for all kinds of purposes will be held here.
- Text::defineOptions in core/
modules/ views/ src/ Plugin/ views/ area/ Text.php - Information about options for all kinds of purposes will be held here.
- TextCustom::defineOptions in core/
modules/ views/ src/ Plugin/ views/ area/ TextCustom.php - Information about options for all kinds of purposes will be held here.
File
-
core/
modules/ views/ src/ Plugin/ views/ area/ TokenizeAreaPluginBase.php, line 23
Class
- TokenizeAreaPluginBase
- Tokenized base class for area handlers.
Namespace
Drupal\views\Plugin\views\areaCode
protected function defineOptions() {
$options = parent::defineOptions();
$options['tokenize'] = [
'default' => FALSE,
];
return $options;
}