getQuarter() private static method

private static getQuarter ( $offset )
Example #1
0
 private static function getDatePart($part, $offset)
 {
     $offset = intval($offset);
     if ($part == 'MONTH') {
         return Utils::getMonth($offset);
     } elseif ($part == 'QUARTER') {
         return Utils::getQuarter($offset);
     } elseif ($part == 'YEAR') {
         return Utils::getYear($offset);
     }
 }