forked from flourishlib/flourish-classes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfText.php
154 lines (134 loc) · 4.64 KB
/
fText.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
/**
* Provides internationlization support for strings
*
* @copyright Copyright (c) 2008-2009 Will Bond
* @author Will Bond [wb] <[email protected]>
* @license http://flourishlib.com/license
*
* @package Flourish
* @link http://flourishlib.com/fText
*
* @version 1.0.0b2
* @changes 1.0.0b2 Updated ::compose() to more handle `$components` passed as an array [wb, 2009-02-05]
* @changes 1.0.0b The initial implementation [wb, 2008-11-12]
*/
class fText
{
// The following constants allow for nice looking callbacks to static methods
const compose = 'fText::compose';
const registerComposeCallback = 'fText::registerComposeCallback';
const reset = 'fText::reset';
/**
* Callbacks for when messages are composed
*
* @var array
*/
static private $compose_callbacks = array(
'pre' => array(),
'post' => array()
);
/**
* Performs an [http://php.net/sprintf sprintf()] on a string and provides a hook for modifications such as internationalization
*
* @param string $message A message to compose
* @param mixed $component A string or number to insert into the message
* @param mixed ...
* @return string The composed message
*/
static public function compose($message)
{
if (self::$compose_callbacks) {
foreach (self::$compose_callbacks['pre'] as $callback) {
$message = call_user_func($callback, $message);
}
}
$components = array_slice(func_get_args(), 1);
// Handles components passed as an array
if (sizeof($components) == 1 && is_array($components[0])) {
$components = $components[0];
}
$message = vsprintf($message, $components);
if (self::$compose_callbacks) {
foreach (self::$compose_callbacks['post'] as $callback) {
$message = call_user_func($callback, $message);
}
}
return $message;
}
/**
* Adds a callback for when a message is created using ::compose()
*
* The primary purpose of these callbacks is for internationalization of
* error messaging in Flourish. The callback should accept a single
* parameter, the message being composed and should return the message
* with any modifications.
*
* The timing parameter controls if the callback happens before or after
* the actual composition takes place, which is simply a call to
* [http://php.net/sprintf sprintf()]. Thus the message passed `'pre'`
* will always be exactly the same, while the message `'post'` will include
* the interpolated variables. Because of this, most of the time the `'pre'`
* timing should be chosen.
*
* @param string $timing When the callback should be executed - `'pre'` or `'post'` performing the actual composition
* @param callback $callback The callback
* @return void
*/
static public function registerComposeCallback($timing, $callback)
{
$valid_timings = array('pre', 'post');
if (!in_array($timing, $valid_timings)) {
throw new fProgrammerException(
'The timing specified, %1$s, is not a valid timing. Must be one of: %2$s.',
$timing,
join(', ', $valid_timings)
);
}
if (is_string($callback) && strpos($callback, '::') !== FALSE) {
$callback = explode('::', $callback);
}
self::$compose_callbacks[$timing][] = $callback;
}
/**
* Resets the configuration of the class
*
* @internal
*
* @return void
*/
static public function reset()
{
self::$compose_callbacks = array(
'pre' => array(),
'post' => array()
);
}
/**
* Forces use as a static class
*
* @return fText
*/
private function __construct() { }
}
/**
* Copyright (c) 2008-2009 Will Bond <[email protected]>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/