Mock implementation of a login block plugin used by Plugin API unit tests.
Expanded class hierarchy of MockUserLoginBlock
Drupal\plugin_test\Plugin\MockBlockManager
class MockUserLoginBlock extends PluginBase {
/**
* The title to display when rendering this block instance.
*
* @var string
*/
protected $title;
public function __construct(array $configuration, $plugin_id, array $plugin_definition) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->title = isset($configuration['title']) ? $configuration['title'] : '';
}
public function getTitle() {
return $this->title;
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MockUserLoginBlock:: |
protected | property | The title to display when rendering this block instance. | |
MockUserLoginBlock:: |
public | function | ||
MockUserLoginBlock:: |
public | function |
Constructs a Drupal\Component\Plugin\PluginBase object. Overrides PluginBase:: |
|
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:: |