forked from intoxstudio/wp-content-aware-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
walker.php
212 lines (188 loc) · 4.74 KB
/
walker.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
<?php
/**
* @package WP Content Aware Engine
* @copyright Joachim Jensen <[email protected]>
* @license GPLv3
*/
if (!defined('ABSPATH')) {
exit;
}
/**
*
* Walker to render input checkboxes
* for module content
*
*/
class WPCAWalker extends Walker {
/**
* Label property for objects.
* Used for reflection
*
* @var string
*/
private $label_arg;
/**
* Value property for objects.
* Used for reflection
*
* @var string
*/
private $value_arg;
/**
* Name for input field
*
* @var string
*/
private $name;
/**
* Constructor
*
* @since 1.0
* @param string $key
* @param string $parent_col
* @param string $id_col
* @param string $label_arg
* @param string $value_arg
*/
private function __construct($key, $parent_col, $id_col, $label_arg, $value_arg = null) {
$this->name = "cas_condition[".(is_array($key) ? implode("][", $key) : $key)."][]";
$this->db_fields = array('parent' => $parent_col, 'id' => $id_col);
$this->label_arg = $label_arg;
$this->value_arg = $value_arg ? $value_arg : $id_col;
}
/**
* Factory
*
* @since 1.0
* @param string $key
* @param string $parent_col
* @param string $id_col
* @param string $label_arg
* @param string $value_arg
* @return WPCAWalker
*/
public static function make($key, $parent_col, $id_col, $label_arg, $value_arg = null) {
return new self($key, $parent_col, $id_col, $label_arg, $value_arg);
}
/**
* Start outputting level
*
* @since 1.0
* @param string $output
* @param int $depth
* @param array $args
* @return void
*/
public function start_lvl(&$output, $depth = 0, $args = array()) {
$indent = str_repeat("\t", $depth);
$output .= "</li>$indent<li><ul class='children'>\n";
}
/**
* End outputting level
*
* @since 1.0
* @param string $output
* @param int $depth
* @param array $args
* @return void
*/
public function end_lvl(&$output, $depth = 0, $args = array()) {
$indent = str_repeat("\t", $depth);
$output .= "$indent</ul></li>\n";
}
/**
* Start outputting element
*
* @since 1.0
* @param string $output
* @param object $object
* @param int $depth
* @param array $args
* @param int $current_object_id
* @return void
*/
public function start_el(&$output, $object, $depth = 0, $args = array(), $current_object_id = 0 ) {
extract($args);
$value = $object->{$this->value_arg};
$title = esc_html($object->{$this->label_arg});
//todo: move to other object
if($object instanceof WP_Post) {
$title .= $this->_post_states($object);
}
$output .= "\n".'<li><label><input value="'.$value.'" type="checkbox" title="'.esc_attr( $title ).'" name="'.$this->name.'"'.$this->_checked($value,$selected_terms).'/> '. $title .'</label>';
}
/**
* End outputting element
*
* @since 1.0
* @param string $output
* @param object $object
* @param int $depth
* @param array $args
* @return void
*/
public function end_el(&$output, $object, $depth = 0, $args = array() ) {
$output .= "</li>\n";
}
/**
* Output if input is checked or not
*
* @since 1.0
* @param string $current
* @param array|boolean $selected
* @return string
*/
private function _checked($current,$selected) {
if(is_array($selected)) {
return checked(in_array($current,$selected),true,false);
}
return checked($selected,true,false);
}
/**
* Get post states
*
* @since 1.0
* @see _post_states()
* @param WP_Post $post
* @return string
*/
private function _post_states($post) {
$post_states = array();
if ( !empty($post->post_password) )
$post_states['protected'] = __('Password protected');
if ( 'private' == $post->post_status)
$post_states['private'] = __('Private');
if ( 'draft' == $post->post_status)
$post_states['draft'] = __('Draft');
if ( 'pending' == $post->post_status)
/* translators: post state */
$post_states['pending'] = _x('Pending', 'post state');
if ( is_sticky($post->ID) )
$post_states['sticky'] = __('Sticky');
if ( 'future' === $post->post_status ) {
$post_states['scheduled'] = __( 'Scheduled' );
}
/**
* Filter the default post display states used in the posts list table.
*
* @since 2.8.0
*
* @param array $post_states An array of post display states.
* @param int $post The post ID.
*/
$post_states = apply_filters( 'display_post_states', $post_states, $post );
$retval = "";
if ( ! empty($post_states) ) {
$state_count = count($post_states);
$i = 0;
$retval .= ' - ';
foreach ( $post_states as $state ) {
++$i;
( $i == $state_count ) ? $sep = '' : $sep = ', ';
$retval .= "<span class='post-state'>$state$sep</span>";
}
}
return $retval;
}
}
//eol