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 | debcc36 | 2012-01-07 02:05:29 +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 | debcc36 | 2012-01-07 02:05:29 +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 |
Andrey Andreev | 80500af | 2013-01-01 08:16:53 +0200 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2013, 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 URL Helpers |
| 31 | * |
| 32 | * @package CodeIgniter |
| 33 | * @subpackage Helpers |
| 34 | * @category Helpers |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 35 | * @author EllisLab Dev Team |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 36 | * @link http://codeigniter.com/user_guide/helpers/url_helper.html |
| 37 | */ |
| 38 | |
| 39 | // ------------------------------------------------------------------------ |
| 40 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 41 | if ( ! function_exists('site_url')) |
| 42 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 43 | /** |
| 44 | * Site URL |
| 45 | * |
| 46 | * Create a local URL based on your basepath. Segments can be passed via the |
| 47 | * first parameter either as a string or an array. |
| 48 | * |
Andrey Andreev | 2023c3d | 2013-07-18 03:19:59 +0300 | [diff] [blame^] | 49 | * @param string $uri |
| 50 | * @param string $protocol |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 51 | * @return string |
| 52 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 53 | function site_url($uri = '') |
| 54 | { |
Andrey Andreev | 2023c3d | 2013-07-18 03:19:59 +0300 | [diff] [blame^] | 55 | $site_url = get_instance()->config->site_url($uri); |
| 56 | |
| 57 | if (isset($protocol)) |
| 58 | { |
| 59 | $site_url = $protocol.substr($site_url, strpos($site_url, '://')); |
| 60 | } |
| 61 | |
| 62 | return $site_url; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 63 | } |
| 64 | } |
| 65 | |
| 66 | // ------------------------------------------------------------------------ |
| 67 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 68 | if ( ! function_exists('base_url')) |
| 69 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 70 | /** |
| 71 | * Base URL |
| 72 | * |
| 73 | * Create a local URL based on your basepath. |
| 74 | * Segments can be passed in as a string or an array, same as site_url |
| 75 | * or a URL to a file can be passed in, e.g. to an image file. |
| 76 | * |
Andrey Andreev | 2023c3d | 2013-07-18 03:19:59 +0300 | [diff] [blame^] | 77 | * @param string $uri |
| 78 | * @param string $protocol |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 79 | * @return string |
| 80 | */ |
Andrey Andreev | 2023c3d | 2013-07-18 03:19:59 +0300 | [diff] [blame^] | 81 | function base_url($uri = '', $protocol = NULL) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 82 | { |
Andrey Andreev | 2023c3d | 2013-07-18 03:19:59 +0300 | [diff] [blame^] | 83 | $base_url = get_instance()->config->base_url($uri); |
| 84 | |
| 85 | if (isset($protocol)) |
| 86 | { |
| 87 | $base_url = $protocol.substr($base_url, strpos($base_url, '://')); |
| 88 | } |
| 89 | |
| 90 | return $base_url; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 91 | } |
| 92 | } |
| 93 | |
| 94 | // ------------------------------------------------------------------------ |
| 95 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 96 | if ( ! function_exists('current_url')) |
| 97 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 98 | /** |
| 99 | * Current URL |
| 100 | * |
| 101 | * Returns the full URL (including segments) of the page where this |
| 102 | * function is placed |
| 103 | * |
| 104 | * @return string |
| 105 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 106 | function current_url() |
| 107 | { |
| 108 | $CI =& get_instance(); |
| 109 | return $CI->config->site_url($CI->uri->uri_string()); |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | // ------------------------------------------------------------------------ |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 114 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 115 | if ( ! function_exists('uri_string')) |
| 116 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 117 | /** |
| 118 | * URL String |
| 119 | * |
| 120 | * Returns the URI segments. |
| 121 | * |
| 122 | * @return string |
| 123 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 124 | function uri_string() |
| 125 | { |
| 126 | $CI =& get_instance(); |
| 127 | return $CI->uri->uri_string(); |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | // ------------------------------------------------------------------------ |
| 132 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 133 | if ( ! function_exists('index_page')) |
| 134 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 135 | /** |
| 136 | * Index page |
| 137 | * |
| 138 | * Returns the "index_page" from your config file |
| 139 | * |
| 140 | * @return string |
| 141 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 142 | function index_page() |
| 143 | { |
| 144 | $CI =& get_instance(); |
| 145 | return $CI->config->item('index_page'); |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | // ------------------------------------------------------------------------ |
| 150 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 151 | if ( ! function_exists('anchor')) |
| 152 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 153 | /** |
| 154 | * Anchor Link |
| 155 | * |
| 156 | * Creates an anchor based on the local URL. |
| 157 | * |
| 158 | * @param string the URL |
| 159 | * @param string the link title |
| 160 | * @param mixed any attributes |
| 161 | * @return string |
| 162 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 163 | function anchor($uri = '', $title = '', $attributes = '') |
| 164 | { |
| 165 | $title = (string) $title; |
| 166 | |
| 167 | if ( ! is_array($uri)) |
| 168 | { |
Aaron Adams | 16800e4 | 2012-12-07 22:39:23 -0500 | [diff] [blame] | 169 | $site_url = preg_match('#^(\w+:)?//#i', $uri) ? $uri : site_url($uri); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 170 | } |
| 171 | else |
| 172 | { |
| 173 | $site_url = site_url($uri); |
| 174 | } |
| 175 | |
Alex Bilbie | 773ccc3 | 2012-06-02 11:11:08 +0100 | [diff] [blame] | 176 | if ($title === '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 177 | { |
| 178 | $title = $site_url; |
| 179 | } |
| 180 | |
Alex Bilbie | 773ccc3 | 2012-06-02 11:11:08 +0100 | [diff] [blame] | 181 | if ($attributes !== '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 182 | { |
Eric Barnes | acedd2b | 2012-07-29 00:15:40 -0400 | [diff] [blame] | 183 | $attributes = _stringify_attributes($attributes); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | return '<a href="'.$site_url.'"'.$attributes.'>'.$title.'</a>'; |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | // ------------------------------------------------------------------------ |
| 191 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 192 | if ( ! function_exists('anchor_popup')) |
| 193 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 194 | /** |
| 195 | * Anchor Link - Pop-up version |
| 196 | * |
| 197 | * Creates an anchor based on the local URL. The link |
| 198 | * opens a new window based on the attributes specified. |
| 199 | * |
| 200 | * @param string the URL |
| 201 | * @param string the link title |
| 202 | * @param mixed any attributes |
| 203 | * @return string |
| 204 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 205 | function anchor_popup($uri = '', $title = '', $attributes = FALSE) |
| 206 | { |
| 207 | $title = (string) $title; |
Aaron Adams | 16800e4 | 2012-12-07 22:39:23 -0500 | [diff] [blame] | 208 | $site_url = preg_match('#^(\w+:)?//#i', $uri) ? $uri : site_url($uri); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 209 | |
Alex Bilbie | 773ccc3 | 2012-06-02 11:11:08 +0100 | [diff] [blame] | 210 | if ($title === '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 211 | { |
| 212 | $title = $site_url; |
| 213 | } |
| 214 | |
| 215 | if ($attributes === FALSE) |
| 216 | { |
Andrey Andreev | 81c3208 | 2012-06-16 21:21:46 +0300 | [diff] [blame] | 217 | return '<a href="'.$site_url.'" onclick="window.open(\''.$site_url."', '_blank'); return false;\">".$title.'</a>'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | if ( ! is_array($attributes)) |
| 221 | { |
Andrey Andreev | f0a8410 | 2012-06-16 20:52:20 +0300 | [diff] [blame] | 222 | $attributes = array($attributes); |
Andrey Andreev | 81c3208 | 2012-06-16 21:21:46 +0300 | [diff] [blame] | 223 | |
| 224 | // Ref: http://www.w3schools.com/jsref/met_win_open.asp |
| 225 | $window_name = '_blank'; |
| 226 | } |
| 227 | elseif ( ! empty($attributes['window_name'])) |
| 228 | { |
| 229 | $window_name = $attributes['window_name']; |
| 230 | unset($attributes['window_name']); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 231 | } |
| 232 | |
Andrey Andreev | 81c3208 | 2012-06-16 21:21:46 +0300 | [diff] [blame] | 233 | foreach (array('width' => '800', 'height' => '600', 'scrollbars' => 'yes', 'status' => 'yes', 'resizable' => 'yes', 'screenx' => '0', 'screeny' => '0') as $key => $val) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 234 | { |
Andrey Andreev | 1222087 | 2012-03-26 21:38:56 +0300 | [diff] [blame] | 235 | $atts[$key] = isset($attributes[$key]) ? $attributes[$key] : $val; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 236 | unset($attributes[$key]); |
| 237 | } |
| 238 | |
Eric Barnes | acedd2b | 2012-07-29 00:15:40 -0400 | [diff] [blame] | 239 | $attributes = _stringify_attributes($attributes); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 240 | |
Andrey Andreev | 81c3208 | 2012-06-16 21:21:46 +0300 | [diff] [blame] | 241 | return '<a href="'.$site_url |
Eric Barnes | acedd2b | 2012-07-29 00:15:40 -0400 | [diff] [blame] | 242 | .'" onclick="window.open(\''.$site_url."', '".$window_name."', '"._stringify_attributes($atts, TRUE)."'); return false;\"" |
Andrey Andreev | 81c3208 | 2012-06-16 21:21:46 +0300 | [diff] [blame] | 243 | .$attributes.'>'.$title.'</a>'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 244 | } |
| 245 | } |
| 246 | |
| 247 | // ------------------------------------------------------------------------ |
| 248 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 249 | if ( ! function_exists('mailto')) |
| 250 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 251 | /** |
| 252 | * Mailto Link |
| 253 | * |
| 254 | * @param string the email address |
| 255 | * @param string the link title |
| 256 | * @param mixed any attributes |
| 257 | * @return string |
| 258 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 259 | function mailto($email, $title = '', $attributes = '') |
| 260 | { |
| 261 | $title = (string) $title; |
| 262 | |
Alex Bilbie | 773ccc3 | 2012-06-02 11:11:08 +0100 | [diff] [blame] | 263 | if ($title === '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 264 | { |
| 265 | $title = $email; |
| 266 | } |
| 267 | |
Eric Barnes | acedd2b | 2012-07-29 00:15:40 -0400 | [diff] [blame] | 268 | return '<a href="mailto:'.$email.'"'._stringify_attributes($attributes).'>'.$title.'</a>'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 269 | } |
| 270 | } |
| 271 | |
| 272 | // ------------------------------------------------------------------------ |
| 273 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 274 | if ( ! function_exists('safe_mailto')) |
| 275 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 276 | /** |
| 277 | * Encoded Mailto Link |
| 278 | * |
| 279 | * Create a spam-protected mailto link written in Javascript |
| 280 | * |
| 281 | * @param string the email address |
| 282 | * @param string the link title |
| 283 | * @param mixed any attributes |
| 284 | * @return string |
| 285 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 286 | function safe_mailto($email, $title = '', $attributes = '') |
| 287 | { |
| 288 | $title = (string) $title; |
| 289 | |
Alex Bilbie | 773ccc3 | 2012-06-02 11:11:08 +0100 | [diff] [blame] | 290 | if ($title === '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 291 | { |
| 292 | $title = $email; |
| 293 | } |
| 294 | |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 295 | $x = str_split('<a href="mailto:', 1); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 296 | |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 297 | for ($i = 0, $l = strlen($email); $i < $l; $i++) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 298 | { |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 299 | $x[] = '|'.ord($email[$i]); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | $x[] = '"'; |
| 303 | |
Alex Bilbie | 773ccc3 | 2012-06-02 11:11:08 +0100 | [diff] [blame] | 304 | if ($attributes !== '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 305 | { |
| 306 | if (is_array($attributes)) |
| 307 | { |
| 308 | foreach ($attributes as $key => $val) |
| 309 | { |
Andrey Andreev | 838a9d6 | 2012-12-03 14:37:47 +0200 | [diff] [blame] | 310 | $x[] = ' '.$key.'="'; |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 311 | for ($i = 0, $l = strlen($val); $i < $l; $i++) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 312 | { |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 313 | $x[] = '|'.ord($val[$i]); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 314 | } |
| 315 | $x[] = '"'; |
| 316 | } |
| 317 | } |
| 318 | else |
| 319 | { |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 320 | for ($i = 0, $l = strlen($attributes); $i < $l; $i++) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 321 | { |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 322 | $x[] = $attributes[$i]; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 323 | } |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | $x[] = '>'; |
| 328 | |
| 329 | $temp = array(); |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 330 | for ($i = 0, $l = strlen($title); $i < $l; $i++) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 331 | { |
| 332 | $ordinal = ord($title[$i]); |
| 333 | |
| 334 | if ($ordinal < 128) |
| 335 | { |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 336 | $x[] = '|'.$ordinal; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 337 | } |
| 338 | else |
| 339 | { |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 340 | if (count($temp) === 0) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 341 | { |
| 342 | $count = ($ordinal < 224) ? 2 : 3; |
| 343 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 344 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 345 | $temp[] = $ordinal; |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 346 | if (count($temp) === $count) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 347 | { |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 348 | $number = ($count === 3) |
| 349 | ? (($temp[0] % 16) * 4096) + (($temp[1] % 64) * 64) + ($temp[2] % 64) |
| 350 | : (($temp[0] % 32) * 64) + ($temp[1] % 64); |
| 351 | $x[] = '|'.$number; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 352 | $count = 1; |
| 353 | $temp = array(); |
| 354 | } |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | $x[] = '<'; $x[] = '/'; $x[] = 'a'; $x[] = '>'; |
| 359 | |
| 360 | $x = array_reverse($x); |
| 361 | ob_start(); |
| 362 | |
| 363 | ?><script type="text/javascript"> |
| 364 | //<![CDATA[ |
| 365 | var l=new Array(); |
| 366 | <?php |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 367 | for ($i = 0, $c = count($x); $i < $c; $i++) { ?>l[<?php echo $i; ?>]='<?php echo $x[$i]; ?>';<?php } ?> |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 368 | |
| 369 | for (var i = l.length-1; i >= 0; i=i-1){ |
Alex Bilbie | 773ccc3 | 2012-06-02 11:11:08 +0100 | [diff] [blame] | 370 | if (l[i].substring(0, 1) === '|') document.write("&#"+unescape(l[i].substring(1))+";"); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 371 | else document.write(unescape(l[i]));} |
| 372 | //]]> |
| 373 | </script><?php |
| 374 | |
| 375 | $buffer = ob_get_contents(); |
| 376 | ob_end_clean(); |
| 377 | return $buffer; |
| 378 | } |
| 379 | } |
| 380 | |
| 381 | // ------------------------------------------------------------------------ |
| 382 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 383 | if ( ! function_exists('auto_link')) |
| 384 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 385 | /** |
| 386 | * Auto-linker |
| 387 | * |
| 388 | * Automatically links URL and Email addresses. |
| 389 | * Note: There's a bit of extra code here to deal with |
| 390 | * URLs or emails that end in a period. We'll strip these |
| 391 | * off and add them after the link. |
| 392 | * |
| 393 | * @param string the string |
| 394 | * @param string the type: email, url, or both |
| 395 | * @param bool whether to create pop-up links |
| 396 | * @return string |
| 397 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 398 | function auto_link($str, $type = 'both', $popup = FALSE) |
| 399 | { |
Eric Roberts | 8093bd7 | 2013-01-17 18:12:47 -0600 | [diff] [blame] | 400 | // Find and replace any URLs. |
Andrey Andreev | 606fee0 | 2013-01-28 12:57:13 +0200 | [diff] [blame] | 401 | if ($type !== 'email' && preg_match_all('#(\w*://|www\.)[^\s()<>;]+\w#i', $str, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 402 | { |
Eric Roberts | 8093bd7 | 2013-01-17 18:12:47 -0600 | [diff] [blame] | 403 | // Set our target HTML if using popup links. |
Andrey Andreev | 606fee0 | 2013-01-28 12:57:13 +0200 | [diff] [blame] | 404 | $target = ($popup) ? ' target="_blank"' : ''; |
Eric Roberts | 32a28f5 | 2013-01-19 02:59:14 -0600 | [diff] [blame] | 405 | |
Eric Roberts | 8093bd7 | 2013-01-17 18:12:47 -0600 | [diff] [blame] | 406 | // We process the links in reverse order (last -> first) so that |
| 407 | // the returned string offsets from preg_match_all() are not |
| 408 | // moved as we add more HTML. |
Andrey Andreev | 606fee0 | 2013-01-28 12:57:13 +0200 | [diff] [blame] | 409 | foreach (array_reverse($matches) as $match) |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 410 | { |
Andrey Andreev | 606fee0 | 2013-01-28 12:57:13 +0200 | [diff] [blame] | 411 | // $match[0] is the matched string/link |
| 412 | // $match[1] is either a protocol prefix or 'www.' |
| 413 | // |
| 414 | // With PREG_OFFSET_CAPTURE, both of the above is an array, |
| 415 | // where the actual value is held in [0] and its offset at the [1] index. |
| 416 | $a = '<a href="'.(strpos($match[1][0], '/') ? '' : 'http://').$match[0][0].'"'.$target.'>'.$match[0][0].'</a>'; |
| 417 | $str = substr_replace($str, $a, $match[0][1], strlen($match[0][0])); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 418 | } |
| 419 | } |
Eric Roberts | 32a28f5 | 2013-01-19 02:59:14 -0600 | [diff] [blame] | 420 | |
Eric Roberts | 8093bd7 | 2013-01-17 18:12:47 -0600 | [diff] [blame] | 421 | // Find and replace any emails. |
| 422 | if ($type !== 'url' && preg_match_all('#([\w\.\-\+]+@[a-z0-9\-]+\.[a-z0-9\-\.]+[^[:punct:]\s])#i', $str, $matches, PREG_OFFSET_CAPTURE)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 423 | { |
Eric Roberts | 8093bd7 | 2013-01-17 18:12:47 -0600 | [diff] [blame] | 424 | foreach (array_reverse($matches[0]) as $match) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 425 | { |
Eric Roberts | 8093bd7 | 2013-01-17 18:12:47 -0600 | [diff] [blame] | 426 | if (filter_var($match[0], FILTER_VALIDATE_EMAIL) !== FALSE) |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 427 | { |
Eric Roberts | 8093bd7 | 2013-01-17 18:12:47 -0600 | [diff] [blame] | 428 | $str = substr_replace($str, safe_mailto($match[0]), $match[1], strlen($match[0])); |
Andrey Andreev | 929e124 | 2012-10-19 10:09:28 +0300 | [diff] [blame] | 429 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 430 | } |
| 431 | } |
Eric Roberts | 32a28f5 | 2013-01-19 02:59:14 -0600 | [diff] [blame] | 432 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 433 | return $str; |
| 434 | } |
| 435 | } |
| 436 | |
| 437 | // ------------------------------------------------------------------------ |
| 438 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 439 | if ( ! function_exists('prep_url')) |
| 440 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 441 | /** |
| 442 | * Prep URL |
| 443 | * |
| 444 | * Simply adds the http:// part if no scheme is included |
| 445 | * |
| 446 | * @param string the URL |
| 447 | * @return string |
| 448 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 449 | function prep_url($str = '') |
| 450 | { |
Alex Bilbie | 773ccc3 | 2012-06-02 11:11:08 +0100 | [diff] [blame] | 451 | if ($str === 'http://' OR $str === '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 452 | { |
| 453 | return ''; |
| 454 | } |
| 455 | |
Robin Sowell | d2167a0 | 2010-09-14 15:05:42 -0400 | [diff] [blame] | 456 | $url = parse_url($str); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 457 | |
Robin Sowell | d2167a0 | 2010-09-14 15:05:42 -0400 | [diff] [blame] | 458 | if ( ! $url OR ! isset($url['scheme'])) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 459 | { |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 460 | return 'http://'.$str; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 461 | } |
| 462 | |
| 463 | return $str; |
| 464 | } |
| 465 | } |
| 466 | |
| 467 | // ------------------------------------------------------------------------ |
| 468 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 469 | if ( ! function_exists('url_title')) |
| 470 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 471 | /** |
| 472 | * Create URL Title |
| 473 | * |
| 474 | * Takes a "title" string as input and creates a |
| 475 | * human-friendly URL string with a "separator" string |
| 476 | * as the word separator. |
| 477 | * |
Andrey Andreev | 08f0f8b | 2012-11-09 10:27:43 +0200 | [diff] [blame] | 478 | * @todo Remove old 'dash' and 'underscore' usage in 3.1+. |
| 479 | * @param string $str Input string |
| 480 | * @param string $separator Word separator |
| 481 | * (usually '-' or '_') |
| 482 | * @param bool $lowercase Wether to transform the output string to lowercase |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 483 | * @return string |
| 484 | */ |
tubalmartin | 1a69710 | 2012-03-04 16:01:11 +0100 | [diff] [blame] | 485 | function url_title($str, $separator = '-', $lowercase = FALSE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 486 | { |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 487 | if ($separator === 'dash') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 488 | { |
Andrey Andreev | 1222087 | 2012-03-26 21:38:56 +0300 | [diff] [blame] | 489 | $separator = '-'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 490 | } |
Andrey Andreev | 1222087 | 2012-03-26 21:38:56 +0300 | [diff] [blame] | 491 | elseif ($separator === 'underscore') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 492 | { |
Andrey Andreev | 1222087 | 2012-03-26 21:38:56 +0300 | [diff] [blame] | 493 | $separator = '_'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 494 | } |
Andrey Andreev | 1222087 | 2012-03-26 21:38:56 +0300 | [diff] [blame] | 495 | |
Andrey Andreev | e474258 | 2012-10-25 13:25:13 +0300 | [diff] [blame] | 496 | $q_separator = preg_quote($separator, '#'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 497 | |
| 498 | $trans = array( |
Andrey Andreev | 1222087 | 2012-03-26 21:38:56 +0300 | [diff] [blame] | 499 | '&.+?;' => '', |
| 500 | '[^a-z0-9 _-]' => '', |
| 501 | '\s+' => $separator, |
| 502 | '('.$q_separator.')+' => $separator |
| 503 | ); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 504 | |
| 505 | $str = strip_tags($str); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 506 | foreach ($trans as $key => $val) |
| 507 | { |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 508 | $str = preg_replace('#'.$key.'#i', $val, $str); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 509 | } |
| 510 | |
Derek Jones | 40a2fc8 | 2008-12-09 19:41:25 +0000 | [diff] [blame] | 511 | if ($lowercase === TRUE) |
| 512 | { |
| 513 | $str = strtolower($str); |
| 514 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 515 | |
Phil Sturgeon | a2bd363 | 2012-03-04 15:32:58 +0000 | [diff] [blame] | 516 | return trim(trim($str, $separator)); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 517 | } |
| 518 | } |
| 519 | |
| 520 | // ------------------------------------------------------------------------ |
| 521 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 522 | if ( ! function_exists('redirect')) |
| 523 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 524 | /** |
| 525 | * Header Redirect |
| 526 | * |
| 527 | * Header redirect in two flavors |
| 528 | * For very fine grained control over headers, you could use the Output |
| 529 | * Library's set_header() function. |
| 530 | * |
Andrey Andreev | 08f0f8b | 2012-11-09 10:27:43 +0200 | [diff] [blame] | 531 | * @param string $uri URL |
| 532 | * @param string $method Redirect method |
| 533 | * 'auto', 'location' or 'refresh' |
| 534 | * @param int $code HTTP Response status code |
| 535 | * @return void |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 536 | */ |
Andrey Andreev | 2fce2a9 | 2012-06-27 01:07:56 +0300 | [diff] [blame] | 537 | function redirect($uri = '', $method = 'auto', $code = NULL) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 538 | { |
Aaron Adams | 16800e4 | 2012-12-07 22:39:23 -0500 | [diff] [blame] | 539 | if ( ! preg_match('#^(\w+:)?//#i', $uri)) |
Derek Jones | 534be03 | 2009-02-10 18:47:47 +0000 | [diff] [blame] | 540 | { |
| 541 | $uri = site_url($uri); |
| 542 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 543 | |
Brandon Jones | 50e5dbb | 2011-11-07 15:51:05 -0500 | [diff] [blame] | 544 | // IIS environment likely? Use 'refresh' for better compatibility |
vlakoff | aab26a1 | 2012-09-11 13:10:21 +0200 | [diff] [blame] | 545 | if ($method === 'auto' && isset($_SERVER['SERVER_SOFTWARE']) && strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== FALSE) |
Brandon Jones | 50e5dbb | 2011-11-07 15:51:05 -0500 | [diff] [blame] | 546 | { |
| 547 | $method = 'refresh'; |
| 548 | } |
Andrey Andreev | 2fce2a9 | 2012-06-27 01:07:56 +0300 | [diff] [blame] | 549 | elseif ($method !== 'refresh' && (empty($code) OR ! is_numeric($code))) |
| 550 | { |
| 551 | // Reference: http://en.wikipedia.org/wiki/Post/Redirect/Get |
| 552 | $code = (isset($_SERVER['REQUEST_METHOD'], $_SERVER['SERVER_PROTOCOL']) |
| 553 | && $_SERVER['REQUEST_METHOD'] === 'POST' |
| 554 | && $_SERVER['SERVER_PROTOCOL'] === 'HTTP/1.1') |
| 555 | ? 303 : 302; |
| 556 | } |
Brandon Jones | 50e5dbb | 2011-11-07 15:51:05 -0500 | [diff] [blame] | 557 | |
Andrey Andreev | 2fce2a9 | 2012-06-27 01:07:56 +0300 | [diff] [blame] | 558 | switch ($method) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 559 | { |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 560 | case 'refresh': |
| 561 | header('Refresh:0;url='.$uri); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 562 | break; |
Andrey Andreev | debcc36 | 2012-01-07 02:05:29 +0200 | [diff] [blame] | 563 | default: |
Andrey Andreev | 2fce2a9 | 2012-06-27 01:07:56 +0300 | [diff] [blame] | 564 | header('Location: '.$uri, TRUE, $code); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 565 | break; |
| 566 | } |
| 567 | exit; |
| 568 | } |
| 569 | } |
| 570 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 571 | /* End of file url_helper.php */ |
Andrey Andreev | 1222087 | 2012-03-26 21:38:56 +0300 | [diff] [blame] | 572 | /* Location: ./system/helpers/url_helper.php */ |