interface ParagraphInterface

Provides an interface defining a paragraphs entity.

Hierarchy

  • interface \Drupal\paragraphs\ParagraphInterface extends \Drupal\Core\Entity\ContentEntityInterface \Drupal\user\EntityOwnerInterface \Drupal\entity_reference_revisions\EntityNeedsSaveInterface \Drupal\Core\Entity\EntityPublishedInterface

Expanded class hierarchy of ParagraphInterface

All classes that implement ParagraphInterface

24 files declare their use of ParagraphInterface
InlineParagraphsWidget.php in paragraphs/src/Plugin/Field/FieldWidget/InlineParagraphsWidget.php
LibraryItem.php in paragraphs/modules/paragraphs_library/src/Entity/LibraryItem.php
LibraryItemInterface.php in paragraphs/modules/paragraphs_library/src/LibraryItemInterface.php
Paragraph.php in paragraphs/src/Entity/Paragraph.php
paragraphs.api.php in paragraphs/paragraphs.api.php
Hooks and documentation related to paragraphs module.

... See full list

File

paragraphs/src/ParagraphInterface.php, line 14

Namespace

Drupal\paragraphs
View source
interface ParagraphInterface extends ContentEntityInterface, EntityOwnerInterface, EntityNeedsSaveInterface, EntityPublishedInterface {

  /**
   * Gets the parent entity of the paragraph.
   *
   * Preserves language context with translated entities.
   *
   * @return \Drupal\Core\Entity\ContentEntityInterface|null
   *   The parent entity.
   */
  public function getParentEntity();

  /**
   * Set the parent entity of the paragraph.
   *
   * @param \Drupal\Core\Entity\ContentEntityInterface $parent
   *   The parent entity.
   * @param string $parent_field_name
   *   The parent field name.
   *
   * @return $this
   */
  public function setParentEntity(ContentEntityInterface $parent, $parent_field_name);

  /**
   * Returns a short summary for the Paragraph.
   *
   * @param array $options
   *   (optional) Array of additional options, with the following elements:
   *   - 'show_behavior_summary': Whether the summary should contain the
   *     behavior settings. Defaults to TRUE to show behavior settings in the
   *     summary.
   *   - 'depth_limit': Depth limit of how many nested paragraph summaries are
   *     allowed. Defaults to 1 to show nested paragraphs only on top level.
   *
   * @return string
   *   The template based summary.
   */
  public function getSummary(array $options = []);

  /**
   * Returns the summary items of the Paragraph.
   *
   * @param array $options
   *   (optional) Array of additional options, with the following elements:
   *   - 'show_behavior_summary': Whether the summary should contain the
   *     behavior settings. Defaults to TRUE to show behavior settings in the
   *     summary.
   *   - 'depth_limit': Depth limit of how many nested paragraph summaries are
   *     allowed. Defaults to 1 to show nested paragraphs only on top level.
   *
   * @return array
   *   A list of summary items, grouped into the keys 'content' and 'behaviors'.
   */
  public function getSummaryItems(array $options = []);

  /**
   * Returns info icons render array for a paragraph.
   *
   * @param array $options
   *   (optional) Array of additional options, with the following elements:
   *   - 'show_behavior_icon': Whether the icons should contain the
   *     behavior settings. Defaults to TRUE to show behavior icons in the
   *     summary.
   *
   * @return array
   *   A list of render arrays that will be rendered as icons.
   */
  public function getIcons(array $options = []);

  /**
   * Returns a flag whether a current revision has been changed.
   *
   * The current instance is being compared with the latest saved revision.
   *
   * @return bool
   *   TRUE in case the current revision changed. Otherwise, FALSE.
   *
   * @see \Drupal\Core\Entity\ContentEntityBase::hasTranslationChanges()
   */
  public function isChanged();

  /**
   * Returns the paragraph type / bundle name as string.
   *
   * @return string
   *   The Paragraph bundle name.
   */
  public function getType();

  /**
   * Returns the paragraph type.
   *
   * @return ParagraphsTypeInterface
   *   The Paragraph Type.
   */
  public function getParagraphType();

  /**
   * Gets all the behavior settings.
   *
   * @return array
   *   The array of behavior settings.
   */
  public function getAllBehaviorSettings();

  /**
   * Gets the behavior setting of an specific plugin.
   *
   * @param string $plugin_id
   *   The plugin ID for which to get the settings.
   * @param string|array $key
   *   Values are stored as a multi-dimensional associative array. If $key is a
   *   string, it will return $values[$key]. If $key is an array, each element
   *   of the array will be used as a nested key. If $key = array('foo', 'bar')
   *   it will return $values['foo']['bar'].
   * @param mixed $default
   *   (optional) The default value if the specified key does not exist.
   *
   * @return mixed
   *   The value for the given key.
   */
  public function &getBehaviorSetting($plugin_id, $key, $default = NULL);

  /**
   * Sets all the behavior settings of a plugin.
   *
   * @param array $settings
   *   The behavior settings from the form.
   */
  public function setAllBehaviorSettings(array $settings);

  /**
   * Sets the behavior settings of a plugin.
   *
   * @param string $plugin_id
   *   The plugin ID for which to set the settings.
   * @param array $settings
   *   The behavior settings from the form.
   */
  public function setBehaviorSettings($plugin_id, array $settings);

}

Members

Namesort ascending Modifiers Type Description Overrides
ParagraphInterface::setParentEntity public function Set the parent entity of the paragraph. 1
ParagraphInterface::setBehaviorSettings public function Sets the behavior settings of a plugin. 1
ParagraphInterface::setAllBehaviorSettings public function Sets all the behavior settings of a plugin. 1
ParagraphInterface::isChanged public function Returns a flag whether a current revision has been changed. 1
ParagraphInterface::getType public function Returns the paragraph type / bundle name as string. 1
ParagraphInterface::getSummaryItems public function Returns the summary items of the Paragraph. 1
ParagraphInterface::getSummary public function Returns a short summary for the Paragraph. 1
ParagraphInterface::getParentEntity public function Gets the parent entity of the paragraph. 1
ParagraphInterface::getParagraphType public function Returns the paragraph type. 1
ParagraphInterface::getIcons public function Returns info icons render array for a paragraph. 1
ParagraphInterface::getBehaviorSetting public function Gets the behavior setting of an specific plugin. 1
ParagraphInterface::getAllBehaviorSettings public function Gets all the behavior settings. 1