You are here

class SimpleFlowSetupHelper in CMS Content Sync 2.1.x

Hierarchy

Expanded class hierarchy of SimpleFlowSetupHelper

1 file declares its use of SimpleFlowSetupHelper
FlowControllerSimple.php in src/Controller/FlowControllerSimple.php

File

src/Helper/SimpleFlowSetupHelper.php, line 8

Namespace

Drupal\cms_content_sync\Helper
View source
class SimpleFlowSetupHelper {

  /**
   * @var Flow
   */
  protected $flow;
  public function __construct(Flow $flow) {
    $this->flow = $flow;
  }
  public function save() {
    $this->flow
      ->save();
    return $this;
  }
  public function getFlow() {
    return $this->flow;
  }
  public function enableBundle(string $entity_type_name, string $bundle, bool $dependency = false, ?array $filter_by_tags = null) {
    $this->flow->simple_settings['entityTypeSettings'][$entity_type_name]['perBundle'][$bundle] = [
      'mode' => $dependency ? FlowControllerSimple::MODE_DEPENDENT : 'default',
    ];
    if (!empty($filter_by_tags)) {

      /**
       * @var \Drupal\Core\Entity\EntityFieldManagerInterface $entityFieldManager
       */
      $entityFieldManager = \Drupal::service('entity_field.manager');
      $fields = $entityFieldManager
        ->getFieldDefinitions($entity_type_name, $bundle);
      foreach ($fields as $field_name => $field) {
        if ('entity_reference' == $field
          ->getType() && 'taxonomy_term' == $field
          ->getSetting('target_type')) {
          $bundles = $field
            ->getSetting('target_bundles');
          if (is_array($bundles)) {
            $terms = [];
            foreach ($filter_by_tags as $tag) {
              if (in_array($tag
                ->bundle(), $bundles)) {
                $terms[] = [
                  'namespaceMachineName' => 'taxonomy_term',
                  'machineName' => $tag
                    ->bundle(),
                  'remoteUuid' => $tag
                    ->uuid(),
                ];
              }
            }
            if (count($terms)) {
              $this->flow->simple_settings['entityTypeSettings'][$entity_type_name]['perBundle'][$bundle]['filterByReference'][] = [
                'type' => 'includes-reference',
                'fieldMachineName' => $field_name,
                'values' => $terms,
              ];
            }
          }
        }
      }
    }
  }
  public function setUpdateBehavior(string $behavior) {
    $this->flow->simple_settings['updateBehavior'] = $behavior;
  }

}

Members