123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314 |
- <?php
- namespace Drupal\statusmessage\Entity;
- use Drupal\Core\Entity\EntityStorageInterface;
- use Drupal\Core\Field\BaseFieldDefinition;
- use Drupal\Core\Entity\ContentEntityBase;
- use Drupal\Core\Entity\EntityChangedTrait;
- use Drupal\Core\Entity\EntityTypeInterface;
- use Drupal\statusmessage\StatusInterface;
- use Drupal\user\UserInterface;
- /**
- * Defines the Status entity.
- *
- * @ingroup statusmessage
- *
- * @ContentEntityType(
- * id = "status",
- * label = @Translation("Status"),
- * bundle_label = @Translation("Status type"),
- * handlers = {
- * "view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
- * "list_builder" = "Drupal\statusmessage\StatusListBuilder",
- * "views_data" = "Drupal\statusmessage\Entity\StatusViewsData",
- *
- * "form" = {
- * "default" = "Drupal\statusmessage\Form\StatusForm",
- * "add" = "Drupal\statusmessage\Form\StatusForm",
- * "edit" = "Drupal\statusmessage\Form\StatusForm",
- * "delete" = "Drupal\statusmessage\Form\StatusDeleteForm",
- * },
- * "access" = "Drupal\statusmessage\StatusAccessControlHandler",
- * "route_provider" = {
- * "html" = "Drupal\statusmessage\StatusHtmlRouteProvider",
- * },
- * },
- * base_table = "status",
- * admin_permission = "administer status entities",
- * entity_keys = {
- * "id" = "id",
- * "bundle" = "type",
- * "label" = "name",
- * "uuid" = "uuid",
- * "uid" = "uid",
- * "langcode" = "langcode",
- * "status" = "status",
- * },
- * links = {
- * "canonical" = "/admin/structure/status/{status}",
- * "add-form" = "/admin/structure/status/add/{status_type}",
- * "edit-form" = "/admin/structure/status/{status}/edit",
- * "delete-form" = "/admin/structure/status/{status}/delete",
- * "collection" = "/admin/structure/status",
- * },
- * bundle_entity_type = "status_type",
- * field_ui_base_route = "entity.status_type.edit_form"
- * )
- */
- const TWEET_NODE_TYPE = 'tweet';
- class Status extends ContentEntityBase implements StatusInterface {
- use EntityChangedTrait;
- /**
- * {@inheritdoc}
- */
- public static function preCreate(EntityStorageInterface $storage_controller, array &$values) {
- parent::preCreate($storage_controller, $values);
- $values += array(
- 'user_id' => \Drupal::currentUser()->id(),
- );
- }
- /**
- * {@inheritdoc}
- */
- public function getType() {
- return $this->bundle();
- }
- /**
- * {@inheritdoc}
- */
- public function getName() {
- return $this->get('name')->value;
- }
- /**
- * {@inheritdoc}
- */
- public function setName($name) {
- $this->set('name', $name);
- return $this;
- }
- /**
- * {@inheritdoc}
- */
- public function getCreatedTime() {
- return $this->get('created')->value;
- }
- /**
- * {@inheritdoc}
- */
- public function setCreatedTime($timestamp) {
- $this->set('created', $timestamp);
- return $this;
- }
- /**
- * {@inheritdoc}
- */
- public function getOwner() {
- return $this->get('user_id')->entity;
- }
- /**
- * {@inheritdoc}
- */
- public function getOwnerId() {
- return $this->get('user_id')->target_id;
- }
- /**
- * {@inheritdoc}
- */
- public function setOwnerId($uid) {
- $this->set('user_id', $uid);
- return $this;
- }
- /**
- * {@inheritdoc}
- */
- public function setOwner(UserInterface $account) {
- $this->set('user_id', $account->id());
- return $this;
- }
- /**
- * {@inheritdoc}
- */
- public function isPublished() {
- return (bool) $this->getEntityKey('status');
- }
- /**
- * {@inheritdoc}
- */
- public function setPublished($published) {
- $this->set('status', $published ? NODE_PUBLISHED : NODE_NOT_PUBLISHED);
- return $this;
- }
- /**
- * {@inheritdoc}
- */
- public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
- $fields['id'] = BaseFieldDefinition::create('integer')
- ->setLabel(t('ID'))
- ->setDescription(t('The ID of the Status entity.'))
- ->setReadOnly(TRUE);
- $fields['type'] = BaseFieldDefinition::create('entity_reference')
- ->setLabel(t('Type'))
- ->setDescription(t('The Status type/bundle.'))
- ->setSetting('target_type', 'status_type')
- ->setRequired(TRUE);
- $fields['uuid'] = BaseFieldDefinition::create('uuid')
- ->setLabel(t('UUID'))
- ->setDescription(t('The UUID of the Status entity.'))
- ->setReadOnly(TRUE);
- $fields['uid'] = BaseFieldDefinition::create('entity_reference')
- ->setLabel(t('Authored by'))
- ->setDescription(t('The user ID of author of the Status entity.'))
- ->setRevisionable(TRUE)
- ->setSetting('target_type', 'user')
- ->setSetting('handler', 'default')
- ->setDefaultValueCallback('Drupal\node\Entity\Node::getCurrentUserId')
- ->setTranslatable(TRUE)
- ->setDisplayOptions('view', array(
- 'label' => 'hidden',
- 'type' => 'author',
- 'weight' => 0,
- ))
- ->setDisplayOptions('form', array(
- 'type' => 'entity_reference_autocomplete',
- 'weight' => 5,
- 'settings' => array(
- 'match_operator' => 'CONTAINS',
- 'size' => '60',
- 'autocomplete_type' => 'tags',
- 'placeholder' => '',
- ),
- ))
- ->setDisplayConfigurable('form', TRUE)
- ->setDisplayConfigurable('view', TRUE);
- $fields['recipient'] = BaseFieldDefinition::create('entity_reference')
- ->setLabel(t('Received by'))
- ->setDescription(t('The user ID of recipient of the Status entity.'))
- ->setRevisionable(TRUE)
- ->setSetting('target_type', 'user')
- ->setSetting('handler', 'default')
- ->setTranslatable(TRUE)
- ->setDisplayOptions('view', array(
- 'label' => 'hidden',
- 'type' => 'author',
- 'weight' => 0,
- ))
- ->setDisplayOptions('form', array(
- 'type' => 'entity_reference_autocomplete',
- 'weight' => 5,
- 'settings' => array(
- 'match_operator' => 'CONTAINS',
- 'size' => '60',
- 'autocomplete_type' => 'tags',
- 'placeholder' => '',
- ),
- ))
- ->setDisplayConfigurable('form', TRUE)
- ->setDisplayConfigurable('view', TRUE);
- $fields['entity_target'] = BaseFieldDefinition::create('entity_reference')
- ->setLabel(t('Node'))
- ->setDescription(t('The content associated with this Status message'))
- ->setSetting('target_type', 'node')
- ->setSetting('handler', 'default')
- ->setRevisionable(TRUE);
- $fields['name'] = BaseFieldDefinition::create('string')
- ->setLabel(t('Name'))
- ->setDescription(t('The name of the Status entity.'))
- ->setSettings(array(
- 'max_length' => 50,
- 'text_processing' => 0,
- ))
- ->setDefaultValue('')
- ->setDisplayOptions('view', array(
- 'label' => 'above',
- 'type' => 'string',
- 'weight' => -4,
- ))
- ->setDisplayOptions('form', array(
- 'type' => 'string_textfield',
- 'weight' => -4,
- ))
- ->setDisplayConfigurable('form', TRUE)
- ->setDisplayConfigurable('view', TRUE);
- $fields['message'] = BaseFieldDefinition::create('string_long')
- ->setLabel(t('Message'))
- ->setDescription(t('The message of the Status entity.'))
- ->setRevisionable(TRUE);
- $fields['status'] = BaseFieldDefinition::create('boolean')
- ->setLabel(t('Publishing status'))
- ->setDescription(t('A boolean indicating whether the Status is published.'))
- ->setDefaultValue(TRUE);
- $fields['langcode'] = BaseFieldDefinition::create('language')
- ->setLabel(t('Language code'))
- ->setDescription(t('The language code for the Status entity.'))
- ->setDisplayOptions('form', array(
- 'type' => 'language_select',
- 'weight' => 10,
- ))
- ->setDisplayConfigurable('form', TRUE);
- $fields['created'] = BaseFieldDefinition::create('created')
- ->setLabel(t('Created'))
- ->setDescription(t('The time that the entity was created.'));
- $fields['changed'] = BaseFieldDefinition::create('changed')
- ->setLabel(t('Changed'))
- ->setDescription(t('The time that the entity was last edited.'));
- return $fields;
- }
- public function setMessage($message) {
- $this->set('message', $message);
- }
- public function getMessage() {
- return $this->get('message');
- }
- // public function setSender($sender) {
- // $this->set('sender', $sender);
- // }
- //
- // public function getSender() {
- // return $this->get('sender');
- // }
- public function setRecipient($recipient) {
- $this->set('recipient', $recipient);
- }
- public function getRecipient() {
- return $this->get('recipient');
- }
- public function setEntityTarget($entityTarget) {
- $this->set('entity_target', $entityTarget);
- }
- public function getEntityTarget() {
- return $this->get('entity_target');
- }
- }
|