BlockContentAddLocalAction.php

Same filename and directory in other branches
  1. 10 core/modules/block_content/src/Plugin/Menu/LocalAction/BlockContentAddLocalAction.php
  2. 11.x core/modules/block_content/src/Plugin/Menu/LocalAction/BlockContentAddLocalAction.php
  3. 8.9.x core/modules/block_content/src/Plugin/Menu/LocalAction/BlockContentAddLocalAction.php

Namespace

Drupal\block_content\Plugin\Menu\LocalAction

File

core/modules/block_content/src/Plugin/Menu/LocalAction/BlockContentAddLocalAction.php

View source
<?php

namespace Drupal\block_content\Plugin\Menu\LocalAction;

use Drupal\Core\Menu\LocalActionDefault;
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\Url;

/**
 * Modifies the 'Add custom block' local action.
 */
class BlockContentAddLocalAction extends LocalActionDefault {
  
  /**
   * {@inheritdoc}
   */
  public function getOptions(RouteMatchInterface $route_match) {
    $options = parent::getOptions($route_match);
    // If the route specifies a theme, append it to the query string.
    if ($theme = $route_match->getParameter('theme')) {
      $options['query']['theme'] = $theme;
    }
    // Adds a destination on custom block listing.
    if ($route_match->getRouteName() == 'entity.block_content.collection') {
      $options['query']['destination'] = Url::fromRoute('<current>')->toString();
    }
    return $options;
  }

}

Classes

Title Deprecated Summary
BlockContentAddLocalAction Modifies the 'Add custom block' local action.

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