You are here

Like.php in Open Social 10.2.x

File

modules/custom/social_demo/src/Plugin/DemoContent/Like.php
View source
<?php

namespace Drupal\social_demo\Plugin\DemoContent;

use Drupal\social_demo\DemoEntity;

/**
 * Like Plugin for demo content.
 *
 * @DemoContent(
 *   id = "like",
 *   label = @Translation("Like"),
 *   source = "content/entity/like.yml",
 *   entity_type = "vote"
 * )
 */
class Like extends DemoEntity {

  /**
   * {@inheritdoc}
   */
  public function getEntry(array $item) {
    $entry = parent::getEntry($item);
    return $entry + [
      'type' => $item['type'],
      'entity_type' => $item['entity_type'],
      'entity_id' => $this
        ->loadByUuid($item['entity_type'], $item['entity_id'])
        ->id(),
      'value' => $item['value'],
      'value_type' => $item['value_type'],
      'user_id' => $this
        ->loadByUuid('user', $item['uid'])
        ->id(),
      'timestamp' => \Drupal::time()
        ->getRequestTime(),
      'vote_source' => $item['vote_source'],
    ];
  }

}

Classes

Namesort descending Description
Like Like Plugin for demo content.