class WorkspacePublishForm

Same name and namespace in other branches
  1. 9 core/modules/workspaces/src/Form/WorkspacePublishForm.php \Drupal\workspaces\Form\WorkspacePublishForm
  2. 10 core/modules/workspaces/src/Form/WorkspacePublishForm.php \Drupal\workspaces\Form\WorkspacePublishForm

Provides the workspace publishing form.

Hierarchy

  • class \Drupal\workspaces\Form\WorkspacePublishForm extends \Drupal\Core\DependencyInjection\ContainerInjectionInterface, \Drupal\Core\Form\WorkspaceSafeFormInterface implements \Drupal\Core\Form\ConfirmFormBase

Expanded class hierarchy of WorkspacePublishForm

1 file declares its use of WorkspacePublishForm
WorkspacePublishFormTest.php in core/modules/workspaces/tests/src/Kernel/WorkspacePublishFormTest.php
1 string reference to 'WorkspacePublishForm'
workspaces.routing.yml in core/modules/workspaces/workspaces.routing.yml
core/modules/workspaces/workspaces.routing.yml

File

core/modules/workspaces/src/Form/WorkspacePublishForm.php, line 21

Namespace

Drupal\workspaces\Form
View source
class WorkspacePublishForm extends ConfirmFormBase implements ContainerInjectionInterface, WorkspaceSafeFormInterface {
  
  /**
   * The workspace that will be published.
   *
   * @var \Drupal\workspaces\WorkspaceInterface
   */
  protected $workspace;
  
  /**
   * The workspace operation factory.
   *
   * @var \Drupal\workspaces\WorkspaceOperationFactory
   */
  protected $workspaceOperationFactory;
  
  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;
  
  /**
   * Constructs a new WorkspacePublishForm.
   *
   * @param \Drupal\workspaces\WorkspaceOperationFactory $workspace_operation_factory
   *   The workspace operation factory service.
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager.
   */
  public function __construct(WorkspaceOperationFactory $workspace_operation_factory, EntityTypeManagerInterface $entity_type_manager) {
    $this->workspaceOperationFactory = $workspace_operation_factory;
    $this->entityTypeManager = $entity_type_manager;
  }
  
  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container->get('workspaces.operation_factory'), $container->get('entity_type.manager'));
  }
  
  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'workspace_publish_form';
  }
  
  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state, ?WorkspaceInterface $workspace = NULL) {
    $this->workspace = $workspace;
    $form = parent::buildForm($form, $form_state);
    $workspace_publisher = $this->workspaceOperationFactory
      ->getPublisher($this->workspace);
    $args = [
      '%source_label' => $this->workspace
        ->label(),
      '%target_label' => $workspace_publisher->getTargetLabel(),
    ];
    $form['#title'] = $this->t('Publish %source_label workspace', $args);
    // List the changes that can be pushed.
    if ($source_rev_diff = $workspace_publisher->getDifferringRevisionIdsOnSource()) {
      $total_count = $workspace_publisher->getNumberOfChangesOnSource();
      $form['description'] = [
        '#theme' => 'item_list',
        '#title' => $this->formatPlural($total_count, 'There is @count item that can be published from %source_label to %target_label', 'There are @count items that can be published from %source_label to %target_label', $args),
        '#items' => [],
        '#total_count' => $total_count,
      ];
      foreach ($source_rev_diff as $entity_type_id => $revision_difference) {
        $form['description']['#items'][$entity_type_id] = $this->entityTypeManager
          ->getDefinition($entity_type_id)
          ->getCountLabel(count($revision_difference));
      }
      $form['actions']['submit']['#value'] = $this->formatPlural($total_count, 'Publish @count item to @target', 'Publish @count items to @target', [
        '@target' => $workspace_publisher->getTargetLabel(),
      ]);
    }
    else {
      // If there are no changes to push or pull, show an informational message.
      $form['help'] = [
        '#markup' => $this->t('There are no changes that can be published from %source_label to %target_label.', $args),
      ];
      // Do not allow the 'Publish' operation if there's nothing to publish.
      $form['actions']['submit']['#value'] = $this->t('Publish');
      $form['actions']['submit']['#disabled'] = TRUE;
    }
    return $form;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getQuestion() {
    return $this->t('Would you like to publish the contents of the %label workspace?', [
      '%label' => $this->workspace
        ->label(),
    ]);
  }
  
  /**
   * {@inheritdoc}
   */
  public function getDescription() {
    return $this->t('Publish workspace contents.');
  }
  
  /**
   * {@inheritdoc}
   */
  public function getCancelUrl() {
    return Url::fromRoute('entity.workspace.collection', [], [
      'query' => $this->getDestinationArray(),
    ]);
  }
  
  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $workspace = $this->workspace;
    try {
      $workspace->publish();
      $this->messenger()
        ->addMessage($this->t('Successful publication.'));
    } catch (WorkspaceAccessException $e) {
      $this->messenger()
        ->addMessage($e->getMessage(), 'error');
    } catch (\Exception $e) {
      $this->messenger()
        ->addMessage($this->t('Publication failed. All errors have been logged.'), 'error');
      $this->getLogger('workspaces')
        ->error($e->getMessage());
    }
  }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
ConfirmFormBase::getCancelText public function Overrides ConfirmFormInterface::getCancelText 2
ConfirmFormBase::getConfirmText public function Overrides ConfirmFormInterface::getConfirmText 25
ConfirmFormBase::getFormName public function Overrides ConfirmFormInterface::getFormName
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
FormBase::$configFactory protected property The config factory. 2
FormBase::$elementInfoManager protected property The element info manager.
FormBase::$requestStack protected property The request stack. 1
FormBase::$routeMatch protected property The route match.
FormBase::config protected function Retrieves a configuration object.
FormBase::configFactory protected function Gets the config factory for this form. 2
FormBase::container private function Returns the service container.
FormBase::currentUser protected function Gets the current user. 2
FormBase::elementInfoManager protected function The element info manager.
FormBase::getRequest protected function Gets the request object.
FormBase::getRouteMatch protected function Gets the route match.
FormBase::logger protected function Gets the logger for a specific channel.
FormBase::redirect protected function Returns a redirect response object for the specified route.
FormBase::resetConfigFactory public function Resets the configuration factory.
FormBase::setConfigFactory public function Sets the config factory for this form.
FormBase::setElementInfoManager public function Sets the element info manager for this form.
FormBase::setRequestStack public function Sets the request stack object to use.
FormBase::validateForm public function Overrides FormInterface::validateForm 60
LoggerChannelTrait::$loggerFactory protected property The logger channel factory service.
LoggerChannelTrait::getLogger protected function Gets the logger for a specific channel.
LoggerChannelTrait::setLoggerFactory public function Injects the logger channel factory.
MessengerTrait::$messenger protected property The messenger. 16
MessengerTrait::messenger public function Gets the messenger. 16
MessengerTrait::setMessenger public function Sets the messenger.
RedirectDestinationTrait::$redirectDestination protected property The redirect destination service. 2
RedirectDestinationTrait::getDestinationArray protected function Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url.
RedirectDestinationTrait::getRedirectDestination protected function Returns the redirect destination service.
RedirectDestinationTrait::setRedirectDestination public function Sets the redirect destination service.
StringTranslationTrait::$stringTranslation protected property The string translation service. 3
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language. 1
WorkspacePublishForm::$entityTypeManager protected property The entity type manager.
WorkspacePublishForm::$workspace protected property The workspace that will be published.
WorkspacePublishForm::$workspaceOperationFactory protected property The workspace operation factory.
WorkspacePublishForm::buildForm public function Overrides ConfirmFormBase::buildForm
WorkspacePublishForm::create public static function Overrides FormBase::create
WorkspacePublishForm::getCancelUrl public function Overrides ConfirmFormInterface::getCancelUrl
WorkspacePublishForm::getDescription public function Overrides ConfirmFormBase::getDescription
WorkspacePublishForm::getFormId public function Overrides FormInterface::getFormId
WorkspacePublishForm::getQuestion public function Overrides ConfirmFormInterface::getQuestion
WorkspacePublishForm::submitForm public function Overrides FormInterface::submitForm
WorkspacePublishForm::__construct public function Constructs a new WorkspacePublishForm.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.