You are here

public function ParagraphSet::getCreatedTime in Paragraphs frontend ui 8

Gets the Paragraph set creation timestamp.

Return value

int Creation timestamp of the Paragraph set.

Overrides ParagraphSetInterface::getCreatedTime

File

src/Entity/ParagraphSet.php, line 91

Class

ParagraphSet
Defines the Paragraph set entity.

Namespace

Drupal\paragraphs_frontend_ui\Entity

Code

public function getCreatedTime() {
  return $this
    ->get('created')->value;
}