load->language('reports'); $today = date('Y-m-d'); $yesterday = date('Y-m-d', mktime(0,0,0,date("m"),date("d")-1,date("Y"))); $six_days_ago = date('Y-m-d', mktime(0,0,0,date("m"),date("d")-6,date("Y"))); $start_of_this_month = date('Y-m-d', mktime(0,0,0,date("m"),1,date("Y"))); $end_of_this_month = date('Y-m-d',strtotime('-1 second',strtotime('+1 month',strtotime(date('m').'/01/'.date('Y').' 00:00:00')))); $start_of_last_month = date('Y-m-d', mktime(0,0,0,date("m")-1,1,date("Y"))); $end_of_last_month = date('Y-m-d',strtotime('-1 second',strtotime('+1 month',strtotime((date('m') - 1).'/01/'.date('Y').' 00:00:00')))); $start_of_this_year = date('Y-m-d', mktime(0,0,0,1,1,date("Y"))); $end_of_this_year = date('Y-m-d', mktime(0,0,0,12,31,date("Y"))); $start_of_last_year = date('Y-m-d', mktime(0,0,0,1,1,date("Y")-1)); $end_of_last_year = date('Y-m-d', mktime(0,0,0,12,31,date("Y")-1)); $start_of_time = date('Y-m-d', 0); return array( $today. '/' . $today => $CI->lang->line('reports_today'), $yesterday. '/' . $yesterday => $CI->lang->line('reports_yesterday'), $six_days_ago. '/' . $today => $CI->lang->line('reports_last_7'), $start_of_this_month . '/' . $end_of_this_month => $CI->lang->line('reports_this_month'), $start_of_last_month . '/' . $end_of_last_month => $CI->lang->line('reports_last_month'), $start_of_this_year . '/' . $end_of_this_year => $CI->lang->line('reports_this_year'), $start_of_last_year . '/' . $end_of_last_year => $CI->lang->line('reports_last_year'), $start_of_time . '/' . $today => $CI->lang->line('reports_all_time'), ); } function get_months() { $months = array(); for($k=1;$k<=12;$k++) { $cur_month = mktime(0, 0, 0, $k, 1, 2000); $months[date("m", $cur_month)] = date("M",$cur_month); } return $months; } function get_days() { $days = array(); for($k=1;$k<=31;$k++) { $cur_day = mktime(0, 0, 0, 1, $k, 2000); $days[date('d',$cur_day)] = date('j',$cur_day); } return $days; } function get_years() { $years = array(); for($k=0;$k<10;$k++) { $years[date("Y")-$k] = date("Y")-$k; } return $years; } function get_random_colors($how_many) { $colors = array(); for($k=0;$k<$how_many;$k++) { $colors[] = '#'.random_color(); } return $colors; } function random_color() { mt_srand((double)microtime()*1000000); $c = ''; while(strlen($c)<6){ $c .= sprintf("%02X", mt_rand(0, 255)); } return $c; } function show_report_if_allowed($allowed_modules, $report_prefix, $report_name, $permission='') { $CI =& get_instance(); $lang_line = 'reports_' .$report_name; $report_label = $CI->lang->line($lang_line); $permission = empty($permission) ? $report_name : $permission; $report_prefix = empty($report_prefix) ? '' : $report_prefix . '_'; // no summary nor detailed reports for receivings if (!empty($report_label) && !(preg_match('/.*summary_?$/', $report_prefix) && $report_name === "receivings")) { foreach($allowed_modules->result() as $module) { if ($module->module_id == 'reports_'. $permission) { ?>