function QueryPluginBase::getDateFormat
Same name in other branches
- 9 core/modules/views/src/Plugin/views/query/QueryPluginBase.php \Drupal\views\Plugin\views\query\QueryPluginBase::getDateFormat()
- 8.9.x core/modules/views/src/Plugin/views/query/QueryPluginBase.php \Drupal\views\Plugin\views\query\QueryPluginBase::getDateFormat()
- 10 core/modules/views/src/Plugin/views/query/QueryPluginBase.php \Drupal\views\Plugin\views\query\QueryPluginBase::getDateFormat()
Creates cross-database date formatting.
Parameters
string $field: An appropriate query expression pointing to the date field.
string $format: A format string for the result, like 'Y-m-d H:i:s'.
bool $string_date: For certain databases, date format functions vary depending on string or numeric storage.
Return value
string A string representing the field formatted as a date in the format specified by $format.
1 method overrides QueryPluginBase::getDateFormat()
- Sql::getDateFormat in core/
modules/ views/ src/ Plugin/ views/ query/ Sql.php - Creates cross-database date formatting.
File
-
core/
modules/ views/ src/ Plugin/ views/ query/ QueryPluginBase.php, line 258
Class
- QueryPluginBase
- Base plugin class for Views queries.
Namespace
Drupal\views\Plugin\views\queryCode
public function getDateFormat($field, $format, $string_date = FALSE) {
return $field;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.