protected function DemoGroup::createDate in Open Social 8.5
Same name and namespace in other branches
- 8.9 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::createDate()
- 8 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::createDate()
- 8.2 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::createDate()
- 8.3 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::createDate()
- 8.4 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::createDate()
- 8.6 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::createDate()
- 8.7 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::createDate()
- 8.8 modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::createDate()
- 10.3.x modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::createDate()
- 10.0.x modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::createDate()
- 10.1.x modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::createDate()
- 10.2.x modules/custom/social_demo/src/DemoGroup.php \Drupal\social_demo\DemoGroup::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 DemoGroup::createDate()
- DemoGroup::createContent in modules/
custom/ social_demo/ src/ DemoGroup.php - Creates content.
File
- modules/
custom/ social_demo/ src/ DemoGroup.php, line 165
Class
- DemoGroup
- Class DemoGroup.
Namespace
Drupal\social_demoCode
protected function createDate($date_string) {
// Split from delimiter.
$timestamp = explode('|', $date_string);
$date = strtotime($timestamp[0]);
$date = date('Y-m-d', $date) . 'T' . $timestamp[1] . ':00';
return strtotime($date);
}