class SocialEventManagersViewsBulkOperationsBulkForm in Open Social 8.9
Same name and namespace in other branches
- 8.5 modules/social_features/social_event/modules/social_event_managers/src/Plugin/views/field/SocialEventManagersViewsBulkOperationsBulkForm.php \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm
- 8.6 modules/social_features/social_event/modules/social_event_managers/src/Plugin/views/field/SocialEventManagersViewsBulkOperationsBulkForm.php \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm
- 8.7 modules/social_features/social_event/modules/social_event_managers/src/Plugin/views/field/SocialEventManagersViewsBulkOperationsBulkForm.php \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm
- 8.8 modules/social_features/social_event/modules/social_event_managers/src/Plugin/views/field/SocialEventManagersViewsBulkOperationsBulkForm.php \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm
- 10.3.x modules/social_features/social_event/modules/social_event_managers/src/Plugin/views/field/SocialEventManagersViewsBulkOperationsBulkForm.php \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm
- 10.0.x modules/social_features/social_event/modules/social_event_managers/src/Plugin/views/field/SocialEventManagersViewsBulkOperationsBulkForm.php \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm
- 10.1.x modules/social_features/social_event/modules/social_event_managers/src/Plugin/views/field/SocialEventManagersViewsBulkOperationsBulkForm.php \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm
- 10.2.x modules/social_features/social_event/modules/social_event_managers/src/Plugin/views/field/SocialEventManagersViewsBulkOperationsBulkForm.php \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm
Defines the Enrollments Views Bulk Operations field plugin.
Plugin annotation
@ViewsField("social_views_bulk_operations_bulk_form_enrollments");
Hierarchy
- class \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm extends \Drupal\views_bulk_operations\Plugin\views\field\ViewsBulkOperationsBulkForm
Expanded class hierarchy of SocialEventManagersViewsBulkOperationsBulkForm
1 file declares its use of SocialEventManagersViewsBulkOperationsBulkForm
- SocialEventAnEnrollViewsBulkOperationsBulkForm.php in modules/
social_features/ social_event/ modules/ social_event_an_enroll/ src/ Plugin/ views/ field/ SocialEventAnEnrollViewsBulkOperationsBulkForm.php
File
- modules/
social_features/ social_event/ modules/ social_event_managers/ src/ Plugin/ views/ field/ SocialEventManagersViewsBulkOperationsBulkForm.php, line 27
Namespace
Drupal\social_event_managers\Plugin\views\fieldView source
class SocialEventManagersViewsBulkOperationsBulkForm extends ViewsBulkOperationsBulkForm {
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* Constructs a new SocialEventManagersViewsBulkOperationsBulkForm 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 mixed $plugin_definition
* The plugin implementation definition.
* @param \Drupal\views_bulk_operations\Service\ViewsbulkOperationsViewDataInterface $viewData
* The VBO View Data provider service.
* @param \Drupal\views_bulk_operations\Service\ViewsBulkOperationsActionManager $actionManager
* Extended action manager object.
* @param \Drupal\views_bulk_operations\Service\ViewsBulkOperationsActionProcessorInterface $actionProcessor
* Views Bulk Operations action processor.
* @param \Drupal\Core\TempStore\PrivateTempStoreFactory $tempStoreFactory
* User private temporary storage factory.
* @param \Drupal\Core\Session\AccountInterface $currentUser
* The current user object.
* @param \Symfony\Component\HttpFoundation\RequestStack $requestStack
* The request stack.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, ViewsbulkOperationsViewDataInterface $viewData, ViewsBulkOperationsActionManager $actionManager, ViewsBulkOperationsActionProcessorInterface $actionProcessor, PrivateTempStoreFactory $tempStoreFactory, AccountInterface $currentUser, RequestStack $requestStack, EntityTypeManagerInterface $entity_type_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $viewData, $actionManager, $actionProcessor, $tempStoreFactory, $currentUser, $requestStack);
$this->entityTypeManager = $entity_type_manager;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('views_bulk_operations.data'), $container
->get('plugin.manager.views_bulk_operations_action'), $container
->get('views_bulk_operations.processor'), $container
->get('tempstore.private'), $container
->get('current_user'), $container
->get('request_stack'), $container
->get('entity_type.manager'));
}
/**
* {@inheritdoc}
*/
public function getBulkOptions() {
$bulk_options = parent::getBulkOptions();
if ($this->view
->id() !== 'event_manage_enrollments') {
return $bulk_options;
}
foreach ($bulk_options as $id => &$label) {
if (!empty($this->options['preconfiguration'][$id]['label_override'])) {
$real_label = $this->options['preconfiguration'][$id]['label_override'];
}
else {
$real_label = $this->actions[$id]['label'];
}
$label = $this
->t('<b>@action</b> selected enrollees', [
'@action' => $real_label,
]);
}
return $bulk_options;
}
/**
* {@inheritdoc}
*/
public function viewsForm(array &$form, FormStateInterface $form_state) {
$this->view
->setExposedInput([
'status' => TRUE,
]);
parent::viewsForm($form, $form_state);
if ($this->view
->id() !== 'event_manage_enrollments') {
return;
}
$action_options = $this
->getBulkOptions();
if (!empty($this->view->result) && !empty($action_options)) {
$list =& $form[$this->options['id']];
foreach ($this->view->result as $row_index => $row) {
$entity = $this
->getEntity($row);
$list[$row_index]['#title'] = $this
->getEntityLabel($entity);
}
}
$event = social_event_get_current_event();
if (!$event) {
return;
}
$tempstoreData = $this
->getTempstoreData($this->view
->id(), $this->view->current_display);
// Make sure the selection is saved for the current event.
if (!empty($tempstoreData['event_id']) && $tempstoreData['event_id'] !== $event
->id()) {
// If not we clear it right away.
// Since we don't want to mess with cached date.
$this
->deleteTempstoreData($this->view
->id(), $this->view->current_display);
// Reset initial values.
$this
->updateTempstoreData();
// Initialize it again.
$tempstoreData = $this
->getTempstoreData($this->view
->id(), $this->view->current_display);
}
// Add the Event ID to the data.
$tempstoreData['event_id'] = $event
->id();
$this
->setTempstoreData($tempstoreData, $this->view
->id(), $this->view->current_display);
// Reorder the form array.
if (!empty($form['header'])) {
$multipage = $form['header'][$this->options['id']]['multipage'];
unset($form['header'][$this->options['id']]['multipage']);
$form['header'][$this->options['id']]['multipage'] = $multipage;
}
// Render proper classes for the header in VBO form.
$wrapper =& $form['header'][$this->options['id']];
if (!empty($event
->id())) {
$wrapper['multipage']['#attributes']['event-id'] = $event
->id();
if (!empty($wrapper['multipage']['#attributes']['data-display-id'])) {
$current_display = $wrapper['multipage']['#attributes']['data-display-id'];
$wrapper['multipage']['#attributes']['data-display-id'] = $current_display . '/' . $event
->id();
}
}
// Styling related for the wrapper div.
$wrapper['#attributes']['class'][] = 'card';
$wrapper['#attributes']['class'][] = 'card__block';
$form['#attached']['library'][] = 'social_event_managers/views_bulk_operations.frontUi';
// Render select all results checkbox.
if (!empty($wrapper['select_all'])) {
$wrapper['select_all']['#title'] = $this
->t('Select / unselect all @count members across all the pages', [
'@count' => $this->tempStoreData['total_results'] ? ' ' . $this->tempStoreData['total_results'] : '',
]);
// Styling attributes for the select box.
$form['header'][$this->options['id']]['select_all']['#attributes']['class'][] = 'form-no-label';
$form['header'][$this->options['id']]['select_all']['#attributes']['class'][] = 'checkbox';
}
$count = 0;
/** @var \Drupal\Core\StringTranslation\TranslatableMarkup $title */
if (!empty($wrapper['multipage']) && !empty($wrapper['multipage']['#title'])) {
$title = $wrapper['multipage']['#title'];
$arguments = $title
->getArguments();
$count = empty($arguments['%count']) ? 0 : $arguments['%count'];
}
$title = $this
->formatPlural($count, '<b><em class="placeholder">@count</em> enrollee</b> is selected', '<b><em class="placeholder">@count</em> enrollees</b> are selected');
$wrapper['multipage']['#title'] = [
'#type' => 'html_tag',
'#tag' => 'div',
'#value' => $title,
];
// Add selector so the JS of VBO applies correctly.
$wrapper['multipage']['#attributes']['class'][] = 'vbo-multipage-selector';
// Get tempstore data so we know what messages to show based on the data.
$tempstoreData = $this
->getTempstoreData($this->view
->id(), $this->view->current_display);
if (!empty($wrapper['multipage']['list']['#items']) && count($wrapper['multipage']['list']['#items']) > 0) {
$excluded = FALSE;
if (!empty($tempstoreData['exclude_mode']) && $tempstoreData['exclude_mode']) {
$excluded = TRUE;
}
$wrapper['multipage']['list']['#title'] = !$excluded ? $this
->t('See selected enrollees on other pages') : $this
->t('See excluded enrollees on other pages');
}
// Update the clear submit button.
if (!empty($wrapper['multipage']['clear'])) {
$wrapper['multipage']['clear']['#value'] = $this
->t('Clear all selected enrollees');
$wrapper['multipage']['clear']['#attributes']['class'][] = 'btn-default dropdown-toggle waves-effect waves-btn margin-top-l margin-left-m';
}
$actions =& $wrapper['actions'];
if (!empty($actions) && !empty($wrapper['action'])) {
$actions['#theme'] = 'links__dropbutton__operations__actions';
$actions['#label'] = $this
->t('Actions');
$actions['#type'] = 'dropbutton';
$items = [];
foreach ($wrapper['action']['#options'] as $key => $value) {
if (!empty($key) && array_key_exists($key, $this->bulkOptions)) {
$items[] = [
'#type' => 'submit',
'#value' => $value,
];
}
}
// Add our links to the dropdown buttondrop type.
$actions['#links'] = $items;
}
// Remove the Views select list and submit button.
$form['actions']['#type'] = 'hidden';
$form['header']['social_views_bulk_operations_bulk_form_enrollments_1']['action']['#access'] = FALSE;
}
/**
* {@inheritdoc}
*/
public function viewsFormValidate(&$form, FormStateInterface $form_state) {
if ($this->view
->id() === 'event_manage_enrollments') {
$user_input = $form_state
->getUserInput();
$available_options = $this
->getBulkOptions();
// Grab all the actions that are available.
foreach (Element::children($this->actions) as $action) {
// If the option is not in our selected options, next.
if (empty($available_options[$action])) {
continue;
}
/** @var \Drupal\Core\StringTranslation\TranslatableMarkup $label */
$label = $available_options[$action];
// Match the Users action from our custom dropdown.
// Find the action from the VBO selection.
// And set that as the chosen action in the form_state.
if (strip_tags($label
->render()) === $user_input['op']) {
$user_input['action'] = $action;
$form_state
->setUserInput($user_input);
$form_state
->setValue('action', $action);
$form_state
->setTriggeringElement($this->actions[$action]);
break;
}
}
}
parent::viewsFormValidate($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function viewsFormSubmit(array &$form, FormStateInterface $form_state) {
parent::viewsFormSubmit($form, $form_state);
if ($form_state
->get('step') === 'views_form_views_form' && $this->view
->id() === 'event_manage_enrollments') {
/** @var \Drupal\Core\Url $url */
$url = $form_state
->getRedirect();
if ($url
->getRouteName() === 'views_bulk_operations.execute_configurable') {
$parameters = $url
->getRouteParameters();
if (empty($parameters['node'])) {
$node = \Drupal::routeMatch()
->getParameter('node');
if ($node instanceof NodeInterface) {
// You can get nid and anything else you need from the node object.
$parameters['node'] = $node
->id();
}
elseif (!is_object($node)) {
$parameters['node'] = $node;
}
}
$url = Url::fromRoute('social_event_managers.vbo.execute_configurable', [
'node' => $parameters['node'],
]);
$form_state
->setRedirectUrl($url);
}
}
}
/**
* Returns modified entity label.
*
* @param \Drupal\Core\Entity\EntityInterface $entity
* The entity.
*
* @return string
* The label text.
*/
public function getEntityLabel(EntityInterface $entity) {
$profiles = $this->entityTypeManager
->getStorage('profile')
->loadByProperties([
'uid' => $entity->field_account->target_id,
]);
/** @var \Drupal\profile\Entity\ProfileInterface $profile */
$profile = reset($profiles);
// It must be a Guest so we pick the name values we can get.
if (!$profile) {
$name = '';
$first_name = $entity
->get('field_first_name')
->getValue()[0]['value'];
$last_name = $entity
->get('field_last_name')
->getValue()[0]['value'];
if (!empty($first_name)) {
$name .= $first_name;
$name .= ' ';
}
if (!empty($last_name)) {
$name .= $last_name;
}
return $name;
}
/** @var \Drupal\Core\StringTranslation\TranslatableMarkup $label */
$label = $profile
->label();
return $label
->getArguments()['@name'];
}
/**
* {@inheritdoc}
*/
protected function getTempstoreData($view_id = NULL, $display_id = NULL) {
$data = parent::getTempstoreData($view_id, $display_id);
if (is_array($data) && $data) {
if ($view_id && !isset($data['view_id'])) {
$data['view_id'] = $view_id;
}
if ($display_id && !isset($data['display_id'])) {
$data['display_id'] = $display_id;
}
}
return $data;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SocialEventManagersViewsBulkOperationsBulkForm:: |
protected | property | The entity type manager. | |
SocialEventManagersViewsBulkOperationsBulkForm:: |
public static | function | 1 | |
SocialEventManagersViewsBulkOperationsBulkForm:: |
public | function | ||
SocialEventManagersViewsBulkOperationsBulkForm:: |
public | function | Returns modified entity label. | 1 |
SocialEventManagersViewsBulkOperationsBulkForm:: |
protected | function | ||
SocialEventManagersViewsBulkOperationsBulkForm:: |
public | function | ||
SocialEventManagersViewsBulkOperationsBulkForm:: |
public | function | ||
SocialEventManagersViewsBulkOperationsBulkForm:: |
public | function | ||
SocialEventManagersViewsBulkOperationsBulkForm:: |
public | function | Constructs a new SocialEventManagersViewsBulkOperationsBulkForm object. | 1 |