Date.php 250 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 <?php namespace ACP\Search\Helper\MetaQuery; use ACP\Search\Value; abstract class Date extends Comparison { protected function get_date_format_from_type( $type ) { if ( $type === Value::INT ) { return 'U'; } return 'Y-m-d H:i:s'; } }