Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 1 | <?php |
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 |
darwinel | 871754a | 2014-02-11 17:34:57 +0100 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2014, 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 | */ |
Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 27 | defined('BASEPATH') OR exit('No direct script access allowed'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 28 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 29 | /** |
| 30 | * CodeIgniter Calendar Class |
| 31 | * |
| 32 | * This class enables the creation of calendars |
| 33 | * |
| 34 | * @package CodeIgniter |
| 35 | * @subpackage Libraries |
| 36 | * @category Libraries |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 37 | * @author EllisLab Dev Team |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 38 | * @link http://codeigniter.com/user_guide/libraries/calendar.html |
| 39 | */ |
| 40 | class CI_Calendar { |
| 41 | |
Timothy Warren | 68f0981 | 2012-04-27 10:38:32 -0400 | [diff] [blame] | 42 | /** |
Timothy Warren | 68f0981 | 2012-04-27 10:38:32 -0400 | [diff] [blame] | 43 | * Calendar layout template |
| 44 | * |
Andrew | 021f8ed | 2014-02-09 16:31:22 -0600 | [diff] [blame] | 45 | * @var mixed |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 46 | */ |
| 47 | public $template = ''; |
Andrey Andreev | 9bf3cf2 | 2014-02-18 16:39:46 +0200 | [diff] [blame] | 48 | |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 49 | /** |
| 50 | * Replacements array for template |
| 51 | * |
Andrew | e0333db | 2014-02-08 01:24:00 -0600 | [diff] [blame] | 52 | * @var array |
Timothy Warren | 68f0981 | 2012-04-27 10:38:32 -0400 | [diff] [blame] | 53 | */ |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 54 | public $replacements = array(); |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 55 | |
Timothy Warren | 68f0981 | 2012-04-27 10:38:32 -0400 | [diff] [blame] | 56 | /** |
| 57 | * Day of the week to start the calendar on |
| 58 | * |
| 59 | * @var string |
| 60 | */ |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 61 | public $start_day = 'sunday'; |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 62 | |
Timothy Warren | 68f0981 | 2012-04-27 10:38:32 -0400 | [diff] [blame] | 63 | /** |
| 64 | * How to display months |
| 65 | * |
| 66 | * @var string |
| 67 | */ |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 68 | public $month_type = 'long'; |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 69 | |
Timothy Warren | 68f0981 | 2012-04-27 10:38:32 -0400 | [diff] [blame] | 70 | /** |
| 71 | * How to display names of days |
| 72 | * |
| 73 | * @var string |
| 74 | */ |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 75 | public $day_type = 'abr'; |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 76 | |
Timothy Warren | 68f0981 | 2012-04-27 10:38:32 -0400 | [diff] [blame] | 77 | /** |
| 78 | * Whether to show next/prev month links |
| 79 | * |
| 80 | * @var bool |
| 81 | */ |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 82 | public $show_next_prev = FALSE; |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 83 | |
Timothy Warren | 68f0981 | 2012-04-27 10:38:32 -0400 | [diff] [blame] | 84 | /** |
| 85 | * Url base to use for next/prev month links |
| 86 | * |
| 87 | * @var bool |
| 88 | */ |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 89 | public $next_prev_url = ''; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 90 | |
| 91 | /** |
Marcos SF Filho | 7977e1d | 2014-01-08 15:34:11 -0200 | [diff] [blame] | 92 | * Show days of other months |
| 93 | * |
| 94 | * @var bool |
| 95 | */ |
| 96 | public $show_other_days = FALSE; |
| 97 | |
Andrey Andreev | 6125a27 | 2014-02-21 16:58:13 +0200 | [diff] [blame^] | 98 | // -------------------------------------------------------------------- |
| 99 | |
| 100 | /** |
| 101 | * CI Singleton |
| 102 | * |
| 103 | * @var object |
| 104 | */ |
| 105 | protected $CI; |
| 106 | |
| 107 | // -------------------------------------------------------------------- |
| 108 | |
Marcos SF Filho | 7977e1d | 2014-01-08 15:34:11 -0200 | [diff] [blame] | 109 | /** |
Andrey Andreev | 3e9d2b8 | 2012-10-27 14:28:51 +0300 | [diff] [blame] | 110 | * Class constructor |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 111 | * |
Andrey Andreev | 3e9d2b8 | 2012-10-27 14:28:51 +0300 | [diff] [blame] | 112 | * Loads the calendar language file and sets the default time reference. |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame] | 113 | * |
Andrey Andreev | 3e9d2b8 | 2012-10-27 14:28:51 +0300 | [diff] [blame] | 114 | * @uses CI_Lang::$is_loaded |
| 115 | * |
| 116 | * @param array $config Calendar options |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame] | 117 | * @return void |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 118 | */ |
Greg Aker | a926328 | 2010-11-10 15:26:43 -0600 | [diff] [blame] | 119 | public function __construct($config = array()) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 120 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 121 | $this->CI =& get_instance(); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 122 | |
Greg Aker | 3a74665 | 2011-04-19 10:59:47 -0500 | [diff] [blame] | 123 | if ( ! in_array('calendar_lang.php', $this->CI->lang->is_loaded, TRUE)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 124 | { |
| 125 | $this->CI->lang->load('calendar'); |
| 126 | } |
| 127 | |
Andrey Andreev | 6125a27 | 2014-02-21 16:58:13 +0200 | [diff] [blame^] | 128 | empty($config) OR $this->initialize($config); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 129 | |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame] | 130 | log_message('debug', 'Calendar Class Initialized'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 131 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 132 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 133 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 134 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 135 | /** |
| 136 | * Initialize the user preferences |
| 137 | * |
| 138 | * Accepts an associative array as input, containing display preferences |
| 139 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 140 | * @param array config preferences |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 141 | * @return CI_Calendar |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 142 | */ |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 143 | public function initialize($config = array()) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 144 | { |
| 145 | foreach ($config as $key => $val) |
| 146 | { |
| 147 | if (isset($this->$key)) |
| 148 | { |
| 149 | $this->$key = $val; |
| 150 | } |
| 151 | } |
Marcos SF Filho | 7977e1d | 2014-01-08 15:34:11 -0200 | [diff] [blame] | 152 | |
| 153 | // Set the next_prev_url to the controller if required but not defined |
Marcos SF Filho | c4f6616 | 2014-01-08 18:57:09 -0200 | [diff] [blame] | 154 | if ($this->show_next_prev === TRUE && empty($this->next_prev_url)) |
Marcos SF Filho | 7977e1d | 2014-01-08 15:34:11 -0200 | [diff] [blame] | 155 | { |
Marcos SF Filho | 0cd7c92 | 2014-01-08 19:38:00 -0200 | [diff] [blame] | 156 | $this->next_prev_url = $this->CI->config->site_url($this->CI->router->class.'/'.$this->CI->router->method); |
Marcos SF Filho | 7977e1d | 2014-01-08 15:34:11 -0200 | [diff] [blame] | 157 | } |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 158 | |
| 159 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 160 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 161 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 162 | // -------------------------------------------------------------------- |
| 163 | |
| 164 | /** |
| 165 | * Generate the calendar |
| 166 | * |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame] | 167 | * @param int the year |
| 168 | * @param int the month |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 169 | * @param array the data to be shown in the calendar cells |
| 170 | * @return string |
| 171 | */ |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 172 | public function generate($year = '', $month = '', $data = array()) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 173 | { |
Andrey Andreev | 6125a27 | 2014-02-21 16:58:13 +0200 | [diff] [blame^] | 174 | $local_time = time(); |
| 175 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 176 | // Set and validate the supplied month/year |
Andrey Andreev | f51b1fb | 2012-06-16 20:02:23 +0300 | [diff] [blame] | 177 | if (empty($year)) |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 178 | { |
Andrey Andreev | 6125a27 | 2014-02-21 16:58:13 +0200 | [diff] [blame^] | 179 | $year = date('Y', $local_time); |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 180 | } |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 181 | elseif (strlen($year) === 1) |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 182 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 183 | $year = '200'.$year; |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 184 | } |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 185 | elseif (strlen($year) === 2) |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 186 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 187 | $year = '20'.$year; |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 188 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 189 | |
Andrey Andreev | f51b1fb | 2012-06-16 20:02:23 +0300 | [diff] [blame] | 190 | if (empty($month)) |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 191 | { |
Andrey Andreev | 6125a27 | 2014-02-21 16:58:13 +0200 | [diff] [blame^] | 192 | $month = date('m', $local_time); |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 193 | } |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 194 | elseif (strlen($month) === 1) |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 195 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 196 | $month = '0'.$month; |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 197 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 198 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 199 | $adjusted_date = $this->adjust_date($month, $year); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 200 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 201 | $month = $adjusted_date['month']; |
| 202 | $year = $adjusted_date['year']; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 203 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 204 | // Determine the total days in the month |
| 205 | $total_days = $this->get_total_days($month, $year); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 206 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 207 | // Set the starting day of the week |
| 208 | $start_days = array('sunday' => 0, 'monday' => 1, 'tuesday' => 2, 'wednesday' => 3, 'thursday' => 4, 'friday' => 5, 'saturday' => 6); |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 209 | $start_day = isset($start_days[$this->start_day]) ? $start_days[$this->start_day] : 0; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 210 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 211 | // Set the starting day number |
| 212 | $local_date = mktime(12, 0, 0, $month, 1, $year); |
| 213 | $date = getdate($local_date); |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame] | 214 | $day = $start_day + 1 - $date['wday']; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 215 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 216 | while ($day > 1) |
| 217 | { |
| 218 | $day -= 7; |
| 219 | } |
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 | // Set the current month/year/day |
| 222 | // We use this to determine the "today" date |
Andrey Andreev | 6125a27 | 2014-02-21 16:58:13 +0200 | [diff] [blame^] | 223 | $cur_year = date('Y', $local_time); |
| 224 | $cur_month = date('m', $local_time); |
| 225 | $cur_day = date('j', $local_time); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 226 | |
Andrey Andreev | 5036c9c | 2012-06-04 15:34:56 +0300 | [diff] [blame] | 227 | $is_current_month = ($cur_year == $year && $cur_month == $month); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 228 | |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 229 | // Generate the template data array |
| 230 | $this->parse_template(); |
| 231 | |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 232 | // Begin building the calendar output |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 233 | $out = $this->replacements['table_open']."\n\n".$this->replacements['heading_row_start']."\n"; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 234 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 235 | // "previous" month link |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 236 | if ($this->show_next_prev === TRUE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 237 | { |
Andrey Andreev | 838a9d6 | 2012-12-03 14:37:47 +0200 | [diff] [blame] | 238 | // Add a trailing slash to the URL if needed |
| 239 | $this->next_prev_url = preg_replace('/(.+?)\/*$/', '\\1/', $this->next_prev_url); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 240 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 241 | $adjusted_date = $this->adjust_date($month - 1, $year); |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 242 | $out .= str_replace('{previous_url}', $this->next_prev_url.$adjusted_date['year'].'/'.$adjusted_date['month'], $this->replacements['heading_previous_cell'])."\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | // Heading containing the month/year |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 246 | $colspan = ($this->show_next_prev === TRUE) ? 5 : 7; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 247 | |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 248 | $this->replacements['heading_title_cell'] = str_replace('{colspan}', $colspan, |
| 249 | str_replace('{heading}', $this->get_month_name($month).' '.$year, $this->replacements['heading_title_cell'])); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 250 | |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 251 | $out .= $this->replacements['heading_title_cell']."\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 252 | |
| 253 | // "next" month link |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 254 | if ($this->show_next_prev === TRUE) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 255 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 256 | $adjusted_date = $this->adjust_date($month + 1, $year); |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 257 | $out .= str_replace('{next_url}', $this->next_prev_url.$adjusted_date['year'].'/'.$adjusted_date['month'], $this->replacements['heading_next_cell']); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 258 | } |
| 259 | |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 260 | $out .= "\n".$this->replacements['heading_row_end']."\n\n" |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 261 | // Write the cells containing the days of the week |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 262 | .$this->replacements['week_row_start']."\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 263 | |
| 264 | $day_names = $this->get_day_names(); |
| 265 | |
| 266 | for ($i = 0; $i < 7; $i ++) |
| 267 | { |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 268 | $out .= str_replace('{week_day}', $day_names[($start_day + $i) %7], $this->replacements['week_day_cell']); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 269 | } |
| 270 | |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 271 | $out .= "\n".$this->replacements['week_row_end']."\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 272 | |
| 273 | // Build the main body of the calendar |
| 274 | while ($day <= $total_days) |
| 275 | { |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 276 | $out .= "\n".$this->replacements['cal_row_start']."\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 277 | |
| 278 | for ($i = 0; $i < 7; $i++) |
| 279 | { |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame] | 280 | if ($day > 0 && $day <= $total_days) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 281 | { |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 282 | $out .= ($is_current_month === TRUE && $day == $cur_day) ? $this->replacements['cal_cell_start_today'] : $this->replacements['cal_cell_start']; |
Marcos SF Filho | 7977e1d | 2014-01-08 15:34:11 -0200 | [diff] [blame] | 283 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 284 | if (isset($data[$day])) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 285 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 286 | // Cells with content |
Andrey Andreev | 5036c9c | 2012-06-04 15:34:56 +0300 | [diff] [blame] | 287 | $temp = ($is_current_month === TRUE && $day == $cur_day) ? |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 288 | $this->replacements['cal_cell_content_today'] : $this->replacements['cal_cell_content']; |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 289 | $out .= str_replace(array('{content}', '{day}'), array($data[$day], $day), $temp); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 290 | } |
| 291 | else |
| 292 | { |
| 293 | // Cells with no content |
Andrey Andreev | 5036c9c | 2012-06-04 15:34:56 +0300 | [diff] [blame] | 294 | $temp = ($is_current_month === TRUE && $day == $cur_day) ? |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 295 | $this->replacements['cal_cell_no_content_today'] : $this->replacements['cal_cell_no_content']; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 296 | $out .= str_replace('{day}', $day, $temp); |
| 297 | } |
Marcos SF Filho | 7977e1d | 2014-01-08 15:34:11 -0200 | [diff] [blame] | 298 | |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 299 | $out .= ($is_current_month === TRUE && $day == $cur_day) ? $this->replacements['cal_cell_end_today'] : $this->replacements['cal_cell_end']; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 300 | } |
Marcos SF Filho | a593e3e | 2014-01-08 18:22:12 -0200 | [diff] [blame] | 301 | elseif ($this->show_other_days === TRUE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 302 | { |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 303 | $out .= $this->replacements['cal_cell_start_other']; |
Marcos SF Filho | a593e3e | 2014-01-08 18:22:12 -0200 | [diff] [blame] | 304 | |
| 305 | if ($day <= 0) |
Marcos SF Filho | 7977e1d | 2014-01-08 15:34:11 -0200 | [diff] [blame] | 306 | { |
Marcos SF Filho | a593e3e | 2014-01-08 18:22:12 -0200 | [diff] [blame] | 307 | // Day of previous month |
Marcos SF Filho | 2e914b7 | 2014-01-09 09:20:55 -0200 | [diff] [blame] | 308 | $prev_month = $this->adjust_date($month - 1, $year); |
Marcos SF Filho | a593e3e | 2014-01-08 18:22:12 -0200 | [diff] [blame] | 309 | $prev_month_days = $this->get_total_days($prev_month['month'], $prev_month['year']); |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 310 | $out .= str_replace('{day}', $prev_month_days + $day, $this->replacements['cal_cell_other']); |
Marcos SF Filho | 7977e1d | 2014-01-08 15:34:11 -0200 | [diff] [blame] | 311 | } |
| 312 | else |
| 313 | { |
Marcos SF Filho | a593e3e | 2014-01-08 18:22:12 -0200 | [diff] [blame] | 314 | // Day of next month |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 315 | $out .= str_replace('{day}', $day - $total_days, $this->replacements['cal_cell_other']); |
Marcos SF Filho | 7977e1d | 2014-01-08 15:34:11 -0200 | [diff] [blame] | 316 | } |
Marcos SF Filho | a593e3e | 2014-01-08 18:22:12 -0200 | [diff] [blame] | 317 | |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 318 | $out .= $this->replacements['cal_cell_end_other']; |
Marcos SF Filho | a593e3e | 2014-01-08 18:22:12 -0200 | [diff] [blame] | 319 | } |
| 320 | else |
| 321 | { |
| 322 | // Blank cells |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 323 | $out .= $this->replacements['cal_cell_start'].$this->replacements['cal_cell_blank'].$this->replacements['cal_cell_end']; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 324 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 325 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 326 | $day++; |
| 327 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 328 | |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 329 | $out .= "\n".$this->replacements['cal_row_end']."\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 330 | } |
| 331 | |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 332 | return $out .= "\n".$this->replacements['table_close']; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 333 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 334 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 335 | // -------------------------------------------------------------------- |
| 336 | |
| 337 | /** |
| 338 | * Get Month Name |
| 339 | * |
| 340 | * Generates a textual month name based on the numeric |
| 341 | * month provided. |
| 342 | * |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame] | 343 | * @param int the month |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 344 | * @return string |
| 345 | */ |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 346 | public function get_month_name($month) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 347 | { |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 348 | if ($this->month_type === 'short') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 349 | { |
| 350 | $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'); |
| 351 | } |
| 352 | else |
| 353 | { |
Derek Allard | defaa17 | 2009-08-17 17:24:31 +0000 | [diff] [blame] | 354 | $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] | 355 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 356 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 357 | return ($this->CI->lang->line($month_names[$month]) === FALSE) |
| 358 | ? ucfirst(substr($month_names[$month], 4)) |
| 359 | : $this->CI->lang->line($month_names[$month]); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 360 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 361 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 362 | // -------------------------------------------------------------------- |
| 363 | |
| 364 | /** |
| 365 | * Get Day Names |
| 366 | * |
| 367 | * Returns an array of day names (Sunday, Monday, etc.) based |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 368 | * on the type. Options: long, short, abr |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 369 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 370 | * @param string |
| 371 | * @return array |
| 372 | */ |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 373 | public function get_day_names($day_type = '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 374 | { |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 375 | if ($day_type !== '') |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 376 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 377 | $this->day_type = $day_type; |
Andrey Andreev | c7dc07e | 2011-12-24 16:48:50 +0200 | [diff] [blame] | 378 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 379 | |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 380 | if ($this->day_type === 'long') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 381 | { |
| 382 | $day_names = array('sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday'); |
| 383 | } |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 384 | elseif ($this->day_type === 'short') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 385 | { |
| 386 | $day_names = array('sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'); |
| 387 | } |
| 388 | else |
| 389 | { |
| 390 | $day_names = array('su', 'mo', 'tu', 'we', 'th', 'fr', 'sa'); |
| 391 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 392 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 393 | $days = array(); |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 394 | for ($i = 0, $c = count($day_names); $i < $c; $i++) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 395 | { |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 396 | $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] | 397 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 398 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 399 | return $days; |
| 400 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 401 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 402 | // -------------------------------------------------------------------- |
| 403 | |
| 404 | /** |
| 405 | * Adjust Date |
| 406 | * |
| 407 | * This function makes sure that we have a valid month/year. |
| 408 | * For example, if you submit 13 as the month, the year will |
| 409 | * increment and the month will become January. |
| 410 | * |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame] | 411 | * @param int the month |
| 412 | * @param int the year |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 413 | * @return array |
| 414 | */ |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 415 | public function adjust_date($month, $year) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 416 | { |
| 417 | $date = array(); |
| 418 | |
| 419 | $date['month'] = $month; |
| 420 | $date['year'] = $year; |
| 421 | |
| 422 | while ($date['month'] > 12) |
| 423 | { |
| 424 | $date['month'] -= 12; |
| 425 | $date['year']++; |
| 426 | } |
| 427 | |
| 428 | while ($date['month'] <= 0) |
| 429 | { |
| 430 | $date['month'] += 12; |
| 431 | $date['year']--; |
| 432 | } |
| 433 | |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 434 | if (strlen($date['month']) === 1) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 435 | { |
| 436 | $date['month'] = '0'.$date['month']; |
| 437 | } |
| 438 | |
| 439 | return $date; |
| 440 | } |
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 | // -------------------------------------------------------------------- |
| 443 | |
| 444 | /** |
| 445 | * Total days in a given month |
| 446 | * |
Andrey Andreev | 6dbabb5 | 2012-03-26 15:41:48 +0300 | [diff] [blame] | 447 | * @param int the month |
| 448 | * @param int the year |
| 449 | * @return int |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 450 | */ |
Andrey Andreev | e8dfc1b | 2011-12-24 01:22:19 +0200 | [diff] [blame] | 451 | public function get_total_days($month, $year) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 452 | { |
Andrey Andreev | 083a226 | 2014-02-20 16:04:58 +0200 | [diff] [blame] | 453 | $this->CI->load->helper('date'); |
Andrey Andreev | be368a8 | 2014-02-20 15:46:05 +0200 | [diff] [blame] | 454 | return days_in_month($month, $year); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 455 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 456 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 457 | // -------------------------------------------------------------------- |
| 458 | |
| 459 | /** |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 460 | * Set Default Template Data |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 461 | * |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 462 | * This is used in the event that the user has not created their own template |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 463 | * |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 464 | * @return array |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 465 | */ |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 466 | public function default_template() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 467 | { |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 468 | return array( |
Timothy Warren | 68f0981 | 2012-04-27 10:38:32 -0400 | [diff] [blame] | 469 | 'table_open' => '<table border="0" cellpadding="4" cellspacing="0">', |
| 470 | 'heading_row_start' => '<tr>', |
| 471 | 'heading_previous_cell' => '<th><a href="{previous_url}"><<</a></th>', |
| 472 | 'heading_title_cell' => '<th colspan="{colspan}">{heading}</th>', |
| 473 | 'heading_next_cell' => '<th><a href="{next_url}">>></a></th>', |
| 474 | 'heading_row_end' => '</tr>', |
| 475 | 'week_row_start' => '<tr>', |
| 476 | 'week_day_cell' => '<td>{week_day}</td>', |
| 477 | 'week_row_end' => '</tr>', |
| 478 | 'cal_row_start' => '<tr>', |
| 479 | 'cal_cell_start' => '<td>', |
| 480 | 'cal_cell_start_today' => '<td>', |
Marcos SF Filho | 7977e1d | 2014-01-08 15:34:11 -0200 | [diff] [blame] | 481 | 'cal_cell_start_other' => '<td style="color: #666;">', |
Timothy Warren | 68f0981 | 2012-04-27 10:38:32 -0400 | [diff] [blame] | 482 | 'cal_cell_content' => '<a href="{content}">{day}</a>', |
| 483 | 'cal_cell_content_today' => '<a href="{content}"><strong>{day}</strong></a>', |
| 484 | 'cal_cell_no_content' => '{day}', |
| 485 | 'cal_cell_no_content_today' => '<strong>{day}</strong>', |
| 486 | 'cal_cell_blank' => ' ', |
Marcos SF Filho | 7977e1d | 2014-01-08 15:34:11 -0200 | [diff] [blame] | 487 | 'cal_cell_other' => '{day}', |
Timothy Warren | 68f0981 | 2012-04-27 10:38:32 -0400 | [diff] [blame] | 488 | 'cal_cell_end' => '</td>', |
| 489 | 'cal_cell_end_today' => '</td>', |
Marcos SF Filho | 7977e1d | 2014-01-08 15:34:11 -0200 | [diff] [blame] | 490 | 'cal_cell_end_other' => '</td>', |
Timothy Warren | 68f0981 | 2012-04-27 10:38:32 -0400 | [diff] [blame] | 491 | 'cal_row_end' => '</tr>', |
| 492 | 'table_close' => '</table>' |
| 493 | ); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 494 | } |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 495 | |
| 496 | // -------------------------------------------------------------------- |
| 497 | |
| 498 | /** |
| 499 | * Parse Template |
| 500 | * |
| 501 | * Harvests the data within the template {pseudo-variables} |
| 502 | * used to display the calendar |
| 503 | * |
| 504 | * @return CI_Calendar |
| 505 | */ |
| 506 | public function parse_template() |
| 507 | { |
| 508 | $this->replacements = $this->default_template(); |
| 509 | |
Andrew | 021f8ed | 2014-02-09 16:31:22 -0600 | [diff] [blame] | 510 | if (empty($this->template)) |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 511 | { |
| 512 | return $this; |
| 513 | } |
Andrey Andreev | 9bf3cf2 | 2014-02-18 16:39:46 +0200 | [diff] [blame] | 514 | |
Andrew | 021f8ed | 2014-02-09 16:31:22 -0600 | [diff] [blame] | 515 | if (is_string($this->template)) |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 516 | { |
| 517 | $today = array('cal_cell_start_today', 'cal_cell_content_today', 'cal_cell_no_content_today', 'cal_cell_end_today'); |
Andrey Andreev | 9bf3cf2 | 2014-02-18 16:39:46 +0200 | [diff] [blame] | 518 | |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 519 | 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', 'cal_cell_start_other', 'cal_cell_other', 'cal_cell_end_other') as $val) |
| 520 | { |
| 521 | if (preg_match('/\{'.$val.'\}(.*?)\{\/'.$val.'\}/si', $this->template, $match)) |
| 522 | { |
| 523 | $this->replacements[$val] = $match[1]; |
| 524 | } |
| 525 | elseif (in_array($val, $today, TRUE)) |
| 526 | { |
| 527 | $this->replacements[$val] = $this->replacements[substr($val, 0, -6)]; |
| 528 | } |
| 529 | } |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 530 | } |
Andrew | 021f8ed | 2014-02-09 16:31:22 -0600 | [diff] [blame] | 531 | elseif (is_array($this->template)) |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 532 | { |
| 533 | $this->replacements = array_merge($this->replacements, $this->template); |
| 534 | } |
Andrey Andreev | 9bf3cf2 | 2014-02-18 16:39:46 +0200 | [diff] [blame] | 535 | |
Andrew | 021f8ed | 2014-02-09 16:31:22 -0600 | [diff] [blame] | 536 | return $this; |
Andrew | 227a5d7 | 2014-02-09 15:32:44 -0600 | [diff] [blame] | 537 | } |
| 538 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 539 | } |
| 540 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 541 | /* End of file Calendar.php */ |
Andrew | 41713aa | 2014-02-11 02:07:50 -0600 | [diff] [blame] | 542 | /* Location: ./system/libraries/Calendar.php */ |