ptalk-8.x-0.x-dev/src/Plugin/views/field/ThreadBulkForm.php
src/Plugin/views/field/ThreadBulkForm.php
<?php
namespace Drupal\ptalk\Plugin\views\field;
use \Drupal\views\Plugin\views\field\BulkForm;
/**
* Defines a thread operations bulk form element.
*
* @ViewsField("ptalk_thread_bulk_form")
*/
class ThreadBulkForm extends BulkForm {
/**
* {@inheritdoc}
*/
protected function emptySelectedMessage() {
return $this->t('Select one or more conversations to perform the update on.');
}
}
