You are here

class ParagraphsItemEntity in Paragraphs 7

Entity implementation for the paragraphs entity.

Hierarchy

Expanded class hierarchy of ParagraphsItemEntity

1 string reference to 'ParagraphsItemEntity'
paragraphs_entity_info in ./paragraphs.module
Implements hook_entity_info().

File

./ParagraphsItemEntity.inc, line 6

View source
class ParagraphsItemEntity extends Entity {

  /**
   * Paragraphs field info.
   *
   * @var array
   */
  protected $fieldInfo;

  /**
   * The host entity object.
   *
   * @var object
   */
  protected $hostEntity;

  /**
   * The host entity ID.
   *
   * @var int
   */
  protected $hostEntityId;

  /**
   * The host entity revision ID if this is not the default revision.
   *
   * @var int
   */
  protected $hostEntityRevisionId;

  /**
   * The host entity type.
   *
   * @var string
   */
  protected $hostEntityType;

  /**
   * The host entity bundle.
   *
   * @var string
   */
  protected $hostEntityBundle;

  /**
   * The language under which the paragraphs item is stored.
   *
   * @var string
   */
  public $langcode = LANGUAGE_NONE;

  /**
   * Entity ID.
   *
   * @var int
   */
  public $item_id;

  /**
   * Paragraphs revision ID.
   *
   * @var int
   */
  public $revision_id;

  /**
   * The name of the paragraphs field this item is associated with.
   *
   * @var string
   */
  public $field_name;

  /**
   * Whether this revision is the default revision.
   *
   * @var bool
   */
  public $default_revision = TRUE;

  /**
   * Whether the paragraphs item is archived, i.e. not in use.
   *
   * @var bool
   * @see ParagraphsItemEntity::isInUse()
   */
  public $archived = FALSE;

  /**
   * The name of the paragraphs field this item is associated with.
   *
   * @var string
   */
  private $fetchedHostEntityDetails = NULL;

  /**
   * Constructs the entity object.
   */
  public function __construct(array $values = array(), $entityType = NULL) {
    parent::__construct($values, 'paragraphs_item');
    if (isset($this->field_name)) {

      // Ok, we have the field name property, we can proceed and
      // check the field's type.
      $field_info = $this
        ->fieldInfo();

      // Check if we have field info, if not, our field is deleted.
      if (!$field_info) {
        return FALSE;
      }

      // We only allow paragraphs type field for this entity.
      if ($field_info['type'] != 'paragraphs') {
        throw new Exception("Invalid field name given: {$this->field_name} is not a paragraphs field.");
      }
    }
  }

  /**
   * Provides info about the host entity field embedding this paragraphs item.
   */
  public function fieldInfo() {
    return field_info_field($this->field_name);
  }

  /**
   * Provides info about the field instance referencing this paragraphs item.
   */
  public function instanceInfo() {
    return field_info_instance($this
      ->hostEntityType(), $this->field_name, $this
      ->hostEntityBundle());
  }

  /**
   * Returns the field instance label translated to interface language.
   */
  public function translatedInstanceLabel($langcode = NULL) {
    if ($info = $this
      ->instanceInfo()) {
      if (module_exists('i18n_field')) {
        return i18n_string("field:{$this->field_name}:{$info['bundle']}:label", $info['label'], array(
          'langcode' => $langcode,
        ));
      }
      return $info['label'];
    }
  }

  /**
   * Specifies the default label, which is picked up by label() by default.
   */
  public function defaultLabel() {
    if ($this
      ->fetchHostDetails()) {

      // Don't show a label. The parent field already shows a label if the user
      // wants to display one.
      return '';
    }

    // Should only happen when there is something wrong.
    return t('Unconnected paragraphs item');
  }

  /**
   * Returns the path used to view the entity.
   */
  public function path() {
  }

  /**
   * Returns the URI as returned by entity_uri().
   */
  public function defaultUri() {
    return array(
      'path' => $this
        ->path(),
    );
  }

  /**
   * Sets the host entity. Only possible during creation of a item.
   *
   * @param string $entity_type
   *   The entity type of the host.
   * @param object $entity
   *   The host entity.
   * @param string $langcode
   *   (optional) The field language code we should use for host entity.
   * @param bool $create_link
   *   (optional) Whether a field-item linking the host entity to the field
   *   collection item should be created.
   *
   * @throws Exception
   *   When you try to set the host when the item has already been created.
   */
  public function setHostEntity($entity_type, $entity, $langcode = LANGUAGE_NONE, $create_link = TRUE) {
    $this->hostEntityType = $entity_type;
    $this->hostEntity = $entity;
    $this->langcode = $langcode;
    list($this->hostEntityId, $this->hostEntityRevisionId, $this->hostEntityBundle) = entity_extract_ids($this->hostEntityType, $this->hostEntity);

    // If the host entity is not saved yet, set the id to FALSE. So
    // fetchHostDetails() does not try to load the host entity details.
    if (!isset($this->hostEntityId)) {
      $this->hostEntityId = FALSE;
    }

    // We are create a new paragraphs for a non-default entity, thus
    // set archived to TRUE.
    if (!entity_revision_is_default($entity_type, $entity)) {
      $this->hostEntityId = FALSE;
      $this->archived = TRUE;
    }
    if ($create_link) {
      $entity->{$this->field_name}[$this->langcode][] = array(
        'entity' => $this,
      );
    }
    $this->fetchedHostEntityDetails = TRUE;
  }

  /**
   * Function to force change the host entity of this paragraphs item.
   *
   * @param object $entity
   *   The entity to force the host to.
   */
  public function forceHostEntity($entity) {
    $this->hostEntity = $entity;
  }

  /**
   * Function to force change the host entity type of this paragraphs item.
   *
   * @param string $entity_type
   *   The entity type to force the host to.
   */
  public function forceHostEntityType($entity_type) {
    $this->hostEntityType = $entity_type;
  }

  /**
   * Returns the host entity embedding this paragraphs item.
   */
  public function hostEntity() {
    $this
      ->fetchHostDetails();
    return $this->hostEntity;
  }

  /**
   * Returns the entity type of the host entity embedding this paragraphs item.
   */
  public function hostEntityType() {
    return $this->hostEntityType;
  }

  /**
   * Returns the id of the host entity embedding this paragraphs item.
   */
  public function hostEntityId() {
    return $this->hostEntityId;
  }

  /**
   * Returns the revisions id of the host entity embedding this paragraphs item.
   */
  public function hostEntityRevisionId() {
    return $this->hostEntityRevisionId;
  }

  /**
   * Returns the bundle of the host entity embedding this paragraphs item.
   */
  public function hostEntityBundle() {
    return $this->hostEntityBundle;
  }

  /**
   * Fetches details of the host and saves it in the entity.
   *
   * @return bool
   *   Whether the fetching was successful.
   */
  protected function fetchHostDetails() {
    if ($this->fetchedHostEntityDetails === NULL) {
      if ($this->item_id) {

        // For saved paragraphs, query the field data to determine the
        // right host entity.
        $query = new EntityFieldQuery();
        $query
          ->fieldCondition($this
          ->fieldInfo(), 'revision_id', $this->revision_id)
          ->age(FIELD_LOAD_REVISION);
        $result = $query
          ->execute();
        $this->hostEntityType = key($result);
        $data = current($result);
        if ($data) {
          $data_values = array_shift($data);
          $host_entity_info = entity_get_info($this->hostEntityType);
          $host_entity_keys = $host_entity_info['entity keys'];
          $this->hostEntityId = isset($data_values->{$host_entity_keys['id']}) ? $data_values->{$host_entity_keys['id']} : NULL;
          $this->hostEntityRevisionId = isset($data_values->{$host_entity_keys['revision']}) ? $data_values->{$host_entity_keys['revision']} : NULL;
          $this->hostEntityBundle = isset($data_values->{$host_entity_keys['bundle']}) ? $data_values->{$host_entity_keys['bundle']} : NULL;
          $this->hostEntity = entity_revision_load($this->hostEntityType, $this->hostEntityRevisionId);
          $this->fetchedHostEntityDetails = TRUE;
        }
        else {
          $this->hostEntityId = FALSE;
          $this->hostEntityRevisionId = FALSE;
          $this->hostEntityBundle = FALSE;
          $this->fetchedHostEntityDetails = FALSE;
        }
      }
      else {

        // No host entity available yet.
        $this->hostEntityId = FALSE;
        $this->hostEntityRevisionId = FALSE;
        $this->hostEntityBundle = FALSE;
        $this->fetchedHostEntityDetails = FALSE;
      }
    }
    return $this->fetchedHostEntityDetails;
  }

  /**
   * Determines the $delta of the reference pointing to this paragraph item.
   */
  public function delta() {
    if (($entity = $this
      ->hostEntity()) && isset($entity->{$this->field_name})) {
      foreach ($entity->{$this->field_name} as $langcode => &$data) {
        foreach ($data as $delta => $item) {
          if (isset($item['value']) && $item['value'] == $this->item_id) {
            $this->langcode = $langcode;
            return $delta;
          }
          elseif (isset($item['entity']) && $item['entity'] === $this) {
            $this->langcode = $langcode;
            return $delta;
          }
        }
      }
    }
  }

  /**
   * Determines the language code under which the item is stored.
   */
  public function langcode() {
    if ($this
      ->delta() !== NULL) {
      return $this->langcode;
    }
  }

  /**
   * Determines whether this paragraphs item revision is in use.
   *
   * Paragraphs items may be contained in from non-default host entity
   * revisions. If the paragraphs item does not appear in the default
   * host entity revision, the item is actually not used by default and so
   * marked as 'archived'.
   * If the paragraphs item appears in the default revision of the host
   * entity, the default revision of the paragraphs item is in use there
   * and the collection is not marked as archived.
   */
  public function isInUse() {
    return $this->default_revision && !$this->archived;
  }

  /**
   * Save the paragraphs item.
   *
   * By default, always save the host entity, so modules are able to react
   * upon changes to the content of the host and any 'last updated' dates of
   * entities get updated.
   *
   * For creating an item a host entity has to be specified via setHostEntity()
   * before this function is invoked. For the link between the entities to be
   * fully established, the host entity object has to be updated to include a
   * reference on this paragraphs item during saving. So do not skip
   * saving the host for creating items.
   *
   * @param bool $skip_host_save
   *   (internal) If TRUE is passed, the host entity is not saved automatically
   *   and therefore no link is created between the host and the item or
   *   revision updates might be skipped. Use with care.
   *
   * @return DrupalEntityControllerInterface
   *   The entity controller object for the specified entity type
   *
   * @throws Exception
   *   In case a valid reference is not their for host entity.
   */
  public function save($skip_host_save = FALSE) {

    // Only save directly if we are told to skip saving the host entity. Else,
    // we always save via the host as saving the host might trigger saving
    // paragraphs items anyway (for example, if a new revision is created).
    if ($skip_host_save) {
      return entity_get_controller($this->entityType)
        ->save($this);
    }
    else {
      $host_entity = $this
        ->hostEntity();
      if (!$host_entity) {
        throw new Exception("Unable to save a paragraph without a valid reference to a host entity.");
      }

      // If this is creating a new revision, also do so for the host entity.
      if (!empty($this->revision) || !empty($this->is_new_revision)) {
        $host_entity->revision = TRUE;
        if (!empty($this->default_revision)) {
          entity_revision_set_default($this->hostEntityType, $host_entity);
        }
      }

      // Set the host entity reference, so the item will be saved with the host.
      // @see paragraphs_field_presave()
      $delta = $this
        ->delta();
      if (isset($delta)) {
        $host_entity->{$this->field_name}[$this->langcode][$delta] = array(
          'entity' => $this,
        );
      }
      else {
        $host_entity->{$this->field_name}[$this->langcode][] = array(
          'entity' => $this,
        );
      }
      return entity_save($this->hostEntityType, $host_entity);
    }
  }

  /**
   * Deletes the host entity's reference of the paragraphs item.
   */
  protected function deleteHostEntityReference() {
    $delta = $this
      ->delta();
    if ($this->item_id && isset($delta)) {
      unset($this->hostEntity->{$this->field_name}[$this->langcode][$delta]);
      entity_save($this->hostEntityType, $this->hostEntity);
    }
  }

  /**
   * Intelligently delete a paragraphs item revision.
   *
   * If a host entity is revisioned with its paragraphs items, deleting
   * a paragraphs item on the default revision of the host should not
   * delete the collection item from archived revisions too. Instead, we delete
   * the current default revision and archive the paragraph.
   */
  public function deleteRevision($skip_host_update = FALSE) {
    if (!$this->revision_id) {
      return;
    }
    if (!$skip_host_update) {

      // Just remove the item from the host, which cares about deleting the
      // item (depending on whether the update creates a new revision).
      $this
        ->deleteHostEntityReference();
    }
    if (!$this
      ->isDefaultRevision()) {
      entity_revision_delete('paragraphs_item', $this->revision_id);
    }
    else {
      $row = db_select('paragraphs_item_revision', 'r')
        ->fields('r')
        ->condition('item_id', $this->item_id)
        ->condition('revision_id', $this->revision_id, '<>')
        ->execute()
        ->fetchAssoc();

      // If no other revision is left, delete. Else archive the item.
      if (!$row) {
        $this
          ->delete();
      }
      else {

        // Make the other revision the default revision and archive the item.
        db_update('paragraphs_item')
          ->fields(array(
          'archived' => 1,
          'revision_id' => $row['revision_id'],
        ))
          ->condition('item_id', $this->item_id)
          ->execute();
        entity_get_controller('paragraphs_item')
          ->resetCache(array(
          $this->item_id,
        ));
        entity_revision_delete('paragraphs_item', $this->revision_id);
      }
    }
  }

  /**
   * Export the paragraphs item.
   *
   * Since paragraphs entities are not directly exportable (that is, do not
   * have 'exportable' set to TRUE in hook_entity_info()) and since Features
   * calls this method when exporting the paragraphs as a field attached
   * to another entity, we return the export in the format expected by
   * Features, rather than in the normal Entity::export() format.
   */
  public function export($prefix = '') {

    // Based on code in EntityDefaultFeaturesController::export_render().
    $export = "entity_import('" . $this
      ->entityType() . "', '";
    $export .= addcslashes(parent::export(), '\\\'');
    $export .= "')";
    return $export;
  }

  /**
   * Ensure file fields on the entity have their URIs loaded for previews.
   *
   * Copied from #1447338-7, thanks!
   */
  public function view($view_mode = 'full', $langcode = NULL, $page = NULL) {
    if ($langcode == NULL) {
      $langcode = LANGUAGE_NONE;
    }

    // Iterate over fields in the collection to add URIs for image fields.
    $field_instances = field_info_instances($this->entityType, $this->bundle);
    foreach ($field_instances as $field_name => $field) {
      $info = field_info_field($field_name);
      if (is_array($info) && $info['type'] == 'image' && ($image_field =& $this->{$field_name})) {

        // Add the URI to the field on the entity for display.
        if (isset($image_field[$langcode])) {
          foreach ($image_field[$langcode] as &$field_to_be_updated) {
            if (!isset($field_to_be_updated['uri']) && isset($field_to_be_updated['fid'])) {
              $image = file_load($field_to_be_updated['fid']);
              if ($image) {
                $field_to_be_updated['uri'] = $image->uri;
              }
            }
          }
        }
      }
    }
    return entity_get_controller($this->entityType)
      ->view(array(
      $this,
    ), $view_mode, $langcode, $page);
  }

  /**
   * Magic method to only serialize what's necessary.
   */
  public function __sleep() {
    $vars = get_object_vars($this);
    unset($vars['entityInfo'], $vars['idKey'], $vars['nameKey'], $vars['statusKey']);
    unset($vars['fieldInfo']);

    // Also do not serialize the host entity.
    // We add our hostEntity in code.
    unset($vars['hostEntity']);

    // We unset our host entity, we have to let our object know.
    unset($vars['fetchedHostEntityDetails']);

    // Also key the returned array with the variable names so the method may
    // be easily overridden and customized.
    return drupal_map_assoc(array_keys($vars));
  }

  /**
   * Magic method to invoke setUp() on unserialization.
   *
   * @todo: Remove this once it appears in a released entity API module version.
   */
  public function __wakeup() {
    $this
      ->setUp();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Entity::$defaultLabel protected property 1
Entity::$entityInfo protected property
Entity::$entityType protected property
Entity::$idKey protected property
Entity::$wrapper protected property
Entity::buildContent public function Builds a structured array representing the entity's content. Overrides EntityInterface::buildContent 1
Entity::bundle public function Returns the bundle of the entity. Overrides EntityInterface::bundle
Entity::delete public function Permanently deletes the entity. Overrides EntityInterface::delete
Entity::entityInfo public function Returns the info of the type of the entity. Overrides EntityInterface::entityInfo
Entity::entityType public function Returns the type of the entity. Overrides EntityInterface::entityType
Entity::getTranslation public function Gets the raw, translated value of a property or field. Overrides EntityInterface::getTranslation
Entity::hasStatus public function Checks if the entity has a certain exportable status. Overrides EntityInterface::hasStatus
Entity::identifier public function Returns the entity identifier, i.e. the entities name or numeric id. Overrides EntityInterface::identifier
Entity::internalIdentifier public function Returns the internal, numeric identifier. Overrides EntityInterface::internalIdentifier
Entity::isDefaultRevision public function Checks whether the entity is the default revision. Overrides EntityInterface::isDefaultRevision
Entity::label public function Returns the label of the entity. Overrides EntityInterface::label
Entity::setUp protected function Set up the object instance on construction or unserializiation.
Entity::uri public function Returns the uri of the entity just as entity_uri(). Overrides EntityInterface::uri
Entity::wrapper public function Returns the EntityMetadataWrapper of the entity. Overrides EntityInterface::wrapper
ParagraphsItemEntity::$archived public property Whether the paragraphs item is archived, i.e. not in use.
ParagraphsItemEntity::$default_revision public property Whether this revision is the default revision.
ParagraphsItemEntity::$fetchedHostEntityDetails private property The name of the paragraphs field this item is associated with.
ParagraphsItemEntity::$fieldInfo protected property Paragraphs field info.
ParagraphsItemEntity::$field_name public property The name of the paragraphs field this item is associated with.
ParagraphsItemEntity::$hostEntity protected property The host entity object.
ParagraphsItemEntity::$hostEntityBundle protected property The host entity bundle.
ParagraphsItemEntity::$hostEntityId protected property The host entity ID.
ParagraphsItemEntity::$hostEntityRevisionId protected property The host entity revision ID if this is not the default revision.
ParagraphsItemEntity::$hostEntityType protected property The host entity type.
ParagraphsItemEntity::$item_id public property Entity ID.
ParagraphsItemEntity::$langcode public property The language under which the paragraphs item is stored.
ParagraphsItemEntity::$revision_id public property Paragraphs revision ID.
ParagraphsItemEntity::defaultLabel public function Specifies the default label, which is picked up by label() by default. Overrides Entity::defaultLabel
ParagraphsItemEntity::defaultUri public function Returns the URI as returned by entity_uri(). Overrides Entity::defaultUri
ParagraphsItemEntity::deleteHostEntityReference protected function Deletes the host entity's reference of the paragraphs item.
ParagraphsItemEntity::deleteRevision public function Intelligently delete a paragraphs item revision.
ParagraphsItemEntity::delta public function Determines the $delta of the reference pointing to this paragraph item.
ParagraphsItemEntity::export public function Export the paragraphs item. Overrides Entity::export
ParagraphsItemEntity::fetchHostDetails protected function Fetches details of the host and saves it in the entity.
ParagraphsItemEntity::fieldInfo public function Provides info about the host entity field embedding this paragraphs item.
ParagraphsItemEntity::forceHostEntity public function Function to force change the host entity of this paragraphs item.
ParagraphsItemEntity::forceHostEntityType public function Function to force change the host entity type of this paragraphs item.
ParagraphsItemEntity::hostEntity public function Returns the host entity embedding this paragraphs item.
ParagraphsItemEntity::hostEntityBundle public function Returns the bundle of the host entity embedding this paragraphs item.
ParagraphsItemEntity::hostEntityId public function Returns the id of the host entity embedding this paragraphs item.
ParagraphsItemEntity::hostEntityRevisionId public function Returns the revisions id of the host entity embedding this paragraphs item.
ParagraphsItemEntity::hostEntityType public function Returns the entity type of the host entity embedding this paragraphs item.
ParagraphsItemEntity::instanceInfo public function Provides info about the field instance referencing this paragraphs item.
ParagraphsItemEntity::isInUse public function Determines whether this paragraphs item revision is in use.
ParagraphsItemEntity::langcode public function Determines the language code under which the item is stored.
ParagraphsItemEntity::path public function Returns the path used to view the entity.
ParagraphsItemEntity::save public function Save the paragraphs item. Overrides Entity::save
ParagraphsItemEntity::setHostEntity public function Sets the host entity. Only possible during creation of a item.
ParagraphsItemEntity::translatedInstanceLabel public function Returns the field instance label translated to interface language.
ParagraphsItemEntity::view public function Ensure file fields on the entity have their URIs loaded for previews. Overrides Entity::view
ParagraphsItemEntity::__construct public function Constructs the entity object. Overrides Entity::__construct
ParagraphsItemEntity::__sleep public function Magic method to only serialize what's necessary. Overrides Entity::__sleep
ParagraphsItemEntity::__wakeup public function Magic method to invoke setUp() on unserialization. Overrides Entity::__wakeup