LLMS_Analytics_Widget::format_date( $date, $type )
Contents
Source Source
File: includes/abstracts/abstract.llms.analytics.widget.php
protected function format_date( $date, $type ) { switch ( $type ) { case 'start': $date .= ' 00:00:00'; break; case 'end': $date .= ' 23:23:59'; break; } return $date; }
Expand full source code Collapse full source code View on GitHub