class StatusOverviewForm in Brightcove Video Connect 8
Same name and namespace in other branches
- 8.2 src/Form/StatusOverviewForm.php \Drupal\brightcove\Form\StatusOverviewForm
- 3.x src/Form/StatusOverviewForm.php \Drupal\brightcove\Form\StatusOverviewForm
Class StatusOverviewForm.
@package Drupal\brightcove\Form
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\brightcove\Form\StatusOverviewForm
Expanded class hierarchy of StatusOverviewForm
1 string reference to 'StatusOverviewForm'
File
- src/
Form/ StatusOverviewForm.php, line 18
Namespace
Drupal\brightcove\FormView source
class StatusOverviewForm extends FormBase {
/**
* The queue factory.
*
* @var \Drupal\Core\Queue\QueueFactory
*/
protected $queueFactory;
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityTypeManager
*/
protected $entityTypeManager;
/**
* Constructs a StatusOverviewForm object.
*
* @param \Drupal\Core\Queue\QueueFactory $queueFactory
* The queue factory.
* @param \Drupal\Core\Entity\EntityTypeManager $entityTypeManager
* Entity type manager.
*/
public function __construct(QueueFactory $queueFactory, EntityTypeManager $entityTypeManager) {
$this->queueFactory = $queueFactory;
$this->entityTypeManager = $entityTypeManager;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('queue'), $container
->get('entity_type.manager'));
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'queue_overview_form';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$video_num = $this->entityTypeManager
->getStorage('brightcove_video')
->getQuery()
->count()
->execute();
$playlist_num = $this->entityTypeManager
->getStorage('brightcove_playlist')
->getQuery()
->count()
->execute();
$subscription_num = BrightcoveSubscription::count();
$counts = [
'client' => $this->entityTypeManager
->getStorage('brightcove_api_client')
->getQuery()
->count()
->execute(),
'subscription' => $subscription_num,
'subscription_delete' => $subscription_num,
'video' => $video_num,
'video_delete' => $video_num,
'text_track' => $this->entityTypeManager
->getStorage('brightcove_text_track')
->getQuery()
->count()
->execute(),
'playlist' => $playlist_num,
'playlist_delete' => $playlist_num,
'player' => $this->entityTypeManager
->getStorage('brightcove_player')
->getQuery()
->count()
->execute(),
'custom_field' => $this->entityTypeManager
->getStorage('brightcove_custom_field')
->getQuery()
->count()
->execute(),
];
$queues = [
'client' => $this
->t('Client'),
'subscription' => $this
->t('Subscription'),
'player' => $this
->t('Player'),
'custom_field' => $this
->t('Custom field'),
'video' => $this
->t('Video'),
'text_track' => $this
->t('Text Track'),
'playlist' => $this
->t('Playlist'),
'video_delete' => $this
->t('Check deleted videos *'),
'playlist_delete' => $this
->t('Check deleted playlists *'),
'subscription_delete' => $this
->t('Check deleted subscriptions'),
];
// There is no form element (ie. widget) in the table, so it's safe to
// return a render array for a table as a part of the form build array.
$form['queues'] = [
'#type' => 'table',
'#header' => [
$this
->t('Name'),
$this
->t('Number of entities'),
$this
->t('Item(s) in queue'),
],
'#rows' => [],
];
foreach ($queues as $queue => $title) {
$form['queues']['#rows'][$queue] = [
$title,
$counts[$queue],
$this->queueFactory
->get("brightcove_{$queue}_queue_worker")
->numberOfItems(),
];
}
$form['notice'] = [
'#type' => 'item',
'#markup' => '<em>* ' . $this
->t('May run slowly with lots of items.') . '</em>',
];
$form['sync'] = [
'#name' => 'sync',
'#type' => 'submit',
'#value' => $this
->t('Sync all'),
];
$form['run'] = [
'#name' => 'run',
'#type' => 'submit',
'#value' => $this
->t('Run all queues'),
];
$form['clear'] = [
'#name' => 'clear',
'#type' => 'submit',
'#value' => $this
->t('Clear all queues'),
'#description' => $this
->t('Remove all items from all queues'),
];
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
if ($triggering_element = $form_state
->getTriggeringElement()) {
BrightcoveUtil::runStatusQueues($triggering_element['#name'], $this->queueFactory);
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormBase:: |
protected | property | The config factory. | 1 |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Retrieves a configuration object. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 1 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
FormBase:: |
public | function |
Form validation handler. Overrides FormInterface:: |
62 |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StatusOverviewForm:: |
protected | property | The entity type manager. | |
StatusOverviewForm:: |
protected | property | The queue factory. | |
StatusOverviewForm:: |
public | function |
Form constructor. Overrides FormInterface:: |
|
StatusOverviewForm:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
|
StatusOverviewForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
StatusOverviewForm:: |
public | function |
Form submission handler. Overrides FormInterface:: |
|
StatusOverviewForm:: |
public | function | Constructs a StatusOverviewForm object. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
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. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |