function _views_xml_debug_stop in Views Datasource 6
Same name and namespace in other branches
- 7 views_xml.module \_views_xml_debug_stop()
may never be used as the properly rendered date strings are available function views_xml_is_date($input) { if (strpos($input, 'a:3:{s:5:"month"') !== 0) { return $input; } else { // serialized date array $date = unserialize($input); return format_date(mktime(0, 0, 0, $date['month'], $date['day'], $date['year']), 'custom', DATE_ISO8601); } }
File
- ./
views_xml.module, line 259 - Module definition for views_xml
Code
function _views_xml_debug_stop($var) {
var_dump($var);
module_Invoke_all('exit');
exit;
}