File "date.php"
Full Path: /home/jlklyejr/public_html/wp-content/test/wp-content/plugins/woo-currency/classes/date.php
File size: 165 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
class dateWcu {
static public function _($time = NULL) {
if(is_null($time)) {
$time = time();
}
return date(WCU_DATE_FORMAT_HIS, $time);
}
}