blob: 016a36c57bdbac9f60a2511df5cd834281613563 [file] [log] [blame]
Andrey Andreeve684bda2012-03-26 13:47:29 +03001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
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 Andreeve684bda2012-03-26 13:47:29 +03008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreeve684bda2012-03-26 13:47:29 +030010 *
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
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, 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 */
27
Derek Allard2067d1a2008-11-13 22:59:24 +000028/**
29 * CodeIgniter Text Helpers
30 *
31 * @package CodeIgniter
32 * @subpackage Helpers
33 * @category Helpers
Derek Jonesf4a4bd82011-10-20 12:18:42 -050034 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000035 * @link http://codeigniter.com/user_guide/helpers/text_helper.html
36 */
37
38// ------------------------------------------------------------------------
39
Derek Allard2067d1a2008-11-13 22:59:24 +000040if ( ! function_exists('word_limiter'))
41{
Timothy Warrenb75faa12012-04-27 12:03:32 -040042 /**
43 * Word Limiter
44 *
45 * Limits a string to X number of words.
46 *
47 * @param string
48 * @param int
49 * @param string the end character. Usually an ellipsis
50 * @return string
51 */
Derek Allard2067d1a2008-11-13 22:59:24 +000052 function word_limiter($str, $limit = 100, $end_char = '&#8230;')
53 {
Alex Bilbie773ccc32012-06-02 11:11:08 +010054 if (trim($str) === '')
Derek Allard2067d1a2008-11-13 22:59:24 +000055 {
56 return $str;
57 }
Barry Mienydd671972010-10-04 16:33:58 +020058
Derek Allard2067d1a2008-11-13 22:59:24 +000059 preg_match('/^\s*+(?:\S++\s*+){1,'.(int) $limit.'}/', $str, $matches);
Barry Mienydd671972010-10-04 16:33:58 +020060
Andrey Andreev4921fed2012-01-07 01:28:07 +020061 if (strlen($str) === strlen($matches[0]))
Derek Allard2067d1a2008-11-13 22:59:24 +000062 {
63 $end_char = '';
64 }
Barry Mienydd671972010-10-04 16:33:58 +020065
Derek Allard2067d1a2008-11-13 22:59:24 +000066 return rtrim($matches[0]).$end_char;
67 }
68}
Barry Mienydd671972010-10-04 16:33:58 +020069
Derek Allard2067d1a2008-11-13 22:59:24 +000070// ------------------------------------------------------------------------
71
Derek Allard2067d1a2008-11-13 22:59:24 +000072if ( ! function_exists('character_limiter'))
73{
Timothy Warrenb75faa12012-04-27 12:03:32 -040074 /**
75 * Character Limiter
76 *
77 * Limits the string based on the character count. Preserves complete words
78 * so the character count may not be exactly as specified.
79 *
80 * @param string
81 * @param int
82 * @param string the end character. Usually an ellipsis
83 * @return string
84 */
Derek Allard2067d1a2008-11-13 22:59:24 +000085 function character_limiter($str, $n = 500, $end_char = '&#8230;')
86 {
87 if (strlen($str) < $n)
88 {
89 return $str;
90 }
Barry Mienydd671972010-10-04 16:33:58 +020091
vlakoff62a5ee32012-09-04 23:12:49 +020092 // a bit complicated, but faster than preg_replace with \s+
93 $str = preg_replace('/ {2,}/', ' ', str_replace(array("\r", "\n", "\t", "\x0B", "\x0C"), ' ', $str));
Derek Allard2067d1a2008-11-13 22:59:24 +000094
95 if (strlen($str) <= $n)
96 {
97 return $str;
98 }
Barry Mienydd671972010-10-04 16:33:58 +020099
Andrey Andreev4921fed2012-01-07 01:28:07 +0200100 $out = '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000101 foreach (explode(' ', trim($str)) as $val)
102 {
Derek Jones01d6b4f2009-02-03 14:51:00 +0000103 $out .= $val.' ';
Barry Mienydd671972010-10-04 16:33:58 +0200104
Derek Allard2067d1a2008-11-13 22:59:24 +0000105 if (strlen($out) >= $n)
106 {
Derek Jones01d6b4f2009-02-03 14:51:00 +0000107 $out = trim($out);
Andrey Andreevcb324bd2012-01-08 07:06:35 +0200108 return (strlen($out) === strlen($str)) ? $out : $out.$end_char;
Barry Mienydd671972010-10-04 16:33:58 +0200109 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000110 }
111 }
112}
Barry Mienydd671972010-10-04 16:33:58 +0200113
Derek Allard2067d1a2008-11-13 22:59:24 +0000114// ------------------------------------------------------------------------
115
Derek Allard2067d1a2008-11-13 22:59:24 +0000116if ( ! function_exists('ascii_to_entities'))
117{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400118 /**
119 * High ASCII to Entities
120 *
121 * Converts High ascii text and MS Word special characters to character entities
122 *
123 * @param string
124 * @return string
125 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000126 function ascii_to_entities($str)
127 {
Barry Mienydd671972010-10-04 16:33:58 +0200128 $count = 1;
129 $out = '';
130 $temp = array();
131
132 for ($i = 0, $s = strlen($str); $i < $s; $i++)
133 {
134 $ordinal = ord($str[$i]);
135
136 if ($ordinal < 128)
137 {
Derek Jones1978e122009-02-03 14:54:43 +0000138 /*
139 If the $temp array has a value but we have moved on, then it seems only
140 fair that we output that entity and restart $temp before continuing. -Paul
141 */
Andrey Andreev4921fed2012-01-07 01:28:07 +0200142 if (count($temp) === 1)
Derek Jones1978e122009-02-03 14:54:43 +0000143 {
Derek Jones37f4b9c2011-07-01 17:56:50 -0500144 $out .= '&#'.array_shift($temp).';';
Derek Jones1978e122009-02-03 14:54:43 +0000145 $count = 1;
146 }
Barry Mienydd671972010-10-04 16:33:58 +0200147
Derek Jones1978e122009-02-03 14:54:43 +0000148 $out .= $str[$i];
Barry Mienydd671972010-10-04 16:33:58 +0200149 }
150 else
151 {
Andrey Andreev4921fed2012-01-07 01:28:07 +0200152 if (count($temp) === 0)
Barry Mienydd671972010-10-04 16:33:58 +0200153 {
154 $count = ($ordinal < 224) ? 2 : 3;
155 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000156
Barry Mienydd671972010-10-04 16:33:58 +0200157 $temp[] = $ordinal;
Derek Allard2067d1a2008-11-13 22:59:24 +0000158
Andrey Andreev4921fed2012-01-07 01:28:07 +0200159 if (count($temp) === $count)
Barry Mienydd671972010-10-04 16:33:58 +0200160 {
Andrey Andreev4921fed2012-01-07 01:28:07 +0200161 $number = ($count === 3)
162 ? (($temp[0] % 16) * 4096) + (($temp[1] % 64) * 64) + ($temp[2] % 64)
163 : (($temp[0] % 32) * 64) + ($temp[1] % 64);
Barry Mienydd671972010-10-04 16:33:58 +0200164
165 $out .= '&#'.$number.';';
166 $count = 1;
167 $temp = array();
168 }
169 }
170 }
171
172 return $out;
Derek Allard2067d1a2008-11-13 22:59:24 +0000173 }
174}
Barry Mienydd671972010-10-04 16:33:58 +0200175
Derek Allard2067d1a2008-11-13 22:59:24 +0000176// ------------------------------------------------------------------------
177
Derek Allard2067d1a2008-11-13 22:59:24 +0000178if ( ! function_exists('entities_to_ascii'))
179{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400180 /**
181 * Entities to ASCII
182 *
183 * Converts character entities back to ASCII
184 *
185 * @param string
186 * @param bool
187 * @return string
188 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000189 function entities_to_ascii($str, $all = TRUE)
190 {
Barry Mienydd671972010-10-04 16:33:58 +0200191 if (preg_match_all('/\&#(\d+)\;/', $str, $matches))
192 {
Andrey Andreev4921fed2012-01-07 01:28:07 +0200193 for ($i = 0, $s = count($matches[0]); $i < $s; $i++)
Barry Mienydd671972010-10-04 16:33:58 +0200194 {
Andrey Andreev4921fed2012-01-07 01:28:07 +0200195 $digits = $matches[1][$i];
Barry Mienydd671972010-10-04 16:33:58 +0200196 $out = '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000197
Barry Mienydd671972010-10-04 16:33:58 +0200198 if ($digits < 128)
199 {
200 $out .= chr($digits);
Derek Allard2067d1a2008-11-13 22:59:24 +0000201
Barry Mienydd671972010-10-04 16:33:58 +0200202 }
203 elseif ($digits < 2048)
204 {
Andrey Andreev4921fed2012-01-07 01:28:07 +0200205 $out .= chr(192 + (($digits - ($digits % 64)) / 64)).chr(128 + ($digits % 64));
Barry Mienydd671972010-10-04 16:33:58 +0200206 }
207 else
208 {
Andrey Andreev4921fed2012-01-07 01:28:07 +0200209 $out .= chr(224 + (($digits - ($digits % 4096)) / 4096))
210 .chr(128 + ((($digits % 4096) - ($digits % 64)) / 64))
211 .chr(128 + ($digits % 64));
Barry Mienydd671972010-10-04 16:33:58 +0200212 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000213
Andrey Andreev4921fed2012-01-07 01:28:07 +0200214 $str = str_replace($matches[0][$i], $out, $str);
Barry Mienydd671972010-10-04 16:33:58 +0200215 }
216 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000217
Barry Mienydd671972010-10-04 16:33:58 +0200218 if ($all)
219 {
Andrey Andreev4921fed2012-01-07 01:28:07 +0200220 return str_replace(array('&amp;', '&lt;', '&gt;', '&quot;', '&apos;', '&#45;'),
221 array('&', '<', '>', '"', "'", '-'),
222 $str);
Barry Mienydd671972010-10-04 16:33:58 +0200223 }
224
225 return $str;
Derek Allard2067d1a2008-11-13 22:59:24 +0000226 }
227}
Barry Mienydd671972010-10-04 16:33:58 +0200228
Derek Allard2067d1a2008-11-13 22:59:24 +0000229// ------------------------------------------------------------------------
230
Derek Allard2067d1a2008-11-13 22:59:24 +0000231if ( ! function_exists('word_censor'))
232{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400233 /**
234 * Word Censoring Function
235 *
236 * Supply a string and an array of disallowed words and any
237 * matched words will be converted to #### or to the replacement
238 * word you've submitted.
239 *
240 * @param string the text string
241 * @param string the array of censoered words
242 * @param string the optional replacement value
243 * @return string
244 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000245 function word_censor($str, $censored, $replacement = '')
246 {
247 if ( ! is_array($censored))
248 {
249 return $str;
250 }
Barry Mienydd671972010-10-04 16:33:58 +0200251
252 $str = ' '.$str.' ';
Derek Allard2067d1a2008-11-13 22:59:24 +0000253
Derek Jonesf1b721a2009-01-21 17:52:13 +0000254 // \w, \b and a few others do not match on a unicode character
255 // set for performance reasons. As a result words like über
256 // will not match on a word boundary. Instead, we'll assume that
Derek Jonesdaf9c012010-03-05 10:29:30 -0600257 // a bad word will be bookeneded by any of these characters.
Derek Jonesf1b721a2009-01-21 17:52:13 +0000258 $delim = '[-_\'\"`(){}<>\[\]|!?@#%&,.:;^~*+=\/ 0-9\n\r\t]';
259
Derek Allard2067d1a2008-11-13 22:59:24 +0000260 foreach ($censored as $badword)
261 {
Alex Bilbie773ccc32012-06-02 11:11:08 +0100262 if ($replacement !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000263 {
Derek Jonesf1b721a2009-01-21 17:52:13 +0000264 $str = preg_replace("/({$delim})(".str_replace('\*', '\w*?', preg_quote($badword, '/')).")({$delim})/i", "\\1{$replacement}\\3", $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000265 }
266 else
267 {
Derek Jonesf1b721a2009-01-21 17:52:13 +0000268 $str = preg_replace("/({$delim})(".str_replace('\*', '\w*?', preg_quote($badword, '/')).")({$delim})/ie", "'\\1'.str_repeat('#', strlen('\\2')).'\\3'", $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000269 }
270 }
Derek Jonesf1b721a2009-01-21 17:52:13 +0000271
Barry Mienydd671972010-10-04 16:33:58 +0200272 return trim($str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000273 }
274}
Barry Mienydd671972010-10-04 16:33:58 +0200275
Derek Allard2067d1a2008-11-13 22:59:24 +0000276// ------------------------------------------------------------------------
277
Derek Allard2067d1a2008-11-13 22:59:24 +0000278if ( ! function_exists('highlight_code'))
279{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400280 /**
281 * Code Highlighter
282 *
283 * Colorizes code strings
284 *
285 * @param string the text string
286 * @return string
287 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000288 function highlight_code($str)
Barry Mienydd671972010-10-04 16:33:58 +0200289 {
Andrey Andreev4921fed2012-01-07 01:28:07 +0200290 /* The highlight string function encodes and highlights
291 * brackets so we need them to start raw.
292 *
293 * Also replace any existing PHP tags to temporary markers
294 * so they don't accidentally break the string out of PHP,
295 * and thus, thwart the highlighting.
296 */
297 $str = str_replace(array('&lt;', '&gt;', '<?', '?>', '<%', '%>', '\\', '</script>'),
298 array('<', '>', 'phptagopen', 'phptagclose', 'asptagopen', 'asptagclose', 'backslashtmp', 'scriptclose'),
Andrey Andreev8edf87d2012-03-01 20:20:03 +0200299 $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000300
301 // The highlight_string function requires that the text be surrounded
302 // by PHP tags, which we will remove later
Andrey Andreev4921fed2012-01-07 01:28:07 +0200303 $str = highlight_string('<?php '.$str.' ?>', TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000304
Derek Allard2067d1a2008-11-13 22:59:24 +0000305 // Remove our artificially added PHP, and the syntax highlighting that came with it
Andrey Andreev4921fed2012-01-07 01:28:07 +0200306 $str = preg_replace(array(
307 '/<span style="color: #([A-Z0-9]+)">&lt;\?php(&nbsp;| )/i',
308 '/(<span style="color: #[A-Z0-9]+">.*?)\?&gt;<\/span>\n<\/span>\n<\/code>/is',
309 '/<span style="color: #[A-Z0-9]+"\><\/span>/i'
310 ),
311 array(
312 '<span style="color: #$1">',
313 "$1</span>\n</span>\n</code>",
314 ''
315 ),
316 $str);
Barry Mienydd671972010-10-04 16:33:58 +0200317
Derek Allard2067d1a2008-11-13 22:59:24 +0000318 // Replace our markers back to PHP tags.
Andrey Andreev8edf87d2012-03-01 20:20:03 +0200319 return str_replace(array('phptagopen', 'phptagclose', 'asptagopen', 'asptagclose', 'backslashtmp', 'scriptclose'),
320 array('&lt;?', '?&gt;', '&lt;%', '%&gt;', '\\', '&lt;/script&gt;'),
321 $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000322 }
323}
Barry Mienydd671972010-10-04 16:33:58 +0200324
Derek Allard2067d1a2008-11-13 22:59:24 +0000325// ------------------------------------------------------------------------
326
Derek Allard2067d1a2008-11-13 22:59:24 +0000327if ( ! function_exists('highlight_phrase'))
328{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400329 /**
330 * Phrase Highlighter
331 *
332 * Highlights a phrase within a text string
333 *
334 * @param string the text string
335 * @param string the phrase you'd like to highlight
336 * @param string the openging tag to precede the phrase with
337 * @param string the closing tag to end the phrase with
338 * @return string
339 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000340 function highlight_phrase($str, $phrase, $tag_open = '<strong>', $tag_close = '</strong>')
341 {
Alex Bilbie773ccc32012-06-02 11:11:08 +0100342 if ($str === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000343 {
344 return '';
345 }
Barry Mienydd671972010-10-04 16:33:58 +0200346
Alex Bilbie773ccc32012-06-02 11:11:08 +0100347 if ($phrase !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000348 {
Andrey Andreevcb324bd2012-01-08 07:06:35 +0200349 return preg_replace('/('.preg_quote($phrase, '/').')/i', $tag_open.'\\1'.$tag_close, $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000350 }
351
352 return $str;
353 }
354}
Derek Jonesdaf9c012010-03-05 10:29:30 -0600355
356// ------------------------------------------------------------------------
357
Derek Jonesdaf9c012010-03-05 10:29:30 -0600358if ( ! function_exists('convert_accented_characters'))
359{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400360 /**
361 * Convert Accented Foreign Characters to ASCII
362 *
363 * @param string the text string
364 * @return string
365 */
Eric Barnes5e044802011-01-11 16:10:26 -0500366 function convert_accented_characters($str)
Derek Jonesdaf9c012010-03-05 10:29:30 -0600367 {
Andrey Andreev0f2ec5b2012-01-16 14:02:24 +0200368 global $foreign_characters;
Barry Mienydd671972010-10-04 16:33:58 +0200369
Andrey Andreev0f2ec5b2012-01-16 14:02:24 +0200370 if ( ! isset($foreign_characters) OR ! is_array($foreign_characters))
Derek Jonesdaf9c012010-03-05 10:29:30 -0600371 {
Andrey Andreev09375d72012-01-19 14:57:46 +0200372 if (defined('ENVIRONMENT') && is_file(APPPATH.'config/'.ENVIRONMENT.'/foreign_chars.php'))
Andrey Andreev0f2ec5b2012-01-16 14:02:24 +0200373 {
374 include(APPPATH.'config/'.ENVIRONMENT.'/foreign_chars.php');
375 }
376 elseif (is_file(APPPATH.'config/foreign_chars.php'))
377 {
378 include(APPPATH.'config/foreign_chars.php');
379 }
380
Andrey Andreev963c96c2012-05-02 13:09:57 +0300381 if ( ! isset($foreign_characters) OR ! is_array($foreign_characters))
Andrey Andreev0f2ec5b2012-01-16 14:02:24 +0200382 {
383 return $str;
384 }
Derek Jonesdaf9c012010-03-05 10:29:30 -0600385 }
Barry Mienydd671972010-10-04 16:33:58 +0200386
Eric Barnes5e044802011-01-11 16:10:26 -0500387 return preg_replace(array_keys($foreign_characters), array_values($foreign_characters), $str);
Derek Jonesdaf9c012010-03-05 10:29:30 -0600388 }
389}
Barry Mienydd671972010-10-04 16:33:58 +0200390
Derek Allard2067d1a2008-11-13 22:59:24 +0000391// ------------------------------------------------------------------------
392
Derek Allard2067d1a2008-11-13 22:59:24 +0000393if ( ! function_exists('word_wrap'))
394{
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300395 /**
396 * Word Wrap
397 *
398 * Wraps text at the specified character. Maintains the integrity of words.
399 * Anything placed between {unwrap}{/unwrap} will not be word wrapped, nor
400 * will URLs.
401 *
402 * @param string $str the text string
403 * @param int $charlim = 76 the number of characters to wrap at
404 * @return string
405 */
Andrey Andreevfc443552012-01-07 02:14:55 +0200406 function word_wrap($str, $charlim = 76)
Derek Allard2067d1a2008-11-13 22:59:24 +0000407 {
Andrey Andreev4921fed2012-01-07 01:28:07 +0200408 // Set the character limit
Derek Allard2067d1a2008-11-13 22:59:24 +0000409 if ( ! is_numeric($charlim))
Andrey Andreev4921fed2012-01-07 01:28:07 +0200410 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000411 $charlim = 76;
Andrey Andreev4921fed2012-01-07 01:28:07 +0200412 }
Barry Mienydd671972010-10-04 16:33:58 +0200413
Derek Allard2067d1a2008-11-13 22:59:24 +0000414 // Reduce multiple spaces
Andrey Andreev4921fed2012-01-07 01:28:07 +0200415 $str = preg_replace('| +|', ' ', $str);
Barry Mienydd671972010-10-04 16:33:58 +0200416
Derek Allard2067d1a2008-11-13 22:59:24 +0000417 // Standardize newlines
418 if (strpos($str, "\r") !== FALSE)
419 {
Barry Mienydd671972010-10-04 16:33:58 +0200420 $str = str_replace(array("\r\n", "\r"), "\n", $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000421 }
Barry Mienydd671972010-10-04 16:33:58 +0200422
423 // If the current word is surrounded by {unwrap} tags we'll
Derek Allard2067d1a2008-11-13 22:59:24 +0000424 // strip the entire chunk and replace it with a marker.
425 $unwrap = array();
Andrey Andreev4921fed2012-01-07 01:28:07 +0200426 if (preg_match_all('|(\{unwrap\}.+?\{/unwrap\})|s', $str, $matches))
Derek Allard2067d1a2008-11-13 22:59:24 +0000427 {
Andrey Andreev4921fed2012-01-07 01:28:07 +0200428 for ($i = 0, $c = count($matches[0]); $i < $c; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +0000429 {
Andrey Andreev4921fed2012-01-07 01:28:07 +0200430 $unwrap[] = $matches[1][$i];
431 $str = str_replace($matches[1][$i], '{{unwrapped'.$i.'}}', $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000432 }
433 }
Barry Mienydd671972010-10-04 16:33:58 +0200434
435 // Use PHP's native function to do the initial wordwrap.
436 // We set the cut flag to FALSE so that any individual words that are
Andrey Andreev4921fed2012-01-07 01:28:07 +0200437 // too long get left alone. In the next step we'll deal with them.
Derek Allard2067d1a2008-11-13 22:59:24 +0000438 $str = wordwrap($str, $charlim, "\n", FALSE);
Barry Mienydd671972010-10-04 16:33:58 +0200439
Derek Allard2067d1a2008-11-13 22:59:24 +0000440 // Split the string into individual lines of text and cycle through them
Andrey Andreev4921fed2012-01-07 01:28:07 +0200441 $output = '';
Barry Mienydd671972010-10-04 16:33:58 +0200442 foreach (explode("\n", $str) as $line)
Derek Allard2067d1a2008-11-13 22:59:24 +0000443 {
444 // Is the line within the allowed character count?
445 // If so we'll join it to the output and continue
446 if (strlen($line) <= $charlim)
447 {
Barry Mienydd671972010-10-04 16:33:58 +0200448 $output .= $line."\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000449 continue;
450 }
Barry Mienydd671972010-10-04 16:33:58 +0200451
Derek Allard2067d1a2008-11-13 22:59:24 +0000452 $temp = '';
Pascal Kriete45e3cdf2011-02-14 13:26:20 -0500453 while ((strlen($line)) > $charlim)
Derek Allard2067d1a2008-11-13 22:59:24 +0000454 {
455 // If the over-length word is a URL we won't wrap it
Andrey Andreev4921fed2012-01-07 01:28:07 +0200456 if (preg_match('!\[url.+\]|://|wwww.!', $line))
Derek Allard2067d1a2008-11-13 22:59:24 +0000457 {
458 break;
459 }
460
461 // Trim the word down
Andrey Andreev75124a52012-03-13 12:47:58 +0200462 $temp .= substr($line, 0, $charlim - 1);
463 $line = substr($line, $charlim - 1);
Derek Allard2067d1a2008-11-13 22:59:24 +0000464 }
Barry Mienydd671972010-10-04 16:33:58 +0200465
466 // If $temp contains data it means we had to split up an over-length
Derek Allard2067d1a2008-11-13 22:59:24 +0000467 // word into smaller chunks so we'll add it back to our current line
Alex Bilbie773ccc32012-06-02 11:11:08 +0100468 if ($temp !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000469 {
Andrey Andreev4921fed2012-01-07 01:28:07 +0200470 $output .= $temp."\n".$line."\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000471 }
472 else
473 {
Andrey Andreev4921fed2012-01-07 01:28:07 +0200474 $output .= $line."\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000475 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000476 }
477
478 // Put our markers back
479 if (count($unwrap) > 0)
Barry Mienydd671972010-10-04 16:33:58 +0200480 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000481 foreach ($unwrap as $key => $val)
482 {
Andrey Andreev4921fed2012-01-07 01:28:07 +0200483 $output = str_replace('{{unwrapped'.$key.'}}', $val, $output);
Derek Allard2067d1a2008-11-13 22:59:24 +0000484 }
485 }
486
Andrey Andreev4921fed2012-01-07 01:28:07 +0200487 // Remove the unwrap tags and return
488 return str_replace(array('{unwrap}', '{/unwrap}'), '', $output);
Derek Allard2067d1a2008-11-13 22:59:24 +0000489 }
490}
Barry Mienydd671972010-10-04 16:33:58 +0200491
Greg Akercbe32472010-08-05 14:09:20 -0500492// ------------------------------------------------------------------------
493
494if ( ! function_exists('ellipsize'))
495{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400496 /**
497 * Ellipsize String
498 *
499 * This function will strip tags from a string, split it at its max_length and ellipsize
500 *
501 * @param string string to ellipsize
502 * @param int max length of string
503 * @param mixed int (1|0) or float, .5, .2, etc for position to split
504 * @param string ellipsis ; Default '...'
505 * @return string ellipsized string
506 */
Greg Akercbe32472010-08-05 14:09:20 -0500507 function ellipsize($str, $max_length, $position = 1, $ellipsis = '&hellip;')
508 {
509 // Strip tags
510 $str = trim(strip_tags($str));
511
512 // Is the string long enough to ellipsize?
513 if (strlen($str) <= $max_length)
514 {
515 return $str;
516 }
517
518 $beg = substr($str, 0, floor($max_length * $position));
Greg Akercbe32472010-08-05 14:09:20 -0500519 $position = ($position > 1) ? 1 : $position;
520
521 if ($position === 1)
522 {
523 $end = substr($str, 0, -($max_length - strlen($beg)));
524 }
525 else
526 {
527 $end = substr($str, -($max_length - strlen($beg)));
528 }
529
Barry Mienydd671972010-10-04 16:33:58 +0200530 return $beg.$ellipsis.$end;
Greg Akercbe32472010-08-05 14:09:20 -0500531 }
532}
Derek Allard2067d1a2008-11-13 22:59:24 +0000533
534/* End of file text_helper.php */
Andrey Andreeve684bda2012-03-26 13:47:29 +0300535/* Location: ./system/helpers/text_helper.php */