/home/altere25/usaigc.com/wp-content/plugins/wpdatatables/source
Edit: /home/altere25/usaigc.com/wp-content/plugins/wpdatatables/source/class.time.wpdatacolumn.php (1639B)
_dataType = 'time';
}
/**
* @param $content
* @return false|mixed|string
*/
public function prepareCellOutput($content) {
$content = apply_filters('wpdatatables_filter_time_cell_before_formatting', $content, $this->getParentTable()->getWpId());
if (!is_array($content)) {
if (!empty($content) && ($content != '0000-00-00')) {
$timestamp = is_numeric($content) ? $content : strtotime(str_replace('/', '-', $content));
$formattedValue = date(get_option('wdtTimeFormat'), $timestamp);
} else {
$formattedValue = '';
}
} else {
if (!is_null($content['value'])){
$content['value'] = str_replace('/', '-', $content['value']);
$formattedValue = date(get_option('wdtTimeFormat'), strtotime($content['value']));
} else {
$formattedValue = '';
}
}
return apply_filters('wpdatatables_filter_time_cell', $formattedValue, $this->getParentTable()->getWpId());
}
}