You are here

class ContentConfirmForm in GatherContent 8.3

Provides a node deletion confirmation form.

Hierarchy

Expanded class hierarchy of ContentConfirmForm

File

src/Form/ContentConfirmForm.php, line 19

Namespace

Drupal\gathercontent\Form
View source
class ContentConfirmForm extends ConfirmFormBase {

  /**
   * Array of Node IDs.
   *
   * @var integer[]
   */
  protected $nodeIds;

  /**
   * The tempstore factory.
   *
   * @var \Drupal\user\PrivateTempStoreFactory
   */
  protected $tempStore;

  /**
   * The node storage.
   *
   * @var \Drupal\Core\Entity\EntityStorageInterface
   */
  protected $manager;

  /**
   * Constructs a DeleteMultiple form object.
   *
   * @param \Drupal\user\PrivateTempStoreFactory $temp_store_factory
   *   The tempstore factory.
   * @param \Drupal\Core\Entity\EntityManagerInterface $manager
   *   The entity manager.
   */
  public function __construct(PrivateTempStoreFactory $temp_store_factory, EntityManagerInterface $manager) {
    $this->tempStore = $temp_store_factory
      ->get('gathercontent_multistep_data');
    $this->storage = $manager
      ->getStorage('node');
    $this->nodeIds = $this->tempStore
      ->get('nodes');
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('user.private_tempstore'), $container
      ->get('entity.manager'));
  }

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'content_confirm_form';
  }

  /**
   * {@inheritdoc}
   */
  public function getQuestion() {
    return $this
      ->formatPlural(count($this->nodeIds), 'Confirm selection (@count item)', 'Confirm selection (@count items)');
  }

  /**
   * {@inheritdoc}
   */
  public function getCancelUrl() {
    return new Url('admin.content');
  }

  /**
   * {@inheritdoc}
   */
  public function getDescription() {
    return $this
      ->t('Please review your selection.');
  }

  /**
   * {@inheritdoc}
   */
  public function getCancelText() {
    return $this
      ->t('Back');
  }

  /**
   * {@inheritdoc}
   */
  public function getConfirmText() {
    return $this
      ->t('Continue');
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $form = parent::buildForm($form, $form_state);
    $created_mapping_ids = Mapping::loadMultiple();
    $projects = $contents = [];
    $mapping_array = [];
    foreach ($created_mapping_ids as $mapping) {

      /** @var \Drupal\gathercontent\Entity\Mapping $mapping */
      if ($mapping
        ->hasMapping()) {
        $projects[$mapping
          ->getGathercontentProjectId()] = $mapping
          ->getGathercontentProject();
        $mapping_array[$mapping
          ->id()] = [
          'gc_template' => $mapping
            ->getGathercontentTemplate(),
          'ct' => $mapping
            ->getContentTypeName(),
        ];
      }
    }
    $nodes = Node::loadMultiple($this->nodeIds);
    $selected_projects = [];
    $content_obj = new Content();
    foreach ($created_mapping_ids as $mapping) {
      if (!in_array($mapping
        ->getGathercontentProjectId(), $selected_projects)) {
        $selected_projects[] = $mapping
          ->getGathercontentProjectId();
        $content = $content_obj
          ->getContents($mapping
          ->getGathercontentProjectId());
        foreach ($content as $c) {
          $single_content = [];
          $single_content['gc_updated'] = $c->updated_at;
          $single_content['status'] = $c->status;
          $single_content['name'] = $c->name;
          $single_content['project_id'] = $c->project_id;
          $contents[$c->id] = $single_content;
        }
      }
    }
    $base_url = 'http://' . \Drupal::config('gathercontent.settings')
      ->get('gathercontent_urlkey') . '.gathercontent.com/item/';
    $content_table = [];
    foreach ($nodes as $item) {

      /** @var Drupal\node\Entity\Node $item */
      $content_table[$item
        ->id()] = [
        'status' => [
          'data' => [
            'color' => [
              '#type' => 'html_tag',
              '#tag' => 'div',
              '#value' => ' ',
              '#attributes' => [
                'style' => 'width:20px; height: 20px; float: left; margin-right: 5px; background: ' . $contents[$item->gc_id->value]['status']->data->color,
              ],
            ],
            'label' => [
              '#plain_text' => $contents[$item->gc_id->value]['status']->data->name,
            ],
          ],
          'class' => [
            'gc-item',
            'status-item',
          ],
        ],
        'gathercontent_project' => [
          'data' => $projects[$contents[$item->gc_id->value]['project_id']],
        ],
        'title' => [
          'data' => $item
            ->getTitle(),
          'class' => [
            'gc-item',
            'gc-item--name',
          ],
        ],
        'gathercontent_title' => [
          'data' => $contents[$item->gc_id->value]['name'],
        ],
        'gathercontent_updated' => [
          'data' => date('F d, Y - H:i', strtotime($contents[$item->gc_id->value]['gc_updated']->date)),
          'class' => [
            'gc-item',
            'gc-item-date',
          ],
          'data-date' => date('Y-m-d.H:i:s', strtotime($contents[$item->gc_id->value]['gc_updated']->date)),
        ],
        'drupal_updated' => [
          'data' => date('F d, Y - H:i', $item
            ->getChangedTime()),
          'class' => [
            'gc-item',
            'gc-item-date',
          ],
          'data-date' => date('Y-m-d.H:i:s', $item
            ->getChangedTime()),
        ],
        'content_type' => [
          'data' => $mapping_array[$item->gc_mapping_id->value]['ct'],
        ],
        'gathercontent_template' => [
          'data' => $mapping_array[$item->gc_mapping_id->value]['gc_template'],
          'class' => [
            'template-name-item',
          ],
        ],
        'drupal_open' => [
          'data' => Link::fromTextAndUrl($this
            ->t('Open'), Url::fromUri('entity:node/' . $item
            ->id()))
            ->toRenderable(),
        ],
        'gathercontent_open' => [
          'data' => Link::fromTextAndUrl($this
            ->t('Open'), Url::fromUri($base_url . $item->gc_id->value))
            ->toRenderable(),
        ],
      ];
    }
    $header = [
      'status' => $this
        ->t('Status'),
      'gathercontent_project' => $this
        ->t('GatherContent project'),
      'title' => $this
        ->t('Item Name'),
      'gathercontent_title' => $this
        ->t('GatherContent item name'),
      'drupal_updated' => $this
        ->t('Last updated in Drupal'),
      'gathercontent_updated' => $this
        ->t('Last updated in GatherContent'),
      'content_type' => $this
        ->t('Content type name'),
      'gathercontent_template' => $this
        ->t('GatherContent template'),
      'drupal_open' => $this
        ->t('Open in Drupal'),
      'gathercontent_open' => $this
        ->t('Open in GatherContent'),
    ];
    $form['nodes'] = [
      '#type' => 'table',
      '#header' => $header,
      '#rows' => $content_table,
      '#empty' => t('No content available.'),
    ];
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    if ($form_state
      ->getValue('confirm') && !empty($this->nodeIds)) {

      // Do something.
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfirmFormBase::getFormName public function Returns the internal name used to refer to the confirmation item. Overrides ConfirmFormInterface::getFormName
ContentConfirmForm::$manager protected property The node storage.
ContentConfirmForm::$nodeIds protected property Array of Node IDs.
ContentConfirmForm::$tempStore protected property The tempstore factory.
ContentConfirmForm::buildForm public function Form constructor. Overrides ConfirmFormBase::buildForm 1
ContentConfirmForm::create public static function Instantiates a new instance of this class. Overrides FormBase::create
ContentConfirmForm::getCancelText public function Returns a caption for the link which cancels the action. Overrides ConfirmFormBase::getCancelText 1
ContentConfirmForm::getCancelUrl public function Returns the route to go to if the user cancels the action. Overrides ConfirmFormInterface::getCancelUrl 2
ContentConfirmForm::getConfirmText public function Returns a caption for the button that confirms the action. Overrides ConfirmFormBase::getConfirmText 2
ContentConfirmForm::getDescription public function Returns additional text to display as a description. Overrides ConfirmFormBase::getDescription 2
ContentConfirmForm::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId 2
ContentConfirmForm::getQuestion public function Returns the question to ask the user. Overrides ConfirmFormInterface::getQuestion 2
ContentConfirmForm::submitForm public function Form submission handler. Overrides FormInterface::submitForm 2
ContentConfirmForm::__construct public function Constructs a DeleteMultiple form object.
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. 1
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. 1
FormBase::container private function Returns the service container.
FormBase::currentUser protected function Gets the current user.
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. Overrides UrlGeneratorTrait::redirect
FormBase::resetConfigFactory public function Resets the configuration factory.
FormBase::setConfigFactory public function Sets the config factory for this form.
FormBase::setRequestStack public function Sets the request stack object to use.
FormBase::validateForm public function Form validation handler. Overrides FormInterface::validateForm 62
LinkGeneratorTrait::$linkGenerator protected property The link generator. 1
LinkGeneratorTrait::getLinkGenerator Deprecated protected function Returns the link generator.
LinkGeneratorTrait::l Deprecated protected function Renders a link to a route given a route name and its parameters.
LinkGeneratorTrait::setLinkGenerator Deprecated public function Sets the link generator service.
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. 29
MessengerTrait::messenger public function Gets the messenger. 29
MessengerTrait::setMessenger public function Sets the messenger.
RedirectDestinationTrait::$redirectDestination protected property The redirect destination service. 1
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. 1
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.
UrlGeneratorTrait::$urlGenerator protected property The url generator.
UrlGeneratorTrait::getUrlGenerator Deprecated protected function Returns the URL generator service.
UrlGeneratorTrait::setUrlGenerator Deprecated public function Sets the URL generator service.
UrlGeneratorTrait::url Deprecated protected function Generates a URL or path for a specific route based on the given parameters.