public function TcaPluginBase::isFieldable in Token Content Access 8
Same name and namespace in other branches
- 2.0.x src/Plugin/TcaPluginBase.php \Drupal\tca\Plugin\TcaPluginBase::isFieldable()
The fildable mark.
Return TRUE if will the settings be stored in fields, otherwise, settings will be stored in config.
Return value
bool The fildable mark.
Overrides TcaPluginInterface::isFieldable
2 methods override TcaPluginBase::isFieldable()
- Node::isFieldable in modules/
tca_node/ src/ Plugin/ TcaPlugin/ Node.php - The fildable mark.
- Product::isFieldable in modules/
tca_commerce_product/ src/ Plugin/ TcaPlugin/ Product.php - The fildable mark.
File
- src/
Plugin/ TcaPluginBase.php, line 15
Class
- TcaPluginBase
- Base class for TCA plugins.
Namespace
Drupal\tca\PluginCode
public function isFieldable() {
return FALSE;
}