private static function getWorkdays()
 {
     // get starting date, and return list of workdays for the selected period
     $starting_date_int = mktime(0, 0, 0, self::$filter_ar['month'], 1, self::$filter_ar['year']);
     return TS_Format_Dates::getWeekdays($starting_date_int);
 }