forked from Automattic/cheezcap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
library.php
274 lines (238 loc) · 7.68 KB
/
library.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
<?php
/**
* CheezCap - Cheezburger Custom Administration Panel
* (c) 2008 - 2011 Cheezburger Network (Pet Holdings, Inc.)
* LOL: http://cheezburger.com
* Source: http://github.com/cheezburger/cheezcap/
* Authors: Kyall Barrows, Toby McKes, Stefan Rusek, Scott Porad
* UnLOLs by Mo Jangda ([email protected])
* License: GNU General Public License, version 2 (GPL), http://www.gnu.org/licenses/gpl-2.0.html
*/
class CheezCapGroup {
var $name;
var $id;
var $options;
function __construct( $_name, $_id, $_options ) {
$this->name = $_name;
$this->id = "cap_$_id";
$this->options = $_options;
}
function write_html() {
?>
<table class="form-table" width="100%">
<tr valign="top">
<th scope="row"><?php _e( 'Option', 'cheezcap' ); ?></th>
<th scope="row"><?php _e( 'Value', 'cheezcap' ); ?></th>
</tr>
<?php
for ( $i=0; $i < count( $this->options ); $i++ ) {
$this->options[$i]->write_html();
}
?>
</table>
<?php
}
}
class CheezCapOption {
var $name;
var $desc;
var $id;
var $_key;
var $std;
var $validation_cb;
function __construct( $_name, $_desc, $_id, $_std, $_validation_cb = false ) {
$this->name = $_name;
$this->desc = $_desc;
$this->id = "cap_$_id";
$this->_key = $_id;
$this->std = $_std;
if ( $_validation_cb && is_callable( $_validation_cb ) ) {
$this->validation_cb = $_validation_cb;
}
}
function write_html() {
}
function update( $ignored = '' ) {
$value = isset( $_POST[$this->id] ) ? $_POST[$this->id] : '';
$this->save( $value );
}
function reset( $ignored = '' ) {
$this->save( $this->std );
}
function import( $data ) {
if ( array_key_exists( $this->id, $data->dict ) )
$this->save( $data->dict[$this->id] );
}
function export( $data ) {
$data->dict[$this->id] = get_option( $this->id );
}
function save( $value ) {
if ( $this->validation_cb )
$value = call_user_func($this->validation_cb, $this->id, $value);
else
$value = stripslashes_deep( $value );
update_option( $this->id, $value );
}
function get() {
return get_option( $this->id );
}
}
class CheezCapTextOption extends CheezCapOption {
var $useTextArea;
function __construct( $_name, $_desc, $_id, $_std = '', $_useTextArea = false, $_validation_cb = false ) {
parent::__construct( $_name, $_desc, $_id, $_std, $_validation_cb );
$this->useTextArea = $_useTextArea;
}
function save( $value ) {
parent::save( $this->sanitize( $value ) );
}
function write_html() {
$stdText = $this->std;
$stdTextOption = get_option( $this->id );
if ( ! empty( $stdTextOption ) )
$stdText = $stdTextOption;
?>
<tr valign="top">
<th scope="row"><label for="<?php echo $this->id; ?>"><?php echo esc_html( $this->name . ':' ); ?></label></th>
<?php
$commentWidth = 2;
if ( $this->useTextArea ) :
$commentWidth = 1; ?>
<td rowspan="2">
<textarea style="width:100%;height:100%;" name="<?php echo esc_attr( $this->id ); ?>" id="<?php echo esc_attr( $this->id ); ?>"><?php echo esc_textarea( $stdText ); ?></textarea>
<?php else : ?>
<td>
<input name="<?php echo esc_attr( $this->id ); ?>" id="<?php echo esc_attr( $this->id ); ?>" type="text" value="<?php echo esc_attr( $stdText ); ?>" size="40" />
<?php endif; ?>
</td>
</tr>
<tr valign="top">
<td colspan="<?php echo absint( $commentWidth ); ?>">
<label for="<?php echo $this->id; ?>">
<small><?php echo esc_html( $this->desc ); ?></small>
</label>
</td>
</tr>
<tr valign="top">
<td colspan="2"><hr /></td>
</tr>
<?php
}
function sanitize( $value ) {
if( $this->useTextArea )
return wp_filter_post_kses( $value );
else
return strip_tags( $value );
}
function get() {
$value = get_option( $this->id );
if ( empty( $value ) )
return $this->std;
return $this->sanitize( $value );
}
}
class CheezCapDropdownOption extends CheezCapOption {
var $options;
function __construct( $_name, $_desc, $_id, $_options, $_stdIndex = 0, $_options_labels = array(), $_validation_cb = false ) {
$_std = ! isset( $_options[$_stdIndex] ) ? $_options[0] : $_options[$_stdIndex];
parent::__construct( $_name, $_desc, $_id, $_std, $_validation_cb );
$this->options = $_options;
$this->options_labels = $_options_labels;
}
function save( $value ) {
if( ! in_array( $value, $this->options ) )
$this->reset();
parent::save( $value );
}
function write_html() {
?>
<tr valign="top">
<th scope="row"><label for="<?php echo $this->id; ?>"><?php echo esc_html( $this->name ); ?></label></th>
<td>
<select name="<?php echo esc_attr( $this->id ); ?>" id="<?php echo esc_attr( $this->id ); ?>">
<?php $count = 0; ?>
<?php foreach( $this->options as $option ) : ?>
<?php $option_label = isset( $this->options_labels[$count] ) ? $this->options_labels[$count] : $option; ?>
<option<?php selected( ( get_option( $this->id ) == $option || ( null === get_option( $this->id, null ) && $this->std == $option ) ) ) ?> value="<?php echo esc_attr( $option ); ?>"><?php echo esc_html( $option_label ); ?></option>
<?php $count++; ?>
<?php endforeach; ?>
</select>
</td>
</tr>
<tr valign="top">
<td colspan=2>
<label for="<?php echo $this->id; ?>"><small><?php echo esc_html( $this->desc ); ?></small></label><hr />
</td>
</tr>
<?php
}
function sanitize( $value ) {
return strip_tags( $value );
}
function get() {
$value = get_option( $this->id, $this->std );
if ( strtolower( $value ) == 'disabled' )
return false;
return $this->sanitize( $value );
}
}
class CheezCapBooleanOption extends CheezCapDropdownOption {
var $default;
function __construct( $_name, $_desc, $_id, $_default = false ) {
$this->default = $_default;
parent::__construct( $_name, $_desc, $_id, array( 0, 1 ), $_default ? 0 : 1, array( 'Disabled', 'Enabled' ) );
}
function get() {
$value = get_option( $this->id, $this->default );
if ( is_bool( $value ) )
return $value;
switch ( strtolower( $value ) ) {
case 'true':
case 'enable':
case 'enabled':
case '1':
case 1:
return true;
default:
return false;
}
}
}
class CheezCapMultipleCheckboxesOption extends CheezCapOption {
var $options_checked;
var $options;
var $options_labels;
function __construct( $_name, $_desc, $_id, $_options, $_options_labels = array(), $_options_checked, $_validation_cb = false ) {
$this->options = $_options;
$this->options_labels = $_options_labels;
parent::__construct( $_name, $_desc, $_id, '', $_validation_cb );
$this->options_checked = is_array( $_options_checked ) ? $_options_checked : $this->get();
}
function write_html() {
?>
<tr valign="top">
<th scope="row"><label for="<?php echo $this->id; ?>"><?php echo esc_html( $this->name ); ?></label></th>
<td>
<input type="hidden" name="<?php echo esc_attr( $this->id ); ?>" />
<?php $count = 0; ?>
<?php foreach( $this->options as $option ) : ?>
<?php $checked = in_array( $option , (array) $this->options_checked ) ? ' checked="checked" ' : ''; ?>
<?php $option_label = isset( $this->options_labels[$count] ) ? $this->options_labels[$count] : $option; ?>
<input type="checkbox" name="<?php echo esc_attr( $this->id ); ?>[]" id="<?php echo esc_attr( $this->id ); ?>-<?php echo esc_attr( $option ); ?>" value="<?php echo esc_attr( $option ); ?>" <?php echo $checked; ?> />
<label for="<?php echo esc_attr( $this->id ); ?>-<?php echo esc_attr( $option ); ?>"><?php echo esc_html( $option_label ); ?></label>
<?php $count++; ?>
<br />
<?php endforeach; ?>
</td>
</tr>
<tr valign="top">
<td colspan=2>
<label for="<?php echo $this->id; ?>"><small><?php echo esc_html( $this->desc ); ?></small></label><hr />
</td>
</tr>
<?php
}
}
class CheezCapImportData {
var $dict = array();
}