Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 1 | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 6 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 7 | * NOTICE OF LICENSE |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Open Software License version 3.0 |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 10 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 11 | * This source file is subject to the Open Software License (OSL 3.0) that is |
| 12 | * bundled with this package in the files license.txt / license.rst. It is |
| 13 | * also available through the world wide web at this URL: |
| 14 | * http://opensource.org/licenses/OSL-3.0 |
| 15 | * If you did not receive a copy of the license and are unable to obtain it |
| 16 | * through the world wide web, please send an email to |
| 17 | * licensing@ellislab.com so we can send you a copy immediately. |
| 18 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 19 | * @package CodeIgniter |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 20 | * @author EllisLab Dev Team |
Greg Aker | 0defe5d | 2012-01-01 18:46:41 -0600 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 23 | * @link http://codeigniter.com |
| 24 | * @since Version 1.0 |
| 25 | * @filesource |
| 26 | */ |
| 27 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 28 | /** |
| 29 | * CodeIgniter Calendar Class |
| 30 | * |
| 31 | * This class enables the creation of calendars |
| 32 | * |
| 33 | * @package CodeIgniter |
| 34 | * @subpackage Libraries |
| 35 | * @category Libraries |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 36 | * @author EllisLab Dev Team |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 37 | * @link http://codeigniter.com/user_guide/libraries/calendar.html |
| 38 | */ |
| 39 | class CI_Calendar { |
| 40 | |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 41 | protected $CI; |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 42 | public $lang; |
| 43 | public $local_time; |
| 44 | public $template = ''; |
| 45 | public $start_day = 'sunday'; |
| 46 | public $month_type = 'long'; |
| 47 | public $day_type = 'abr'; |
| 48 | public $show_next_prev = FALSE; |
| 49 | public $next_prev_url = ''; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 50 | |
| 51 | /** |
| 52 | * Constructor |
| 53 | * |
| 54 | * Loads the calendar language file and sets the default time reference |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 55 | * |
| 56 | * @param array |
| 57 | * @return void |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 58 | */ |
Greg Aker | a926328 | 2010-11-10 15:26:43 -0600 | [diff] [blame] | 59 | public function __construct($config = array()) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 60 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 61 | $this->CI =& get_instance(); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 62 | |
Greg Aker | 3a74665 | 2011-04-19 10:59:47 -0500 | [diff] [blame] | 63 | if ( ! in_array('calendar_lang.php', $this->CI->lang->is_loaded, TRUE)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 64 | { |
| 65 | $this->CI->lang->load('calendar'); |
| 66 | } |
| 67 | |
| 68 | $this->local_time = time(); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 69 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 70 | if (count($config) > 0) |
| 71 | { |
| 72 | $this->initialize($config); |
| 73 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 74 | |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 75 | log_message('debug', 'Calendar Class Initialized'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 76 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 77 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 78 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 79 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 80 | /** |
| 81 | * Initialize the user preferences |
| 82 | * |
| 83 | * Accepts an associative array as input, containing display preferences |
| 84 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 85 | * @param array config preferences |
| 86 | * @return void |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 87 | */ |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 88 | public function initialize($config = array()) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 89 | { |
| 90 | foreach ($config as $key => $val) |
| 91 | { |
| 92 | if (isset($this->$key)) |
| 93 | { |
| 94 | $this->$key = $val; |
| 95 | } |
| 96 | } |
| 97 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 98 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 99 | // -------------------------------------------------------------------- |
| 100 | |
| 101 | /** |
| 102 | * Generate the calendar |
| 103 | * |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 104 | * @param int the year |
| 105 | * @param int the month |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 106 | * @param array the data to be shown in the calendar cells |
| 107 | * @return string |
| 108 | */ |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 109 | public function generate($year = '', $month = '', $data = array()) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 110 | { |
| 111 | // Set and validate the supplied month/year |
| 112 | if ($year == '') |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 113 | { |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 114 | $year = date('Y', $this->local_time); |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 115 | } |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 116 | elseif (strlen($year) === 1) |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 117 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 118 | $year = '200'.$year; |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 119 | } |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 120 | elseif (strlen($year) === 2) |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 121 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 122 | $year = '20'.$year; |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 123 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 124 | |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 125 | if ($month == '') |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 126 | { |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 127 | $month = date('m', $this->local_time); |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 128 | } |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 129 | elseif (strlen($month) === 1) |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 130 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 131 | $month = '0'.$month; |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 132 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 133 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 134 | $adjusted_date = $this->adjust_date($month, $year); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 135 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 136 | $month = $adjusted_date['month']; |
| 137 | $year = $adjusted_date['year']; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 138 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 139 | // Determine the total days in the month |
| 140 | $total_days = $this->get_total_days($month, $year); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 141 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 142 | // Set the starting day of the week |
| 143 | $start_days = array('sunday' => 0, 'monday' => 1, 'tuesday' => 2, 'wednesday' => 3, 'thursday' => 4, 'friday' => 5, 'saturday' => 6); |
| 144 | $start_day = ( ! isset($start_days[$this->start_day])) ? 0 : $start_days[$this->start_day]; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 145 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 146 | // Set the starting day number |
| 147 | $local_date = mktime(12, 0, 0, $month, 1, $year); |
| 148 | $date = getdate($local_date); |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 149 | $day = $start_day + 1 - $date['wday']; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 150 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 151 | while ($day > 1) |
| 152 | { |
| 153 | $day -= 7; |
| 154 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 155 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 156 | // Set the current month/year/day |
| 157 | // We use this to determine the "today" date |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 158 | $cur_year = date('Y', $this->local_time); |
| 159 | $cur_month = date('m', $this->local_time); |
| 160 | $cur_day = date('j', $this->local_time); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 161 | |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 162 | $is_current_month = ($cur_year == $year && $cur_month == $month); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 163 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 164 | // Generate the template data array |
| 165 | $this->parse_template(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 166 | |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 167 | // Begin building the calendar output |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 168 | $out = $this->temp['table_open']."\n\n".$this->temp['heading_row_start']."\n"; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 169 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 170 | // "previous" month link |
| 171 | if ($this->show_next_prev == TRUE) |
| 172 | { |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 173 | // Add a trailing slash to the URL if needed |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 174 | $this->next_prev_url = preg_replace('/(.+?)\/*$/', '\\1/', $this->next_prev_url); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 175 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 176 | $adjusted_date = $this->adjust_date($month - 1, $year); |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 177 | $out .= str_replace('{previous_url}', $this->next_prev_url.$adjusted_date['year'].'/'.$adjusted_date['month'], $this->temp['heading_previous_cell'])."\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | // Heading containing the month/year |
| 181 | $colspan = ($this->show_next_prev == TRUE) ? 5 : 7; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 182 | |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 183 | $this->temp['heading_title_cell'] = str_replace('{colspan}', $colspan, |
| 184 | str_replace('{heading}', $this->get_month_name($month).' '.$year, $this->temp['heading_title_cell'])); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 185 | |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 186 | $out .= $this->temp['heading_title_cell']."\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 187 | |
| 188 | // "next" month link |
| 189 | if ($this->show_next_prev == TRUE) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 190 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 191 | $adjusted_date = $this->adjust_date($month + 1, $year); |
| 192 | $out .= str_replace('{next_url}', $this->next_prev_url.$adjusted_date['year'].'/'.$adjusted_date['month'], $this->temp['heading_next_cell']); |
| 193 | } |
| 194 | |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 195 | $out .= "\n".$this->temp['heading_row_end']."\n\n" |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 196 | // Write the cells containing the days of the week |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 197 | .$this->temp['week_row_start']."\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 198 | |
| 199 | $day_names = $this->get_day_names(); |
| 200 | |
| 201 | for ($i = 0; $i < 7; $i ++) |
| 202 | { |
| 203 | $out .= str_replace('{week_day}', $day_names[($start_day + $i) %7], $this->temp['week_day_cell']); |
| 204 | } |
| 205 | |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 206 | $out .= "\n".$this->temp['week_row_end']."\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 207 | |
| 208 | // Build the main body of the calendar |
| 209 | while ($day <= $total_days) |
| 210 | { |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 211 | $out .= "\n".$this->temp['cal_row_start']."\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 212 | |
| 213 | for ($i = 0; $i < 7; $i++) |
| 214 | { |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 215 | $out .= ($is_current_month === TRUE && $day == $cur_day) ? $this->temp['cal_cell_start_today'] : $this->temp['cal_cell_start']; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 216 | |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 217 | if ($day > 0 && $day <= $total_days) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 218 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 219 | if (isset($data[$day])) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 220 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 221 | // Cells with content |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 222 | $temp = ($is_current_month === TRUE && $day == $cur_day) ? |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 223 | $this->temp['cal_cell_content_today'] : $this->temp['cal_cell_content']; |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 224 | $out .= str_replace(array('{content}', '{day}'), array($data[$day], $day), $temp); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 225 | } |
| 226 | else |
| 227 | { |
| 228 | // Cells with no content |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 229 | $temp = ($is_current_month === TRUE && $day == $cur_day) ? |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 230 | $this->temp['cal_cell_no_content_today'] : $this->temp['cal_cell_no_content']; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 231 | $out .= str_replace('{day}', $day, $temp); |
| 232 | } |
| 233 | } |
| 234 | else |
| 235 | { |
| 236 | // Blank cells |
| 237 | $out .= $this->temp['cal_cell_blank']; |
| 238 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 239 | |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 240 | $out .= ($is_current_month === TRUE && $day == $cur_day) ? $this->temp['cal_cell_end_today'] : $this->temp['cal_cell_end']; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 241 | $day++; |
| 242 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 243 | |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 244 | $out .= "\n".$this->temp['cal_row_end']."\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 245 | } |
| 246 | |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 247 | $out .= "\n".$this->temp['table_close']; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 248 | |
| 249 | return $out; |
| 250 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 251 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 252 | // -------------------------------------------------------------------- |
| 253 | |
| 254 | /** |
| 255 | * Get Month Name |
| 256 | * |
| 257 | * Generates a textual month name based on the numeric |
| 258 | * month provided. |
| 259 | * |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 260 | * @param int the month |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 261 | * @return string |
| 262 | */ |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 263 | public function get_month_name($month) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 264 | { |
| 265 | if ($this->month_type == 'short') |
| 266 | { |
| 267 | $month_names = array('01' => 'cal_jan', '02' => 'cal_feb', '03' => 'cal_mar', '04' => 'cal_apr', '05' => 'cal_may', '06' => 'cal_jun', '07' => 'cal_jul', '08' => 'cal_aug', '09' => 'cal_sep', '10' => 'cal_oct', '11' => 'cal_nov', '12' => 'cal_dec'); |
| 268 | } |
| 269 | else |
| 270 | { |
Derek Allard | defaa17 | 2009-08-17 17:24:31 +0000 | [diff] [blame] | 271 | $month_names = array('01' => 'cal_january', '02' => 'cal_february', '03' => 'cal_march', '04' => 'cal_april', '05' => 'cal_mayl', '06' => 'cal_june', '07' => 'cal_july', '08' => 'cal_august', '09' => 'cal_september', '10' => 'cal_october', '11' => 'cal_november', '12' => 'cal_december'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 272 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 273 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 274 | $month = $month_names[$month]; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 275 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 276 | if ($this->CI->lang->line($month) === FALSE) |
| 277 | { |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 278 | return ucfirst(substr($month, 4)); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | return $this->CI->lang->line($month); |
| 282 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 283 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 284 | // -------------------------------------------------------------------- |
| 285 | |
| 286 | /** |
| 287 | * Get Day Names |
| 288 | * |
| 289 | * Returns an array of day names (Sunday, Monday, etc.) based |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 290 | * on the type. Options: long, short, abrev |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 291 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 292 | * @param string |
| 293 | * @return array |
| 294 | */ |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 295 | public function get_day_names($day_type = '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 296 | { |
| 297 | if ($day_type != '') |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 298 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 299 | $this->day_type = $day_type; |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 300 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 301 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 302 | if ($this->day_type == 'long') |
| 303 | { |
| 304 | $day_names = array('sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday'); |
| 305 | } |
| 306 | elseif ($this->day_type == 'short') |
| 307 | { |
| 308 | $day_names = array('sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'); |
| 309 | } |
| 310 | else |
| 311 | { |
| 312 | $day_names = array('su', 'mo', 'tu', 'we', 'th', 'fr', 'sa'); |
| 313 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 314 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 315 | $days = array(); |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 316 | for ($i = 0, $c = count($day_names); $i < $c; $i++) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 317 | { |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 318 | $days[] = ($this->CI->lang->line('cal_'.$day_names[$i]) === FALSE) ? ucfirst($day_names[$i]) : $this->CI->lang->line('cal_'.$day_names[$i]); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 319 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 320 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 321 | return $days; |
| 322 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 323 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 324 | // -------------------------------------------------------------------- |
| 325 | |
| 326 | /** |
| 327 | * Adjust Date |
| 328 | * |
| 329 | * This function makes sure that we have a valid month/year. |
| 330 | * For example, if you submit 13 as the month, the year will |
| 331 | * increment and the month will become January. |
| 332 | * |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 333 | * @param int the month |
| 334 | * @param int the year |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 335 | * @return array |
| 336 | */ |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 337 | public function adjust_date($month, $year) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 338 | { |
| 339 | $date = array(); |
| 340 | |
| 341 | $date['month'] = $month; |
| 342 | $date['year'] = $year; |
| 343 | |
| 344 | while ($date['month'] > 12) |
| 345 | { |
| 346 | $date['month'] -= 12; |
| 347 | $date['year']++; |
| 348 | } |
| 349 | |
| 350 | while ($date['month'] <= 0) |
| 351 | { |
| 352 | $date['month'] += 12; |
| 353 | $date['year']--; |
| 354 | } |
| 355 | |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 356 | if (strlen($date['month']) === 1) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 357 | { |
| 358 | $date['month'] = '0'.$date['month']; |
| 359 | } |
| 360 | |
| 361 | return $date; |
| 362 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 363 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 364 | // -------------------------------------------------------------------- |
| 365 | |
| 366 | /** |
| 367 | * Total days in a given month |
| 368 | * |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 369 | * @param int the month |
| 370 | * @param int the year |
| 371 | * @return int |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 372 | */ |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 373 | public function get_total_days($month, $year) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 374 | { |
| 375 | $days_in_month = array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31); |
| 376 | |
| 377 | if ($month < 1 OR $month > 12) |
| 378 | { |
| 379 | return 0; |
| 380 | } |
| 381 | |
| 382 | // Is the year a leap year? |
| 383 | if ($month == 2) |
| 384 | { |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 385 | if ($year % 400 == 0 OR ($year % 4 == 0 && $year % 100 != 0)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 386 | { |
| 387 | return 29; |
| 388 | } |
| 389 | } |
| 390 | |
| 391 | return $days_in_month[$month - 1]; |
| 392 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 393 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 394 | // -------------------------------------------------------------------- |
| 395 | |
| 396 | /** |
| 397 | * Set Default Template Data |
| 398 | * |
| 399 | * This is used in the event that the user has not created their own template |
| 400 | * |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 401 | * @return array |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 402 | */ |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 403 | public function default_template() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 404 | { |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 405 | return array ( |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 406 | 'table_open' => '<table border="0" cellpadding="4" cellspacing="0">', |
| 407 | 'heading_row_start' => '<tr>', |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 408 | 'heading_previous_cell' => '<th><a href="{previous_url}"><<</a></th>', |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 409 | 'heading_title_cell' => '<th colspan="{colspan}">{heading}</th>', |
| 410 | 'heading_next_cell' => '<th><a href="{next_url}">>></a></th>', |
| 411 | 'heading_row_end' => '</tr>', |
| 412 | 'week_row_start' => '<tr>', |
| 413 | 'week_day_cell' => '<td>{week_day}</td>', |
| 414 | 'week_row_end' => '</tr>', |
| 415 | 'cal_row_start' => '<tr>', |
| 416 | 'cal_cell_start' => '<td>', |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 417 | 'cal_cell_start_today' => '<td>', |
| 418 | 'cal_cell_content' => '<a href="{content}">{day}</a>', |
| 419 | 'cal_cell_content_today' => '<a href="{content}"><strong>{day}</strong></a>', |
| 420 | 'cal_cell_no_content' => '{day}', |
| 421 | 'cal_cell_no_content_today' => '<strong>{day}</strong>', |
| 422 | 'cal_cell_blank' => ' ', |
| 423 | 'cal_cell_end' => '</td>', |
| 424 | 'cal_cell_end_today' => '</td>', |
| 425 | 'cal_row_end' => '</tr>', |
| 426 | 'table_close' => '</table>' |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 427 | ); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 428 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 429 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 430 | // -------------------------------------------------------------------- |
| 431 | |
| 432 | /** |
| 433 | * Parse Template |
| 434 | * |
| 435 | * Harvests the data within the template {pseudo-variables} |
| 436 | * used to display the calendar |
| 437 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 438 | * @return void |
| 439 | */ |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 440 | public function parse_template() |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 441 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 442 | $this->temp = $this->default_template(); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 443 | |
| 444 | if ($this->template == '') |
| 445 | { |
| 446 | return; |
| 447 | } |
| 448 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 449 | $today = array('cal_cell_start_today', 'cal_cell_content_today', 'cal_cell_no_content_today', 'cal_cell_end_today'); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 450 | |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 451 | foreach (array('table_open', 'table_close', 'heading_row_start', 'heading_previous_cell', 'heading_title_cell', 'heading_next_cell', 'heading_row_end', 'week_row_start', 'week_day_cell', 'week_row_end', 'cal_row_start', 'cal_cell_start', 'cal_cell_content', 'cal_cell_no_content', 'cal_cell_blank', 'cal_cell_end', 'cal_row_end', 'cal_cell_start_today', 'cal_cell_content_today', 'cal_cell_no_content_today', 'cal_cell_end_today') as $val) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 452 | { |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 453 | if (preg_match('/\{'.$val.'\}(.*?)\{\/'.$val.'\}/si', $this->template, $match)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 454 | { |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 455 | $this->temp[$val] = $match[1]; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 456 | } |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 457 | elseif (in_array($val, $today, TRUE)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 458 | { |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 459 | $this->temp[$val] = $this->temp[substr($val, 0, -6)]; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 460 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 461 | } |
| 462 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 463 | |
| 464 | } |
| 465 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 466 | /* End of file Calendar.php */ |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame^] | 467 | /* Location: ./system/libraries/Calendar.php */ |