View source
<?php
namespace Drupal\views\Plugin\Block;
use Drupal\Core\Url;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Block\BlockBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\views\ViewExecutableFactory;
use Drupal\Core\Entity\EntityStorageInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Core\Session\AccountInterface;
abstract class ViewsBlockBase extends BlockBase implements ContainerFactoryPluginInterface {
protected $view;
protected $displayID;
protected $displaySet;
protected $user;
public function __construct(array $configuration, $plugin_id, $plugin_definition, ViewExecutableFactory $executable_factory, EntityStorageInterface $storage, AccountInterface $user) {
$this->pluginId = $plugin_id;
$delta = $this
->getDerivativeId();
list($name, $this->displayID) = explode('-', $delta, 2);
$view = $storage
->load($name);
$this->view = $executable_factory
->get($view);
$this->displaySet = $this->view
->setDisplay($this->displayID);
$this->user = $user;
parent::__construct($configuration, $plugin_id, $plugin_definition);
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('views.executable'), $container
->get('entity_type.manager')
->getStorage('view'), $container
->get('current_user'));
}
protected function blockAccess(AccountInterface $account) {
if ($this->view
->access($this->displayID)) {
$access = AccessResult::allowed();
}
else {
$access = AccessResult::forbidden();
}
return $access;
}
public function defaultConfiguration() {
return [
'views_label' => '',
];
}
public function getPreviewFallbackString() {
if (!empty($this->pluginDefinition["admin_label"])) {
return $this
->t('"@view" views block', [
'@view' => $this->pluginDefinition["admin_label"],
]);
}
else {
return $this
->t('"@view" views block', [
'@view' => $this->view->storage
->label() . '::' . $this->displayID,
]);
}
}
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$form = parent::buildConfigurationForm($form, $form_state);
$form['label']['#default_value'] = '';
$form['label']['#access'] = FALSE;
unset($form['id']['#machine_name']['source']);
$form['id']['#access'] = FALSE;
$form['#pre_render'][] = '\\Drupal\\views\\Plugin\\views\\PluginBase::preRenderAddFieldsetMarkup';
$form['views_label_checkbox'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Override title'),
'#default_value' => !empty($this->configuration['views_label']),
];
$form['views_label_fieldset'] = [
'#type' => 'fieldset',
'#states' => [
'visible' => [
[
':input[name="settings[views_label_checkbox]"]' => [
'checked' => TRUE,
],
],
],
],
];
$form['views_label'] = [
'#title' => $this
->t('Title'),
'#type' => 'textfield',
'#default_value' => $this->configuration['views_label'] ?: $this->view
->getTitle(),
'#states' => [
'visible' => [
[
':input[name="settings[views_label_checkbox]"]' => [
'checked' => TRUE,
],
],
],
],
'#fieldset' => 'views_label_fieldset',
];
if ($this->view->storage
->access('edit') && \Drupal::moduleHandler()
->moduleExists('views_ui')) {
$form['views_label']['#description'] = $this
->t('Changing the title here means it cannot be dynamically altered anymore. (Try changing it directly in <a href=":url">@name</a>.)', [
':url' => Url::fromRoute('entity.view.edit_display_form', [
'view' => $this->view->storage
->id(),
'display_id' => $this->displayID,
])
->toString(),
'@name' => $this->view->storage
->label(),
]);
}
else {
$form['views_label']['#description'] = $this
->t('Changing the title here means it cannot be dynamically altered anymore.');
}
return $form;
}
public function blockSubmit($form, FormStateInterface $form_state) {
if (!$form_state
->isValueEmpty('views_label_checkbox')) {
$this->configuration['views_label'] = $form_state
->getValue('views_label');
}
else {
$this->configuration['views_label'] = '';
}
$form_state
->unsetValue('views_label_checkbox');
}
protected function addContextualLinks(&$output, $block_type = 'block') {
if (!empty($output)) {
if (is_string($output)) {
$output = [
'#markup' => $output,
];
}
$output['#view_id'] = $this->view->storage
->id();
$output['#view_display_show_admin_links'] = $this->view
->getShowAdminLinks();
$output['#view_display_plugin_id'] = $this->view->display_handler
->getPluginId();
views_add_contextual_links($output, $block_type, $this->displayID);
}
}
public function getViewExecutable() {
return $this->view;
}
}