]> git.mxchange.org Git - friendica.git/blob - vendor/smarty/smarty/libs/plugins/modifier.capitalize.php
6513a0495750788cae3fa2d87f520d0857ec8899
[friendica.git] / vendor / smarty / smarty / libs / plugins / modifier.capitalize.php
1 <?php
2 /**
3  * Smarty plugin
4  *
5  * @package    Smarty
6  * @subpackage PluginsModifier
7  */
8
9 /**
10  * Smarty capitalize modifier plugin
11  * Type:     modifier<br>
12  * Name:     capitalize<br>
13  * Purpose:  capitalize words in the string
14  * {@internal {$string|capitalize:true:true} is the fastest option for MBString enabled systems }}
15  *
16  * @param string  $string    string to capitalize
17  * @param boolean $uc_digits also capitalize "x123" to "X123"
18  * @param boolean $lc_rest   capitalize first letters, lowercase all following letters "aAa" to "Aaa"
19  *
20  * @return string capitalized string
21  * @author Monte Ohrt <monte at ohrt dot com>
22  * @author Rodney Rehm
23  */
24 function smarty_modifier_capitalize($string, $uc_digits = false, $lc_rest = false)
25 {
26     if (Smarty::$_MBSTRING) {
27         if ($lc_rest) {
28             // uppercase (including hyphenated words)
29             $upper_string = mb_convert_case($string, MB_CASE_TITLE, Smarty::$_CHARSET);
30         } else {
31             // uppercase word breaks
32             $upper_string = preg_replace_callback("!(^|[^\p{L}'])([\p{Ll}])!S" . Smarty::$_UTF8_MODIFIER,
33                                                   'smarty_mod_cap_mbconvert_cb', $string);
34         }
35         // check uc_digits case
36         if (!$uc_digits) {
37             if (preg_match_all("!\b([\p{L}]*[\p{N}]+[\p{L}]*)\b!" . Smarty::$_UTF8_MODIFIER, $string, $matches,
38                                PREG_OFFSET_CAPTURE)) {
39                 foreach ($matches[ 1 ] as $match) {
40                     $upper_string =
41                         substr_replace($upper_string, mb_strtolower($match[ 0 ], Smarty::$_CHARSET), $match[ 1 ],
42                                        strlen($match[ 0 ]));
43                 }
44             }
45         }
46         $upper_string =
47             preg_replace_callback("!((^|\s)['\"])(\w)!" . Smarty::$_UTF8_MODIFIER, 'smarty_mod_cap_mbconvert2_cb',
48                                   $upper_string);
49         return $upper_string;
50     }
51
52     // lowercase first
53     if ($lc_rest) {
54         $string = strtolower($string);
55     }
56     // uppercase (including hyphenated words)
57     $upper_string =
58         preg_replace_callback("!(^|[^\p{L}'])([\p{Ll}])!S" . Smarty::$_UTF8_MODIFIER, 'smarty_mod_cap_ucfirst_cb',
59                               $string);
60     // check uc_digits case
61     if (!$uc_digits) {
62         if (preg_match_all("!\b([\p{L}]*[\p{N}]+[\p{L}]*)\b!" . Smarty::$_UTF8_MODIFIER, $string, $matches,
63                            PREG_OFFSET_CAPTURE)) {
64             foreach ($matches[ 1 ] as $match) {
65                 $upper_string =
66                     substr_replace($upper_string, strtolower($match[ 0 ]), $match[ 1 ], strlen($match[ 0 ]));
67             }
68         }
69     }
70     $upper_string = preg_replace_callback("!((^|\s)['\"])(\w)!" . Smarty::$_UTF8_MODIFIER, 'smarty_mod_cap_ucfirst2_cb',
71                                           $upper_string);
72     return $upper_string;
73 }
74
75 /* 
76  *
77  * Bug: create_function() use exhausts memory when used in long loops
78  * Fix: use declared functions for callbacks instead of using create_function()
79  * Note: This can be fixed using anonymous functions instead, but that requires PHP >= 5.3
80  *
81  * @author Kyle Renfrow
82  */
83 function smarty_mod_cap_mbconvert_cb($matches)
84 {
85     return stripslashes($matches[ 1 ]) . mb_convert_case(stripslashes($matches[ 2 ]), MB_CASE_UPPER, Smarty::$_CHARSET);
86 }
87
88 function smarty_mod_cap_mbconvert2_cb($matches)
89 {
90     return stripslashes($matches[ 1 ]) . mb_convert_case(stripslashes($matches[ 3 ]), MB_CASE_UPPER, Smarty::$_CHARSET);
91 }
92
93 function smarty_mod_cap_ucfirst_cb($matches)
94 {
95     return stripslashes($matches[ 1 ]) . ucfirst(stripslashes($matches[ 2 ]));
96 }
97
98 function smarty_mod_cap_ucfirst2_cb($matches)
99 {
100     return stripslashes($matches[ 1 ]) . ucfirst(stripslashes($matches[ 3 ]));
101 }