class UnapprovedComments in Drupal 10
Same name and namespace in other branches
- 8 core/modules/comment/src/Plugin/Menu/LocalTask/UnapprovedComments.php \Drupal\comment\Plugin\Menu\LocalTask\UnapprovedComments
- 9 core/modules/comment/src/Plugin/Menu/LocalTask/UnapprovedComments.php \Drupal\comment\Plugin\Menu\LocalTask\UnapprovedComments
Provides a local task that shows the amount of unapproved comments.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Menu\LocalTaskDefault implements CacheableDependencyInterface, LocalTaskInterface uses DependencySerializationTrait
- class \Drupal\comment\Plugin\Menu\LocalTask\UnapprovedComments implements ContainerFactoryPluginInterface uses StringTranslationTrait
- class \Drupal\Core\Menu\LocalTaskDefault implements CacheableDependencyInterface, LocalTaskInterface uses DependencySerializationTrait
Expanded class hierarchy of UnapprovedComments
1 string reference to 'UnapprovedComments'
- comment.links.task.yml in core/
modules/ comment/ comment.links.task.yml - core/modules/comment/comment.links.task.yml
File
- core/
modules/ comment/ src/ Plugin/ Menu/ LocalTask/ UnapprovedComments.php, line 15
Namespace
Drupal\comment\Plugin\Menu\LocalTaskView source
class UnapprovedComments extends LocalTaskDefault implements ContainerFactoryPluginInterface {
use StringTranslationTrait;
/**
* The comment storage service.
*
* @var \Drupal\comment\CommentStorageInterface
*/
protected $commentStorage;
/**
* Construct the UnapprovedComments object.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param array $plugin_definition
* The plugin implementation definition.
* @param \Drupal\comment\CommentStorageInterface $comment_storage
* The comment storage service.
*/
public function __construct(array $configuration, $plugin_id, array $plugin_definition, CommentStorageInterface $comment_storage) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->commentStorage = $comment_storage;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('entity_type.manager')
->getStorage('comment'));
}
/**
* {@inheritdoc}
*/
public function getTitle(Request $request = NULL) {
return $this
->t('Unapproved comments (@count)', [
'@count' => $this->commentStorage
->getUnapprovedCount(),
]);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
LocalTaskDefault:: |
protected | property | TRUE if this plugin is forced active for options attributes. | |
LocalTaskDefault:: |
protected | property | The route provider to load routes by name. | |
LocalTaskDefault:: |
public | function | ||
LocalTaskDefault:: |
public | function | ||
LocalTaskDefault:: |
public | function | ||
LocalTaskDefault:: |
public | function | 1 | |
LocalTaskDefault:: |
public | function | ||
LocalTaskDefault:: |
public | function | ||
LocalTaskDefault:: |
public | function | ||
LocalTaskDefault:: |
public | function | Returns the weight of the local task. | |
LocalTaskDefault:: |
protected | function | Returns the route provider. | |
LocalTaskDefault:: |
public | function | ||
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | |
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 | ||
PluginBase:: |
public | function | ||
PluginBase:: |
public | function | 2 | |
PluginBase:: |
public | function | ||
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 3 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 1 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UnapprovedComments:: |
protected | property | The comment storage service. | |
UnapprovedComments:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
UnapprovedComments:: |
public | function |
Returns the localized title to be shown for this tab. Overrides LocalTaskDefault:: |
|
UnapprovedComments:: |
public | function |
Construct the UnapprovedComments object. Overrides PluginBase:: |