Provides a 'System Help' block.
@Plugin(
id = "system_help_block",
admin_label = @Translation("System Help"),
module = "system"
)
Expanded class hierarchy of SystemHelpBlock
class SystemHelpBlock extends BlockBase {
/**
* Stores the help text associated with the active menu item.
*
* @var string
*/
protected $help;
/**
* Overrides \Drupal\block\BlockBase::access().
*/
public function access() {
$this->help = menu_get_active_help();
return (bool) $this->help;
}
/**
* {@inheritdoc}
*/
public function build() {
return array(
'#children' => $this->help,
);
}
}
Name![]() |
Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BlockBase:: |
public | function | Returns the configuration form elements specific to this block plugin. | 11 |
BlockBase:: |
public | function | Adds block type-specific submission handling for the block form. | 11 |
BlockBase:: |
public | function | Adds block type-specific validation for the block form. | |
BlockBase:: |
public | function |
Implements \Drupal\block\BlockPluginInterface::form(). Overrides BlockPluginInterface:: |
1 |
BlockBase:: |
public | function | Returns the configuration data for the block plugin. | |
BlockBase:: |
public | function | Sets a particular value in the block settings. | |
BlockBase:: |
public | function |
Returns plugin-specific settings for the block. Overrides BlockPluginInterface:: |
13 |
BlockBase:: |
public | function |
Implements \Drupal\block\BlockPluginInterface::submit(). Overrides BlockPluginInterface:: |
|
BlockBase:: |
public | function |
Implements \Drupal\block\BlockPluginInterface::validate(). Overrides BlockPluginInterface:: |
|
BlockBase:: |
public | function |
Constructs a Drupal\Component\Plugin\PluginBase object. Overrides PluginBase:: |
1 |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
public | function |
Returns the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function |
Returns the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
SystemHelpBlock:: |
protected | property | Stores the help text associated with the active menu item. | |
SystemHelpBlock:: |
public | function |
Overrides \Drupal\block\BlockBase::access(). Overrides BlockBase:: |
|
SystemHelpBlock:: |
public | function |
Builds and returns the renderable array for this block plugin. Overrides BlockPluginInterface:: |