You are here

public function Mentions::getCreatedTime in Open Social 10.2.x

Same name and namespace in other branches
  1. 8.9 modules/custom/mentions/src/Entity/Mentions.php \Drupal\mentions\Entity\Mentions::getCreatedTime()
  2. 8 modules/custom/mentions/src/Entity/Mentions.php \Drupal\mentions\Entity\Mentions::getCreatedTime()
  3. 8.2 modules/custom/mentions/src/Entity/Mentions.php \Drupal\mentions\Entity\Mentions::getCreatedTime()
  4. 8.3 modules/custom/mentions/src/Entity/Mentions.php \Drupal\mentions\Entity\Mentions::getCreatedTime()
  5. 8.4 modules/custom/mentions/src/Entity/Mentions.php \Drupal\mentions\Entity\Mentions::getCreatedTime()
  6. 8.5 modules/custom/mentions/src/Entity/Mentions.php \Drupal\mentions\Entity\Mentions::getCreatedTime()
  7. 8.6 modules/custom/mentions/src/Entity/Mentions.php \Drupal\mentions\Entity\Mentions::getCreatedTime()
  8. 8.7 modules/custom/mentions/src/Entity/Mentions.php \Drupal\mentions\Entity\Mentions::getCreatedTime()
  9. 8.8 modules/custom/mentions/src/Entity/Mentions.php \Drupal\mentions\Entity\Mentions::getCreatedTime()
  10. 10.3.x modules/custom/mentions/src/Entity/Mentions.php \Drupal\mentions\Entity\Mentions::getCreatedTime()
  11. 10.0.x modules/custom/mentions/src/Entity/Mentions.php \Drupal\mentions\Entity\Mentions::getCreatedTime()
  12. 10.1.x modules/custom/mentions/src/Entity/Mentions.php \Drupal\mentions\Entity\Mentions::getCreatedTime()

Gets the Mentions creation timestamp.

Return value

int Creation timestamp of the Mentions.

Overrides MentionsInterface::getCreatedTime

File

modules/custom/mentions/src/Entity/Mentions.php, line 91

Class

Mentions
Mentions Class.

Namespace

Drupal\mentions\Entity

Code

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