protected function SmartDateFormat::getAllKeys in Smart Date 8.2
Same name and namespace in other branches
- 8 src/Entity/SmartDateFormat.php \Drupal\smart_date\Entity\SmartDateFormat::getAllKeys()
- 3.x src/Entity/SmartDateFormat.php \Drupal\smart_date\Entity\SmartDateFormat::getAllKeys()
- 3.0.x src/Entity/SmartDateFormat.php \Drupal\smart_date\Entity\SmartDateFormat::getAllKeys()
- 3.1.x src/Entity/SmartDateFormat.php \Drupal\smart_date\Entity\SmartDateFormat::getAllKeys()
- 3.2.x src/Entity/SmartDateFormat.php \Drupal\smart_date\Entity\SmartDateFormat::getAllKeys()
- 3.3.x src/Entity/SmartDateFormat.php \Drupal\smart_date\Entity\SmartDateFormat::getAllKeys()
- 3.4.x src/Entity/SmartDateFormat.php \Drupal\smart_date\Entity\SmartDateFormat::getAllKeys()
Return an array of the keys used by Smart Date Formats.
2 calls to SmartDateFormat::getAllKeys()
- SmartDateFormat::getOptions in src/
Entity/ SmartDateFormat.php - Gets the array of options for this format.
- SmartDateFormat::setOptions in src/
Entity/ SmartDateFormat.php - Sets the array of options for this format.
File
- src/
Entity/ SmartDateFormat.php, line 275
Class
- SmartDateFormat
- Defines the Smart date format entity.
Namespace
Drupal\smart_date\EntityCode
protected function getAllKeys() {
return [
'date_format',
'time_format',
'time_hour_format',
'allday_label',
'separator',
'join',
'ampm_reduce',
'date_first',
];
}