blob: dff1a86d2fc9324ef23e598a7a7f1a88ff0d51ea [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreevdebcc362012-01-07 02:05:29 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreevdebcc362012-01-07 02:05:29 +020010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * 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 Allard2067d1a2008-11-13 22:59:24 +000019 * @package CodeIgniter
Derek Jonesf4a4bd82011-10-20 12:18:42 -050020 * @author EllisLab Dev Team
darwinel871754a2014-02-11 17:34:57 +010021 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
Derek Allard2067d1a2008-11-13 22:59:24 +000023 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000028
Derek Allard2067d1a2008-11-13 22:59:24 +000029/**
30 * CodeIgniter URL Helpers
31 *
32 * @package CodeIgniter
33 * @subpackage Helpers
34 * @category Helpers
Derek Jonesf4a4bd82011-10-20 12:18:42 -050035 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000036 * @link http://codeigniter.com/user_guide/helpers/url_helper.html
37 */
38
39// ------------------------------------------------------------------------
40
Derek Allard2067d1a2008-11-13 22:59:24 +000041if ( ! function_exists('site_url'))
42{
Timothy Warrenb75faa12012-04-27 12:03:32 -040043 /**
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 Andreev2023c3d2013-07-18 03:19:59 +030049 * @param string $uri
50 * @param string $protocol
Timothy Warrenb75faa12012-04-27 12:03:32 -040051 * @return string
52 */
Andrey Andreev56c8ca62013-07-18 03:21:16 +030053 function site_url($uri = '', $protocol = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +000054 {
vlakoff4c07fce2013-10-25 01:20:32 +020055 return get_instance()->config->site_url($uri, $protocol);
Derek Allard2067d1a2008-11-13 22:59:24 +000056 }
57}
58
59// ------------------------------------------------------------------------
60
Derek Allard2067d1a2008-11-13 22:59:24 +000061if ( ! function_exists('base_url'))
62{
Timothy Warrenb75faa12012-04-27 12:03:32 -040063 /**
64 * Base URL
65 *
66 * Create a local URL based on your basepath.
67 * Segments can be passed in as a string or an array, same as site_url
68 * or a URL to a file can be passed in, e.g. to an image file.
69 *
Andrey Andreev2023c3d2013-07-18 03:19:59 +030070 * @param string $uri
71 * @param string $protocol
Timothy Warrenb75faa12012-04-27 12:03:32 -040072 * @return string
73 */
Andrey Andreev2023c3d2013-07-18 03:19:59 +030074 function base_url($uri = '', $protocol = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +000075 {
vlakoff4c07fce2013-10-25 01:20:32 +020076 return get_instance()->config->base_url($uri, $protocol);
Derek Allard2067d1a2008-11-13 22:59:24 +000077 }
78}
79
80// ------------------------------------------------------------------------
81
Derek Allard2067d1a2008-11-13 22:59:24 +000082if ( ! function_exists('current_url'))
83{
Timothy Warrenb75faa12012-04-27 12:03:32 -040084 /**
85 * Current URL
86 *
87 * Returns the full URL (including segments) of the page where this
88 * function is placed
89 *
90 * @return string
91 */
Derek Allard2067d1a2008-11-13 22:59:24 +000092 function current_url()
93 {
Andrey Andreev4ea76cc2014-01-08 21:49:23 +020094 $CI =& get_instance();
95 return $CI->config->site_url($CI->uri->uri_string());
Derek Allard2067d1a2008-11-13 22:59:24 +000096 }
97}
98
99// ------------------------------------------------------------------------
Timothy Warrenb75faa12012-04-27 12:03:32 -0400100
Derek Allard2067d1a2008-11-13 22:59:24 +0000101if ( ! function_exists('uri_string'))
102{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400103 /**
104 * URL String
105 *
106 * Returns the URI segments.
107 *
108 * @return string
109 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000110 function uri_string()
111 {
Andrey Andreev119d8a72014-01-08 15:27:53 +0200112 return get_instance()->uri->uri_string();
Derek Allard2067d1a2008-11-13 22:59:24 +0000113 }
114}
115
116// ------------------------------------------------------------------------
117
Derek Allard2067d1a2008-11-13 22:59:24 +0000118if ( ! function_exists('index_page'))
119{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400120 /**
121 * Index page
122 *
123 * Returns the "index_page" from your config file
124 *
125 * @return string
126 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000127 function index_page()
128 {
Andrey Andreev119d8a72014-01-08 15:27:53 +0200129 return get_instance()->config->item('index_page');
Derek Allard2067d1a2008-11-13 22:59:24 +0000130 }
131}
132
133// ------------------------------------------------------------------------
134
Derek Allard2067d1a2008-11-13 22:59:24 +0000135if ( ! function_exists('anchor'))
136{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400137 /**
138 * Anchor Link
139 *
140 * Creates an anchor based on the local URL.
141 *
142 * @param string the URL
143 * @param string the link title
144 * @param mixed any attributes
145 * @return string
146 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000147 function anchor($uri = '', $title = '', $attributes = '')
148 {
149 $title = (string) $title;
150
Andrey Andreevea41c8a2014-02-26 18:31:02 +0200151 $site_url = is_array($uri)
152 ? site_url($uri)
153 : preg_match('#^(\w+:)?//#i', $uri) ? $uri : site_url($uri);
Derek Allard2067d1a2008-11-13 22:59:24 +0000154
Alex Bilbie773ccc32012-06-02 11:11:08 +0100155 if ($title === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000156 {
157 $title = $site_url;
158 }
159
Alex Bilbie773ccc32012-06-02 11:11:08 +0100160 if ($attributes !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000161 {
Eric Barnesacedd2b2012-07-29 00:15:40 -0400162 $attributes = _stringify_attributes($attributes);
Derek Allard2067d1a2008-11-13 22:59:24 +0000163 }
164
165 return '<a href="'.$site_url.'"'.$attributes.'>'.$title.'</a>';
166 }
167}
168
169// ------------------------------------------------------------------------
170
Derek Allard2067d1a2008-11-13 22:59:24 +0000171if ( ! function_exists('anchor_popup'))
172{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400173 /**
174 * Anchor Link - Pop-up version
175 *
176 * Creates an anchor based on the local URL. The link
177 * opens a new window based on the attributes specified.
178 *
179 * @param string the URL
180 * @param string the link title
181 * @param mixed any attributes
182 * @return string
183 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000184 function anchor_popup($uri = '', $title = '', $attributes = FALSE)
185 {
186 $title = (string) $title;
Aaron Adams16800e42012-12-07 22:39:23 -0500187 $site_url = preg_match('#^(\w+:)?//#i', $uri) ? $uri : site_url($uri);
Derek Allard2067d1a2008-11-13 22:59:24 +0000188
Alex Bilbie773ccc32012-06-02 11:11:08 +0100189 if ($title === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000190 {
191 $title = $site_url;
192 }
193
194 if ($attributes === FALSE)
195 {
Andrey Andreev81c32082012-06-16 21:21:46 +0300196 return '<a href="'.$site_url.'" onclick="window.open(\''.$site_url."', '_blank'); return false;\">".$title.'</a>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000197 }
198
199 if ( ! is_array($attributes))
200 {
Andrey Andreevf0a84102012-06-16 20:52:20 +0300201 $attributes = array($attributes);
Andrey Andreev81c32082012-06-16 21:21:46 +0300202
203 // Ref: http://www.w3schools.com/jsref/met_win_open.asp
204 $window_name = '_blank';
205 }
206 elseif ( ! empty($attributes['window_name']))
207 {
208 $window_name = $attributes['window_name'];
209 unset($attributes['window_name']);
Derek Allard2067d1a2008-11-13 22:59:24 +0000210 }
211
Andrey Andreev81c32082012-06-16 21:21:46 +0300212 foreach (array('width' => '800', 'height' => '600', 'scrollbars' => 'yes', 'status' => 'yes', 'resizable' => 'yes', 'screenx' => '0', 'screeny' => '0') as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +0000213 {
Andrey Andreev12220872012-03-26 21:38:56 +0300214 $atts[$key] = isset($attributes[$key]) ? $attributes[$key] : $val;
Derek Allard2067d1a2008-11-13 22:59:24 +0000215 unset($attributes[$key]);
216 }
217
Eric Barnesacedd2b2012-07-29 00:15:40 -0400218 $attributes = _stringify_attributes($attributes);
Derek Allard2067d1a2008-11-13 22:59:24 +0000219
Andrey Andreev81c32082012-06-16 21:21:46 +0300220 return '<a href="'.$site_url
Eric Barnesacedd2b2012-07-29 00:15:40 -0400221 .'" onclick="window.open(\''.$site_url."', '".$window_name."', '"._stringify_attributes($atts, TRUE)."'); return false;\""
Andrey Andreev81c32082012-06-16 21:21:46 +0300222 .$attributes.'>'.$title.'</a>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000223 }
224}
225
226// ------------------------------------------------------------------------
227
Derek Allard2067d1a2008-11-13 22:59:24 +0000228if ( ! function_exists('mailto'))
229{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400230 /**
231 * Mailto Link
232 *
233 * @param string the email address
234 * @param string the link title
235 * @param mixed any attributes
236 * @return string
237 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000238 function mailto($email, $title = '', $attributes = '')
239 {
240 $title = (string) $title;
241
Alex Bilbie773ccc32012-06-02 11:11:08 +0100242 if ($title === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000243 {
244 $title = $email;
245 }
246
Eric Barnesacedd2b2012-07-29 00:15:40 -0400247 return '<a href="mailto:'.$email.'"'._stringify_attributes($attributes).'>'.$title.'</a>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000248 }
249}
250
251// ------------------------------------------------------------------------
252
Derek Allard2067d1a2008-11-13 22:59:24 +0000253if ( ! function_exists('safe_mailto'))
254{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400255 /**
256 * Encoded Mailto Link
257 *
258 * Create a spam-protected mailto link written in Javascript
259 *
260 * @param string the email address
261 * @param string the link title
262 * @param mixed any attributes
263 * @return string
264 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000265 function safe_mailto($email, $title = '', $attributes = '')
266 {
267 $title = (string) $title;
268
Alex Bilbie773ccc32012-06-02 11:11:08 +0100269 if ($title === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000270 {
271 $title = $email;
272 }
273
Andrey Andreevdebcc362012-01-07 02:05:29 +0200274 $x = str_split('<a href="mailto:', 1);
Derek Allard2067d1a2008-11-13 22:59:24 +0000275
Andrey Andreevdebcc362012-01-07 02:05:29 +0200276 for ($i = 0, $l = strlen($email); $i < $l; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +0000277 {
Andrey Andreevdebcc362012-01-07 02:05:29 +0200278 $x[] = '|'.ord($email[$i]);
Derek Allard2067d1a2008-11-13 22:59:24 +0000279 }
280
281 $x[] = '"';
282
Alex Bilbie773ccc32012-06-02 11:11:08 +0100283 if ($attributes !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000284 {
285 if (is_array($attributes))
286 {
287 foreach ($attributes as $key => $val)
288 {
Andrey Andreev838a9d62012-12-03 14:37:47 +0200289 $x[] = ' '.$key.'="';
Andrey Andreevdebcc362012-01-07 02:05:29 +0200290 for ($i = 0, $l = strlen($val); $i < $l; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +0000291 {
Andrey Andreevdebcc362012-01-07 02:05:29 +0200292 $x[] = '|'.ord($val[$i]);
Derek Allard2067d1a2008-11-13 22:59:24 +0000293 }
294 $x[] = '"';
295 }
296 }
297 else
298 {
Andrey Andreevdebcc362012-01-07 02:05:29 +0200299 for ($i = 0, $l = strlen($attributes); $i < $l; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +0000300 {
Andrey Andreevdebcc362012-01-07 02:05:29 +0200301 $x[] = $attributes[$i];
Derek Allard2067d1a2008-11-13 22:59:24 +0000302 }
303 }
304 }
305
306 $x[] = '>';
307
308 $temp = array();
Andrey Andreevdebcc362012-01-07 02:05:29 +0200309 for ($i = 0, $l = strlen($title); $i < $l; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +0000310 {
311 $ordinal = ord($title[$i]);
312
313 if ($ordinal < 128)
314 {
Andrey Andreevdebcc362012-01-07 02:05:29 +0200315 $x[] = '|'.$ordinal;
Derek Allard2067d1a2008-11-13 22:59:24 +0000316 }
317 else
318 {
Andrey Andreevdebcc362012-01-07 02:05:29 +0200319 if (count($temp) === 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000320 {
321 $count = ($ordinal < 224) ? 2 : 3;
322 }
Barry Mienydd671972010-10-04 16:33:58 +0200323
Derek Allard2067d1a2008-11-13 22:59:24 +0000324 $temp[] = $ordinal;
Andrey Andreevdebcc362012-01-07 02:05:29 +0200325 if (count($temp) === $count)
Derek Allard2067d1a2008-11-13 22:59:24 +0000326 {
Andrey Andreevdebcc362012-01-07 02:05:29 +0200327 $number = ($count === 3)
328 ? (($temp[0] % 16) * 4096) + (($temp[1] % 64) * 64) + ($temp[2] % 64)
329 : (($temp[0] % 32) * 64) + ($temp[1] % 64);
330 $x[] = '|'.$number;
Derek Allard2067d1a2008-11-13 22:59:24 +0000331 $count = 1;
332 $temp = array();
333 }
334 }
335 }
336
337 $x[] = '<'; $x[] = '/'; $x[] = 'a'; $x[] = '>';
338
339 $x = array_reverse($x);
Derek Allard2067d1a2008-11-13 22:59:24 +0000340
Andrey Andreevcfaf8c42014-02-15 21:58:45 +0200341 $output = "<script type=\"text/javascript\">\n"
342 ."\t//<![CDATA[\n"
343 ."\tvar l=new Array();\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000344
Andrey Andreevcfaf8c42014-02-15 21:58:45 +0200345 for ($i = 0, $c = count($x); $i < $c; $i++)
346 {
347 $output .= "\tl[".$i."] = '".$x[$i]."';\n";
348 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000349
Andrey Andreevcfaf8c42014-02-15 21:58:45 +0200350 $output .= "\n\tfor (var i = l.length-1; i >= 0; i=i-1) {\n"
351 ."\t\tif (l[i].substring(0, 1) === '|') document.write(\"&#\"+unescape(l[i].substring(1))+\";\");\n"
352 ."\t\telse document.write(unescape(l[i]));\n"
353 ."\t}\n"
354 ."\t//]]>\n"
355 .'</script>';
356
357 return $output;
Derek Allard2067d1a2008-11-13 22:59:24 +0000358 }
359}
360
361// ------------------------------------------------------------------------
362
Derek Allard2067d1a2008-11-13 22:59:24 +0000363if ( ! function_exists('auto_link'))
364{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400365 /**
366 * Auto-linker
367 *
368 * Automatically links URL and Email addresses.
369 * Note: There's a bit of extra code here to deal with
370 * URLs or emails that end in a period. We'll strip these
371 * off and add them after the link.
372 *
373 * @param string the string
374 * @param string the type: email, url, or both
375 * @param bool whether to create pop-up links
376 * @return string
377 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000378 function auto_link($str, $type = 'both', $popup = FALSE)
379 {
Eric Roberts8093bd72013-01-17 18:12:47 -0600380 // Find and replace any URLs.
Andrey Andreev606fee02013-01-28 12:57:13 +0200381 if ($type !== 'email' && preg_match_all('#(\w*://|www\.)[^\s()<>;]+\w#i', $str, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER))
Derek Allard2067d1a2008-11-13 22:59:24 +0000382 {
Eric Roberts8093bd72013-01-17 18:12:47 -0600383 // Set our target HTML if using popup links.
Andrey Andreev606fee02013-01-28 12:57:13 +0200384 $target = ($popup) ? ' target="_blank"' : '';
Eric Roberts32a28f52013-01-19 02:59:14 -0600385
Eric Roberts8093bd72013-01-17 18:12:47 -0600386 // We process the links in reverse order (last -> first) so that
387 // the returned string offsets from preg_match_all() are not
388 // moved as we add more HTML.
Andrey Andreev606fee02013-01-28 12:57:13 +0200389 foreach (array_reverse($matches) as $match)
Andrey Andreevdebcc362012-01-07 02:05:29 +0200390 {
Andrey Andreev606fee02013-01-28 12:57:13 +0200391 // $match[0] is the matched string/link
392 // $match[1] is either a protocol prefix or 'www.'
393 //
394 // With PREG_OFFSET_CAPTURE, both of the above is an array,
395 // where the actual value is held in [0] and its offset at the [1] index.
396 $a = '<a href="'.(strpos($match[1][0], '/') ? '' : 'http://').$match[0][0].'"'.$target.'>'.$match[0][0].'</a>';
397 $str = substr_replace($str, $a, $match[0][1], strlen($match[0][0]));
Derek Allard2067d1a2008-11-13 22:59:24 +0000398 }
399 }
Eric Roberts32a28f52013-01-19 02:59:14 -0600400
Eric Roberts8093bd72013-01-17 18:12:47 -0600401 // Find and replace any emails.
402 if ($type !== 'url' && preg_match_all('#([\w\.\-\+]+@[a-z0-9\-]+\.[a-z0-9\-\.]+[^[:punct:]\s])#i', $str, $matches, PREG_OFFSET_CAPTURE))
Derek Allard2067d1a2008-11-13 22:59:24 +0000403 {
Eric Roberts8093bd72013-01-17 18:12:47 -0600404 foreach (array_reverse($matches[0]) as $match)
Derek Allard2067d1a2008-11-13 22:59:24 +0000405 {
Eric Roberts8093bd72013-01-17 18:12:47 -0600406 if (filter_var($match[0], FILTER_VALIDATE_EMAIL) !== FALSE)
Andrey Andreevdebcc362012-01-07 02:05:29 +0200407 {
Eric Roberts8093bd72013-01-17 18:12:47 -0600408 $str = substr_replace($str, safe_mailto($match[0]), $match[1], strlen($match[0]));
Andrey Andreev929e1242012-10-19 10:09:28 +0300409 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000410 }
411 }
Eric Roberts32a28f52013-01-19 02:59:14 -0600412
Derek Allard2067d1a2008-11-13 22:59:24 +0000413 return $str;
414 }
415}
416
417// ------------------------------------------------------------------------
418
Derek Allard2067d1a2008-11-13 22:59:24 +0000419if ( ! function_exists('prep_url'))
420{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400421 /**
422 * Prep URL
423 *
424 * Simply adds the http:// part if no scheme is included
425 *
426 * @param string the URL
427 * @return string
428 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000429 function prep_url($str = '')
430 {
Alex Bilbie773ccc32012-06-02 11:11:08 +0100431 if ($str === 'http://' OR $str === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000432 {
433 return '';
434 }
435
Robin Sowelld2167a02010-09-14 15:05:42 -0400436 $url = parse_url($str);
Barry Mienydd671972010-10-04 16:33:58 +0200437
Robin Sowelld2167a02010-09-14 15:05:42 -0400438 if ( ! $url OR ! isset($url['scheme']))
Derek Allard2067d1a2008-11-13 22:59:24 +0000439 {
Andrey Andreevdebcc362012-01-07 02:05:29 +0200440 return 'http://'.$str;
Derek Allard2067d1a2008-11-13 22:59:24 +0000441 }
442
443 return $str;
444 }
445}
446
447// ------------------------------------------------------------------------
448
Derek Allard2067d1a2008-11-13 22:59:24 +0000449if ( ! function_exists('url_title'))
450{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400451 /**
452 * Create URL Title
453 *
454 * Takes a "title" string as input and creates a
455 * human-friendly URL string with a "separator" string
456 * as the word separator.
457 *
Andrey Andreev08f0f8b2012-11-09 10:27:43 +0200458 * @todo Remove old 'dash' and 'underscore' usage in 3.1+.
459 * @param string $str Input string
460 * @param string $separator Word separator
461 * (usually '-' or '_')
462 * @param bool $lowercase Wether to transform the output string to lowercase
Timothy Warrenb75faa12012-04-27 12:03:32 -0400463 * @return string
464 */
tubalmartin1a697102012-03-04 16:01:11 +0100465 function url_title($str, $separator = '-', $lowercase = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000466 {
Andrey Andreevdebcc362012-01-07 02:05:29 +0200467 if ($separator === 'dash')
Derek Allard2067d1a2008-11-13 22:59:24 +0000468 {
Andrey Andreev12220872012-03-26 21:38:56 +0300469 $separator = '-';
Derek Allard2067d1a2008-11-13 22:59:24 +0000470 }
Andrey Andreev12220872012-03-26 21:38:56 +0300471 elseif ($separator === 'underscore')
Derek Allard2067d1a2008-11-13 22:59:24 +0000472 {
Andrey Andreev12220872012-03-26 21:38:56 +0300473 $separator = '_';
Derek Allard2067d1a2008-11-13 22:59:24 +0000474 }
Andrey Andreev12220872012-03-26 21:38:56 +0300475
Andrey Andreeve4742582012-10-25 13:25:13 +0300476 $q_separator = preg_quote($separator, '#');
Derek Allard2067d1a2008-11-13 22:59:24 +0000477
478 $trans = array(
Andrey Andreevea41c8a2014-02-26 18:31:02 +0200479 '&.+?;' => '',
480 '[^a-z0-9 _-]' => '',
481 '\s+' => $separator,
482 '('.$q_separator.')+' => $separator
483 );
Derek Allard2067d1a2008-11-13 22:59:24 +0000484
485 $str = strip_tags($str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000486 foreach ($trans as $key => $val)
487 {
Andrey Andreevdebcc362012-01-07 02:05:29 +0200488 $str = preg_replace('#'.$key.'#i', $val, $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000489 }
490
Derek Jones40a2fc82008-12-09 19:41:25 +0000491 if ($lowercase === TRUE)
492 {
493 $str = strtolower($str);
494 }
Barry Mienydd671972010-10-04 16:33:58 +0200495
Phil Sturgeona2bd3632012-03-04 15:32:58 +0000496 return trim(trim($str, $separator));
Derek Allard2067d1a2008-11-13 22:59:24 +0000497 }
498}
499
500// ------------------------------------------------------------------------
501
Derek Allard2067d1a2008-11-13 22:59:24 +0000502if ( ! function_exists('redirect'))
503{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400504 /**
505 * Header Redirect
506 *
507 * Header redirect in two flavors
508 * For very fine grained control over headers, you could use the Output
509 * Library's set_header() function.
510 *
Andrey Andreev08f0f8b2012-11-09 10:27:43 +0200511 * @param string $uri URL
512 * @param string $method Redirect method
513 * 'auto', 'location' or 'refresh'
514 * @param int $code HTTP Response status code
515 * @return void
Timothy Warrenb75faa12012-04-27 12:03:32 -0400516 */
Andrey Andreev2fce2a92012-06-27 01:07:56 +0300517 function redirect($uri = '', $method = 'auto', $code = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000518 {
Aaron Adams16800e42012-12-07 22:39:23 -0500519 if ( ! preg_match('#^(\w+:)?//#i', $uri))
Derek Jones534be032009-02-10 18:47:47 +0000520 {
521 $uri = site_url($uri);
522 }
Barry Mienydd671972010-10-04 16:33:58 +0200523
Brandon Jones50e5dbb2011-11-07 15:51:05 -0500524 // IIS environment likely? Use 'refresh' for better compatibility
vlakoffaab26a12012-09-11 13:10:21 +0200525 if ($method === 'auto' && isset($_SERVER['SERVER_SOFTWARE']) && strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== FALSE)
Brandon Jones50e5dbb2011-11-07 15:51:05 -0500526 {
527 $method = 'refresh';
528 }
Andrey Andreev2fce2a92012-06-27 01:07:56 +0300529 elseif ($method !== 'refresh' && (empty($code) OR ! is_numeric($code)))
530 {
Andrey Andreeva0a73c92014-01-09 19:21:26 +0200531 if (isset($_SERVER['SERVER_PROTOCOL'], $_SERVER['REQUEST_METHOD']) && $_SERVER['SERVER_PROTOCOL'] === 'HTTP/1.1')
532 {
533 $code = ($_SERVER['REQUEST_METHOD'] !== 'GET')
534 ? 303 // reference: http://en.wikipedia.org/wiki/Post/Redirect/Get
535 : 307;
536 }
537 else
538 {
539 $code = 302;
540 }
Andrey Andreev2fce2a92012-06-27 01:07:56 +0300541 }
Brandon Jones50e5dbb2011-11-07 15:51:05 -0500542
Andrey Andreev2fce2a92012-06-27 01:07:56 +0300543 switch ($method)
Derek Allard2067d1a2008-11-13 22:59:24 +0000544 {
Andrey Andreevdebcc362012-01-07 02:05:29 +0200545 case 'refresh':
546 header('Refresh:0;url='.$uri);
Derek Allard2067d1a2008-11-13 22:59:24 +0000547 break;
Andrey Andreevdebcc362012-01-07 02:05:29 +0200548 default:
Andrey Andreev2fce2a92012-06-27 01:07:56 +0300549 header('Location: '.$uri, TRUE, $code);
Derek Allard2067d1a2008-11-13 22:59:24 +0000550 break;
551 }
552 exit;
553 }
554}
555
Derek Allard2067d1a2008-11-13 22:59:24 +0000556/* End of file url_helper.php */
Andrey Andreev12220872012-03-26 21:38:56 +0300557/* Location: ./system/helpers/url_helper.php */