You are here

class SocialContentBlockOverride in Open Social 10.0.x

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_content_block/src/SocialContentBlockOverride.php \Drupal\social_content_block\SocialContentBlockOverride
  2. 8.6 modules/social_features/social_content_block/src/SocialContentBlockOverride.php \Drupal\social_content_block\SocialContentBlockOverride
  3. 8.7 modules/social_features/social_content_block/src/SocialContentBlockOverride.php \Drupal\social_content_block\SocialContentBlockOverride
  4. 8.8 modules/social_features/social_content_block/src/SocialContentBlockOverride.php \Drupal\social_content_block\SocialContentBlockOverride
  5. 10.3.x modules/social_features/social_content_block/src/SocialContentBlockOverride.php \Drupal\social_content_block\SocialContentBlockOverride
  6. 10.1.x modules/social_features/social_content_block/src/SocialContentBlockOverride.php \Drupal\social_content_block\SocialContentBlockOverride
  7. 10.2.x modules/social_features/social_content_block/src/SocialContentBlockOverride.php \Drupal\social_content_block\SocialContentBlockOverride

Class SocialContentBlockOverride.

Override content block form.

@package Drupal\social_content_block

Hierarchy

Expanded class hierarchy of SocialContentBlockOverride

2 string references to 'SocialContentBlockOverride'
SocialContentBlockOverride::getCacheSuffix in modules/social_features/social_content_block/src/SocialContentBlockOverride.php
The string to append to the configuration static cache name.
social_content_block.services.yml in modules/social_features/social_content_block/social_content_block.services.yml
modules/social_features/social_content_block/social_content_block.services.yml
1 service uses SocialContentBlockOverride
social_content_block.override in modules/social_features/social_content_block/social_content_block.services.yml
Drupal\social_content_block\SocialContentBlockOverride

File

modules/social_features/social_content_block/src/SocialContentBlockOverride.php, line 18

Namespace

Drupal\social_content_block
View source
class SocialContentBlockOverride implements ConfigFactoryOverrideInterface {

  /**
   * The config factory.
   *
   * @var \Drupal\Core\Config\ConfigFactoryInterface
   */
  protected $configFactory;

  /**
   * The content block plugin definitions.
   *
   * @var array
   */
  protected $definitions = NULL;

  /**
   * Constructs the configuration override.
   *
   * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
   *   The configuration factory.
   */
  public function __construct(ConfigFactoryInterface $config_factory) {
    $this->configFactory = $config_factory;
    if (\Drupal::hasService('plugin.manager.content_block')) {
      $this->definitions = \Drupal::service('plugin.manager.content_block')
        ->getDefinitions();
    }
  }

  /**
   * Load overrides.
   */
  public function loadOverrides($names) {
    $overrides = [];
    $config_name = 'field.field.paragraph.block.field_block_reference_secondary';
    if (in_array($config_name, $names)) {
      $config = $this->configFactory
        ->getEditable($config_name);
      $settings = $config
        ->getOriginal('settings', FALSE)['plugin_ids'];

      // Get all the blocks from this custom block type.
      $storage = self::getBlockContent();
      $query = $storage
        ->getQuery()
        ->condition('type', 'custom_content_list');
      $ids = $query
        ->execute();
      foreach ($ids as $id) {
        $block = BlockContent::load($id);
        if ($block) {
          $plugin_ids[] = 'block_content:' . $block
            ->uuid();
        }
      }

      // Add the blocks to the landing page.
      if (isset($plugin_ids)) {
        foreach ($plugin_ids as $plugin_id) {
          $settings[$plugin_id] = $plugin_id;
        }
      }
      $overrides[$config_name]['settings']['plugin_ids'] = $settings;
    }
    if (!$this->definitions) {
      return $overrides;
    }
    $config_name = 'core.entity_form_display.block_content.custom_content_list.default';
    if (in_array($config_name, $names)) {
      $config = $this->configFactory
        ->getEditable($config_name);
      $dependencies = $config
        ->get('dependencies.config');
      $group = $config
        ->get('third_party_settings.field_group.group_filter_options.children');
      $fields = [];
      $field_config_prefix = 'field.field.block_content.custom_content_list.';
      $field_configs = $this->configFactory
        ->listAll($field_config_prefix);
      foreach ($this->definitions as $plugin_definition) {

        // It's set in a six because weights from zero to five are reserved by
        // other fields such as the plugin ID field and plugin filters field.
        $weight = 6;
        foreach ($plugin_definition['fields'] as $field) {
          $field_config = $field_config_prefix . $field;
          if (in_array($field_config, $field_configs)) {
            $dependencies[] = $field_config;
            $group[] = $field;
            $fields[$field] = [
              'weight' => $weight++,
              'settings' => [
                'match_operator' => 'CONTAINS',
                'size' => 60,
                'placeholder' => '',
                'match_limit' => 10,
              ],
              'third_party_settings' => [],
              'type' => 'entity_reference_autocomplete_tags',
              'region' => 'content',
            ];
          }
        }
      }
      $overrides[$config_name] = [
        'dependencies' => [
          'config' => $dependencies,
        ],
        'third_party_settings' => [
          'field_group' => [
            'group_filter_options' => [
              'children' => $group,
            ],
          ],
        ],
        'content' => $fields,
      ];
    }
    $config_name = 'core.entity_view_display.block_content.custom_content_list.default';
    if (in_array($config_name, $names)) {
      $field_config_prefix = 'field.field.block_content.custom_content_list.';
      $field_configs = $this->configFactory
        ->listAll($field_config_prefix);
      foreach ($this->definitions as $plugin_definition) {
        foreach ($plugin_definition['fields'] as $field) {
          $field_config = $field_config_prefix . $field;
          if (in_array($field_config, $field_configs)) {
            $overrides[$config_name]['hidden'][$field] = TRUE;
          }
        }
      }
    }
    return $overrides;
  }

  /**
   * Load the config pages that exist.
   *
   * Use a static method instead of dependency injection to avoid circular
   * dependencies.
   *
   * @return \Drupal\Core\Entity\EntityStorageInterface
   *   Keyed array of block_content.
   *
   * @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
   * @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
   */
  protected static function getBlockContent() {
    return \Drupal::entityTypeManager()
      ->getStorage('block_content');
  }

  /**
   * {@inheritdoc}
   */
  public function getCacheSuffix() {
    return 'SocialContentBlockOverride';
  }

  /**
   * {@inheritdoc}
   */
  public function getCacheableMetadata($name) {
    return new CacheableMetadata();
  }

  /**
   * {@inheritdoc}
   */
  public function createConfigObject($name, $collection = StorageInterface::DEFAULT_COLLECTION) {
    return NULL;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
SocialContentBlockOverride::$configFactory protected property The config factory.
SocialContentBlockOverride::$definitions protected property The content block plugin definitions.
SocialContentBlockOverride::createConfigObject public function Creates a configuration object for use during install and synchronization. Overrides ConfigFactoryOverrideInterface::createConfigObject
SocialContentBlockOverride::getBlockContent protected static function Load the config pages that exist.
SocialContentBlockOverride::getCacheableMetadata public function Gets the cacheability metadata associated with the config factory override. Overrides ConfigFactoryOverrideInterface::getCacheableMetadata
SocialContentBlockOverride::getCacheSuffix public function The string to append to the configuration static cache name. Overrides ConfigFactoryOverrideInterface::getCacheSuffix
SocialContentBlockOverride::loadOverrides public function Load overrides. Overrides ConfigFactoryOverrideInterface::loadOverrides
SocialContentBlockOverride::__construct public function Constructs the configuration override.