You are here

class CampaignMonitorSubscribeForm in Campaign Monitor 8

Same name in this branch
  1. 8 src/Form/CampaignMonitorSubscribeForm.php \Drupal\campaignmonitor\Form\CampaignMonitorSubscribeForm
  2. 8 src/Plugin/Derivative/CampaignMonitorSubscribeBlock.php \Drupal\campaignmonitor\Plugin\Derivative\CampaignMonitorSubscribeForm

Provides block plugin definitions for all Views block displays.

Hierarchy

Expanded class hierarchy of CampaignMonitorSubscribeForm

See also

\Drupal\views\Plugin\block\block\ViewsBlock

File

src/Plugin/Derivative/CampaignMonitorSubscribeBlock.php, line 15

Namespace

Drupal\campaignmonitor\Plugin\Derivative
View source
class CampaignMonitorSubscribeForm implements ContainerDeriverInterface {

  /**
   * List of derivative definitions.
   *
   * @var array
   */
  protected $derivatives = [];

  /**
   * The base plugin ID.
   *
   * @var string
   */
  protected $basePluginId;

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {

    // Get all campaign monitor lists for the current account
    foreach ($this->viewStorage
      ->loadMultiple() as $view) {

      // Do not return results for disabled views.
      if (!$view
        ->status()) {
        continue;
      }
      $executable = $view
        ->getExecutable();
      $executable
        ->initDisplay();
      foreach ($executable->displayHandlers as $display) {

        // Add a block plugin definition for each block display.
        if (isset($display) && !empty($display->definition['uses_hook_block'])) {
          $delta = $view
            ->id() . '-' . $display->display['id'];
          $admin_label = $display
            ->getOption('block_description');
          if (empty($admin_label)) {
            if ($display->display['display_title'] == $display->definition['title']) {
              $admin_label = $view
                ->label();
            }
            else {

              // Allow translators to control the punctuation. Plugin
              // definitions get cached, so use TranslatableMarkup() instead of
              // t() to avoid double escaping when $admin_label is rendered
              // during requests that use the cached definition.
              $admin_label = new TranslatableMarkup('@view: @display', [
                '@view' => $view
                  ->label(),
                '@display' => $display->display['display_title'],
              ]);
            }
          }
          $this->derivatives[$delta] = [
            'category' => $display
              ->getOption('block_category'),
            'admin_label' => $admin_label,
            'config_dependencies' => [
              'config' => [
                $view
                  ->getConfigDependencyName(),
              ],
            ],
          ];
          $this->derivatives[$delta] += $base_plugin_definition;
        }
      }
    }
    return $this->derivatives;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CampaignMonitorSubscribeForm::$basePluginId protected property The base plugin ID.
CampaignMonitorSubscribeForm::$derivatives protected property List of derivative definitions.
CampaignMonitorSubscribeForm::getDerivativeDefinitions public function Gets the definition of all derivatives of a base plugin. Overrides DeriverInterface::getDerivativeDefinitions
ContainerDeriverInterface::create public static function Creates a new class instance. 38
DeriverInterface::getDerivativeDefinition public function Gets the definition of a derivative plugin. 14