protected function DemoComment::createDate in Open Social 8.9
Same name and namespace in other branches
- 8 modules/custom/social_demo/src/DemoComment.php \Drupal\social_demo\DemoComment::createDate()
- 8.2 modules/custom/social_demo/src/DemoComment.php \Drupal\social_demo\DemoComment::createDate()
- 8.3 modules/custom/social_demo/src/DemoComment.php \Drupal\social_demo\DemoComment::createDate()
- 8.4 modules/custom/social_demo/src/DemoComment.php \Drupal\social_demo\DemoComment::createDate()
- 8.5 modules/custom/social_demo/src/DemoComment.php \Drupal\social_demo\DemoComment::createDate()
- 8.6 modules/custom/social_demo/src/DemoComment.php \Drupal\social_demo\DemoComment::createDate()
- 8.7 modules/custom/social_demo/src/DemoComment.php \Drupal\social_demo\DemoComment::createDate()
- 8.8 modules/custom/social_demo/src/DemoComment.php \Drupal\social_demo\DemoComment::createDate()
- 10.3.x modules/custom/social_demo/src/DemoComment.php \Drupal\social_demo\DemoComment::createDate()
- 10.0.x modules/custom/social_demo/src/DemoComment.php \Drupal\social_demo\DemoComment::createDate()
- 10.1.x modules/custom/social_demo/src/DemoComment.php \Drupal\social_demo\DemoComment::createDate()
- 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_demoCode
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);
}