You are here

class PathautoBulkUpdateForm in Pathauto 8

Configure file system settings for this site.

Hierarchy

Expanded class hierarchy of PathautoBulkUpdateForm

1 file declares its use of PathautoBulkUpdateForm
PathautoCommands.php in src/Commands/PathautoCommands.php
1 string reference to 'PathautoBulkUpdateForm'
pathauto.routing.yml in ./pathauto.routing.yml
pathauto.routing.yml

File

src/Form/PathautoBulkUpdateForm.php, line 16

Namespace

Drupal\pathauto\Form
View source
class PathautoBulkUpdateForm extends FormBase {

  /**
   * Generate URL aliases for un-aliased paths only.
   */
  const ACTION_CREATE = 'create';

  /**
   * Update URL aliases for paths that have an existing alias.
   */
  const ACTION_UPDATE = 'update';

  /**
   * Regenerate URL aliases for all paths.
   */
  const ACTION_ALL = 'all';

  /**
   * The alias type manager.
   *
   * @var \Drupal\pathauto\AliasTypeManager
   */
  protected $aliasTypeManager;

  /**
   * Constructs a PathautoBulkUpdateForm object.
   *
   * @param \Drupal\pathauto\AliasTypeManager $alias_type_manager
   *   The alias type manager.
   */
  public function __construct(AliasTypeManager $alias_type_manager) {
    $this->aliasTypeManager = $alias_type_manager;
  }

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

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

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $form = [];
    $form['#update_callbacks'] = [];
    $form['update'] = [
      '#type' => 'checkboxes',
      '#title' => $this
        ->t('Select the types of paths for which to generate URL aliases'),
      '#options' => [],
      '#default_value' => [],
    ];
    $definitions = $this->aliasTypeManager
      ->getVisibleDefinitions();
    foreach ($definitions as $id => $definition) {
      $alias_type = $this->aliasTypeManager
        ->createInstance($id);
      if ($alias_type instanceof AliasTypeBatchUpdateInterface) {
        $form['update']['#options'][$id] = $alias_type
          ->getLabel();
      }
    }
    $form['action'] = [
      '#type' => 'radios',
      '#title' => $this
        ->t('Select which URL aliases to generate'),
      '#options' => [
        static::ACTION_CREATE => $this
          ->t('Generate a URL alias for un-aliased paths only'),
      ],
      '#default_value' => static::ACTION_CREATE,
    ];
    $config = $this
      ->config('pathauto.settings');
    if ($config
      ->get('update_action') == PathautoGeneratorInterface::UPDATE_ACTION_NO_NEW) {

      // Existing aliases should not be updated.
      $form['warning'] = [
        '#markup' => $this
          ->t('<a href=":url">Pathauto settings</a> are set to ignore paths which already have a URL alias. You can only create URL aliases for paths having none.', [
          ':url' => Url::fromRoute('pathauto.settings.form')
            ->toString(),
        ]),
      ];
    }
    else {
      $form['action']['#options'][static::ACTION_UPDATE] = $this
        ->t('Update the URL alias for paths having an old URL alias');
      $form['action']['#options'][static::ACTION_ALL] = $this
        ->t('Regenerate URL aliases for all paths');
    }
    $form['actions']['#type'] = 'actions';
    $form['actions']['submit'] = [
      '#type' => 'submit',
      '#value' => $this
        ->t('Update'),
    ];
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $batch = [
      'title' => $this
        ->t('Bulk updating URL aliases'),
      'operations' => [
        [
          'Drupal\\pathauto\\Form\\PathautoBulkUpdateForm::batchStart',
          [],
        ],
      ],
      'finished' => 'Drupal\\pathauto\\Form\\PathautoBulkUpdateForm::batchFinished',
    ];
    $action = $form_state
      ->getValue('action');
    foreach ($form_state
      ->getValue('update') as $id) {
      if (!empty($id)) {
        $batch['operations'][] = [
          'Drupal\\pathauto\\Form\\PathautoBulkUpdateForm::batchProcess',
          [
            $id,
            $action,
          ],
        ];
      }
    }
    batch_set($batch);
  }

  /**
   * Batch callback; initialize the number of updated aliases.
   */
  public static function batchStart(&$context) {
    $context['results']['updates'] = 0;
  }

  /**
   * Common batch processing callback for all operations.
   *
   * Required to load our include the proper batch file.
   */
  public static function batchProcess($id, $action, &$context) {

    /** @var \Drupal\pathauto\AliasTypeBatchUpdateInterface $alias_type */
    $alias_type = \Drupal::service('plugin.manager.alias_type')
      ->createInstance($id);
    $alias_type
      ->batchUpdate($action, $context);
  }

  /**
   * Batch finished callback.
   */
  public static function batchFinished($success, $results, $operations) {
    if ($success) {
      if ($results['updates']) {
        \Drupal::service('messenger')
          ->addMessage(\Drupal::translation()
          ->formatPlural($results['updates'], 'Generated 1 URL alias.', 'Generated @count URL aliases.'));
      }
      else {
        \Drupal::service('messenger')
          ->addMessage(t('No new URL aliases to generate.'));
      }
    }
    else {
      $error_operation = reset($operations);
      \Drupal::service('messenger')
        ->addMessage(t('An error occurred while processing @operation with arguments : @args'), [
        '@operation' => $error_operation[0],
        '@args' => print_r($error_operation[0]),
      ]);
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
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.
PathautoBulkUpdateForm::$aliasTypeManager protected property The alias type manager.
PathautoBulkUpdateForm::ACTION_ALL constant Regenerate URL aliases for all paths.
PathautoBulkUpdateForm::ACTION_CREATE constant Generate URL aliases for un-aliased paths only.
PathautoBulkUpdateForm::ACTION_UPDATE constant Update URL aliases for paths that have an existing alias.
PathautoBulkUpdateForm::batchFinished public static function Batch finished callback.
PathautoBulkUpdateForm::batchProcess public static function Common batch processing callback for all operations.
PathautoBulkUpdateForm::batchStart public static function Batch callback; initialize the number of updated aliases.
PathautoBulkUpdateForm::buildForm public function Form constructor. Overrides FormInterface::buildForm
PathautoBulkUpdateForm::create public static function Instantiates a new instance of this class. Overrides FormBase::create
PathautoBulkUpdateForm::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId
PathautoBulkUpdateForm::submitForm public function Form submission handler. Overrides FormInterface::submitForm
PathautoBulkUpdateForm::__construct public function Constructs a PathautoBulkUpdateForm object.
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.