Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 12 |
| UnapprovedComments | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
12 | |
0.00% |
0 / 12 |
| __construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
| create | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 7 |
|||
| getTitle | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\comment\Plugin\Menu\LocalTask\UnapprovedComments. | |
| */ | |
| namespace Drupal\comment\Plugin\Menu\LocalTask; | |
| use Drupal\comment\CommentStorageInterface; | |
| use Drupal\Core\Menu\LocalTaskDefault; | |
| use Drupal\Core\Plugin\ContainerFactoryPluginInterface; | |
| use Drupal\Core\StringTranslation\StringTranslationTrait; | |
| use Symfony\Component\DependencyInjection\ContainerInterface; | |
| /** | |
| * Provides a local task that shows the amount of unapproved comments. | |
| */ | |
| 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.manager')->getStorage('comment') | |
| ); | |
| } | |
| /** | |
| * {@inheritdoc} | |
| */ | |
| public function getTitle() { | |
| return $this->t('Unapproved comments (@count)', array('@count' => $this->commentStorage->getUnapprovedCount())); | |
| } | |
| } |