class HideLinkWhenTitleIsEmpty in Field Formatter Condition 8
The plugin for check empty fields.
Plugin annotation
@FieldFormatterCondition(
id = "hide_link_when_title_is_empty",
label = @Translation("Hide link when link title is empty"),
dsFields = TRUE,
types = {
"link_field",
"link"
}
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\fico\Plugin\FieldFormatterConditionBase implements FieldFormatterConditionInterface
- class \Drupal\fico\Plugin\Field\FieldFormatter\Condition\HideLinkWhenTitleIsEmpty
- class \Drupal\fico\Plugin\FieldFormatterConditionBase implements FieldFormatterConditionInterface
Expanded class hierarchy of HideLinkWhenTitleIsEmpty
File
- src/
Plugin/ Field/ FieldFormatter/ Condition/ HideLinkWhenTitleIsEmpty.php, line 19
Namespace
Drupal\fico\Plugin\Field\FieldFormatter\ConditionView source
class HideLinkWhenTitleIsEmpty extends FieldFormatterConditionBase {
/**
* {@inheritdoc}
*/
public function alterForm(&$form, $settings) {
}
/**
* {@inheritdoc}
*/
public function access(&$build, $field, $settings) {
if (!empty($build[$field]['#items'])) {
foreach ($build[$field]['#items'] as $item) {
$info = $item
->getValue($field);
if (!$info['title'] || $info['title'] === $info['uri']) {
$build[$field]['#access'] = FALSE;
}
}
}
if (empty($build[$field]['#items'])) {
$build[$field]['#access'] = FALSE;
}
}
/**
* {@inheritdoc}
*/
public function summary($settings) {
return t('Condition: %condition', [
"%condition" => t('Hide link when link title is empty'),
]);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FieldFormatterConditionBase:: |
public | function |
Creates a pre-configured instance of a plugin. Overrides FactoryInterface:: |
|
FieldFormatterConditionBase:: |
public | function |
Gets a specific plugin definition. Overrides DiscoveryInterface:: |
|
FieldFormatterConditionBase:: |
public | function |
Gets the definition of all plugins for this type. Overrides DiscoveryInterface:: |
|
FieldFormatterConditionBase:: |
protected | function | Check for entity in build. | |
FieldFormatterConditionBase:: |
protected | function | Load fields from a entity. | |
FieldFormatterConditionBase:: |
protected | function | Check for entity_type in build. | |
FieldFormatterConditionBase:: |
public | function |
Gets a preconfigured instance of a plugin. Overrides MapperInterface:: |
|
FieldFormatterConditionBase:: |
public | function |
Indicates if a specific plugin definition exists. Overrides DiscoveryInterface:: |
|
HideLinkWhenTitleIsEmpty:: |
public | function |
Access control function. Overrides FieldFormatterConditionBase:: |
|
HideLinkWhenTitleIsEmpty:: |
public | function |
Alter the condition form. Overrides FieldFormatterConditionBase:: |
|
HideLinkWhenTitleIsEmpty:: |
public | function |
Return the summary string. Overrides FieldFormatterConditionBase:: |
|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 92 |