You are here

abstract class DemoTaxonomyTerm in Open Social 10.3.x

Same name and namespace in other branches
  1. 8.9 modules/custom/social_demo/src/DemoTaxonomyTerm.php \Drupal\social_demo\DemoTaxonomyTerm
  2. 8 modules/custom/social_demo/src/DemoTaxonomyTerm.php \Drupal\social_demo\DemoTaxonomyTerm
  3. 8.2 modules/custom/social_demo/src/DemoTaxonomyTerm.php \Drupal\social_demo\DemoTaxonomyTerm
  4. 8.3 modules/custom/social_demo/src/DemoTaxonomyTerm.php \Drupal\social_demo\DemoTaxonomyTerm
  5. 8.4 modules/custom/social_demo/src/DemoTaxonomyTerm.php \Drupal\social_demo\DemoTaxonomyTerm
  6. 8.5 modules/custom/social_demo/src/DemoTaxonomyTerm.php \Drupal\social_demo\DemoTaxonomyTerm
  7. 8.6 modules/custom/social_demo/src/DemoTaxonomyTerm.php \Drupal\social_demo\DemoTaxonomyTerm
  8. 8.7 modules/custom/social_demo/src/DemoTaxonomyTerm.php \Drupal\social_demo\DemoTaxonomyTerm
  9. 8.8 modules/custom/social_demo/src/DemoTaxonomyTerm.php \Drupal\social_demo\DemoTaxonomyTerm
  10. 10.0.x modules/custom/social_demo/src/DemoTaxonomyTerm.php \Drupal\social_demo\DemoTaxonomyTerm
  11. 10.1.x modules/custom/social_demo/src/DemoTaxonomyTerm.php \Drupal\social_demo\DemoTaxonomyTerm
  12. 10.2.x modules/custom/social_demo/src/DemoTaxonomyTerm.php \Drupal\social_demo\DemoTaxonomyTerm

Class DemoTaxonomyTerm.

@package Drupal\social_demo

Hierarchy

Expanded class hierarchy of DemoTaxonomyTerm

2 files declare their use of DemoTaxonomyTerm
EventType.php in modules/custom/social_demo/src/Plugin/DemoContent/EventType.php
UserTerms.php in modules/custom/social_demo/src/Plugin/DemoContent/UserTerms.php

File

modules/custom/social_demo/src/DemoTaxonomyTerm.php, line 13

Namespace

Drupal\social_demo
View source
abstract class DemoTaxonomyTerm extends DemoContent {

  /**
   * DemoTaxonomyTerm constructor.
   */
  public function __construct(array $configuration, $plugin_id, $plugin_definition, DemoContentParserInterface $parser) {
    parent::__construct($configuration, $plugin_id, $plugin_definition);
    $this->parser = $parser;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
    return new static($configuration, $plugin_id, $plugin_definition, $container
      ->get('social_demo.yaml_parser'));
  }

  /**
   * {@inheritdoc}
   */
  public function createContent($generate = FALSE, $max = NULL) {
    $data = $this
      ->fetchData();
    if ($generate === TRUE) {
      $data = $this
        ->scrambleData($data, $max);
    }
    foreach ($data as $uuid => $item) {

      // Must have uuid and same key value.
      if ($uuid !== $item['uuid']) {
        drush_log(dt("Term with uuid: {$uuid} has a different uuid in content."), LogLevel::ERROR);
        continue;
      }

      // Check whether node with same uuid already exists.
      $terms = $this->entityStorage
        ->loadByProperties([
        'uuid' => $uuid,
      ]);
      if ($terms) {
        drush_log(dt("Term with uuid: {$uuid} already exists."), LogLevel::WARNING);
        continue;
      }
      $entry = $this
        ->getEntry($item);
      $entity = $this->entityStorage
        ->create($entry);
      $entity
        ->save();
      if ($entity
        ->id()) {
        $this->content[$entity
          ->id()] = $entity;
      }
    }
    return $this->content;
  }

  /**
   * {@inheritdoc}
   */
  protected function getEntry(array $item) {
    $entry = [
      'uuid' => $item['uuid'],
      'name' => $item['name'],
      'vid' => $item['vid'],
      'created' => \Drupal::time()
        ->getRequestTime(),
    ];
    return $entry;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DemoContent::$content protected property Contains the created content.
DemoContent::$data protected property Contains data from a file.
DemoContent::$entityStorage protected property Contains the entity storage.
DemoContent::$parser protected property Parser.
DemoContent::$profile protected property Profile.
DemoContent::checkMentionOrLinkByUuid protected function Extract the mention from the content by [~Uuid].
DemoContent::count public function Returns quantity of created items. Overrides DemoContentInterface::count 1
DemoContent::fetchData protected function Gets the data from a file.
DemoContent::getModule public function Returns the module name. Overrides DemoContentInterface::getModule
DemoContent::getProfile public function Returns the profile. Overrides DemoContentInterface::getProfile
DemoContent::getSource public function Returns the file name. Overrides DemoContentInterface::getSource
DemoContent::loadByUuid protected function Load entity by uuid.
DemoContent::prepareImage protected function Prepares data about an image.
DemoContent::removeContent public function Removes content. Overrides DemoContentInterface::removeContent
DemoContent::scrambleData public function Scramble it. Overrides DemoContentInterface::scrambleData 2
DemoContent::setEntityStorage public function Set entity storage. Overrides DemoContentInterface::setEntityStorage
DemoContent::setProfile public function Sets the used profile. Overrides DemoContentInterface::setProfile
DemoTaxonomyTerm::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
DemoTaxonomyTerm::createContent public function Creates content. Overrides DemoContentInterface::createContent 1
DemoTaxonomyTerm::getEntry protected function Makes an array with data of an entity. Overrides DemoContent::getEntry
DemoTaxonomyTerm::__construct public function DemoTaxonomyTerm constructor. Overrides PluginBase::__construct
DependencySerializationTrait::$_entityStorages protected property
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::__sleep public function 2
DependencySerializationTrait::__wakeup public function 2
MessengerTrait::$messenger protected property The messenger. 27
MessengerTrait::messenger public function Gets the messenger. 27
MessengerTrait::setMessenger public function Sets the messenger.
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 2
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
StringTranslationTrait::$stringTranslation protected property The string translation service. 4
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.