You are here

protected function DemoComment::createDate in Open Social 10.3.x

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

Converts a date in the correct format.

Parameters

string $date_string: The date.

Return value

int|false Returns a timestamp on success, false otherwise.

1 call to DemoComment::createDate()
DemoComment::createContent in modules/custom/social_demo/src/DemoComment.php
Creates content.

File

modules/custom/social_demo/src/DemoComment.php, line 140

Class

DemoComment
Class DemoComment.

Namespace

Drupal\social_demo

Code

protected function createDate($date_string) {
  if ($date_string === 'now') {
    return time();
  }

  // Split from delimiter.
  $timestamp = explode('|', $date_string);
  $date = strtotime($timestamp[0]);
  $date = date('Y-m-d', $date) . 'T' . $timestamp[1] . ':00';
  return strtotime($date);
}