You are here

class Page in Open Social 8

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

Page Plugin for demo content.

Plugin annotation


@DemoContent(
  id = "page",
  label = @Translation("Basic page"),
  source = "content/entity/page.yml",
  entity_type = "node"
)

Hierarchy

Expanded class hierarchy of Page

17 string references to 'Page'
views.view.activity_stream.yml in modules/social_features/social_activity/config/install/views.view.activity_stream.yml
modules/social_features/social_activity/config/install/views.view.activity_stream.yml
views.view.activity_stream_notifications.yml in modules/social_features/social_activity/config/install/views.view.activity_stream_notifications.yml
modules/social_features/social_activity/config/install/views.view.activity_stream_notifications.yml
views.view.content.yml in modules/social_features/social_core/config/install/views.view.content.yml
modules/social_features/social_core/config/install/views.view.content.yml
views.view.event_enrollments.yml in modules/social_features/social_event/config/install/views.view.event_enrollments.yml
modules/social_features/social_event/config/install/views.view.event_enrollments.yml
views.view.following.yml in modules/social_features/social_follow_content/config/install/views.view.following.yml
modules/social_features/social_follow_content/config/install/views.view.following.yml

... See full list

File

modules/custom/social_demo/src/Plugin/DemoContent/Page.php, line 22

Namespace

Drupal\social_demo\Plugin\DemoContent
View source
class Page extends DemoNode {

  /**
   * The file storage.
   *
   * @var \Drupal\file\FileStorageInterface
   */
  protected $fileStorage;

  /**
   * Page constructor.
   */
  public function __construct(array $configuration, $plugin_id, $plugin_definition, DemoContentParserInterface $parser, UserStorageInterface $user_storage, EntityStorageInterface $group_storage, FileStorageInterface $file_storage) {
    parent::__construct($configuration, $plugin_id, $plugin_definition, $parser, $user_storage, $group_storage);
    $this->fileStorage = $file_storage;
  }

  /**
   * {@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'), $container
      ->get('entity.manager')
      ->getStorage('user'), $container
      ->get('entity.manager')
      ->getStorage('group'), $container
      ->get('entity.manager')
      ->getStorage('file'));
  }

  /**
   * {@inheritdoc}
   */
  protected function getEntry(array $item) {
    $entry = parent::getEntry($item);
    $entry['field_content_visibility'] = $item['field_content_visibility'];

    // Load image by uuid and set to node.
    if (!empty($item['field_page_image'])) {
      $entry['field_page_image'] = $this
        ->prepareImage($item['field_page_image']);
    }
    if (!empty($item['alias'])) {
      $entry['path'] = [
        'alias' => $item['alias'],
      ];
    }
    return $entry;
  }

  /**
   * Prepares data about an image of node.
   *
   * @param string $uuid
   *   The uuid for the image.
   *
   * @return array|null
   *   Returns an array or null.
   */
  protected function prepareImage($uuid) {
    $value = NULL;
    $files = $this->fileStorage
      ->loadByProperties([
      'uuid' => $uuid,
    ]);
    if ($files) {
      $value = [
        [
          'target_id' => current($files)
            ->id(),
        ],
      ];
    }
    return $value;
  }

}

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::removeContent public function Removes content. Overrides DemoContentInterface::removeContent
DemoContent::setEntityStorage public function Set entity storage. Overrides DemoContentInterface::setEntityStorage
DemoContent::setProfile public function Sets the used profile. Overrides DemoContentInterface::setProfile
DemoNode::$groupStorage protected property The entity storage.
DemoNode::$userStorage protected property The user storage.
DemoNode::createContent public function Creates content. Overrides DemoContentInterface::createContent
DemoNode::createDate protected function Converts a date in the correct format.
DemoNode::createFollow public function The function that checks and creates a follow on an entity.
DemoNode::createGroupContent public function Creates a group content.
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
MessengerTrait::$messenger protected property The messenger. 29
MessengerTrait::messenger public function Gets the messenger. 29
MessengerTrait::setMessenger public function Sets the messenger.
Page::$fileStorage protected property The file storage.
Page::create public static function Creates an instance of the plugin. Overrides DemoNode::create
Page::getEntry protected function Makes an array with data of an entity. Overrides DemoNode::getEntry
Page::prepareImage protected function Prepares data about an image of node.
Page::__construct public function Page constructor. Overrides DemoNode::__construct
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 3
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. 1
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.