author | Anthony Ly <anthonyly.com@gmail.com> |
Mon, 03 Dec 2012 16:30:36 -0800 | |
changeset 195 | c7c0fbc09788 |
parent 194 | 32102edaa81b |
child 204 | 09a1c134465b |
permissions | -rw-r--r-- |
136 | 1 |
<?php |
2 |
/** |
|
3 |
* Link/Bookmark API |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Bookmark |
|
7 |
*/ |
|
8 |
||
9 |
/** |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
10 |
* Retrieve Bookmark data |
136 | 11 |
* |
12 |
* @since 2.1.0 |
|
13 |
* @uses $wpdb Database Object |
|
14 |
* |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
15 |
* @param mixed $bookmark |
136 | 16 |
* @param string $output Optional. Either OBJECT, ARRAY_N, or ARRAY_A constant |
17 |
* @param string $filter Optional, default is 'raw'. |
|
18 |
* @return array|object Type returned depends on $output value. |
|
19 |
*/ |
|
20 |
function get_bookmark($bookmark, $output = OBJECT, $filter = 'raw') { |
|
21 |
global $wpdb; |
|
22 |
||
23 |
if ( empty($bookmark) ) { |
|
24 |
if ( isset($GLOBALS['link']) ) |
|
25 |
$_bookmark = & $GLOBALS['link']; |
|
26 |
else |
|
27 |
$_bookmark = null; |
|
28 |
} elseif ( is_object($bookmark) ) { |
|
29 |
wp_cache_add($bookmark->link_id, $bookmark, 'bookmark'); |
|
30 |
$_bookmark = $bookmark; |
|
31 |
} else { |
|
32 |
if ( isset($GLOBALS['link']) && ($GLOBALS['link']->link_id == $bookmark) ) { |
|
33 |
$_bookmark = & $GLOBALS['link']; |
|
34 |
} elseif ( ! $_bookmark = wp_cache_get($bookmark, 'bookmark') ) { |
|
35 |
$_bookmark = $wpdb->get_row($wpdb->prepare("SELECT * FROM $wpdb->links WHERE link_id = %d LIMIT 1", $bookmark)); |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
36 |
$_bookmark->link_category = array_unique( wp_get_object_terms($_bookmark->link_id, 'link_category', array('fields' => 'ids')) ); |
136 | 37 |
wp_cache_add($_bookmark->link_id, $_bookmark, 'bookmark'); |
38 |
} |
|
39 |
} |
|
40 |
||
41 |
$_bookmark = sanitize_bookmark($_bookmark, $filter); |
|
42 |
||
43 |
if ( $output == OBJECT ) { |
|
44 |
return $_bookmark; |
|
45 |
} elseif ( $output == ARRAY_A ) { |
|
46 |
return get_object_vars($_bookmark); |
|
47 |
} elseif ( $output == ARRAY_N ) { |
|
48 |
return array_values(get_object_vars($_bookmark)); |
|
49 |
} else { |
|
50 |
return $_bookmark; |
|
51 |
} |
|
52 |
} |
|
53 |
||
54 |
/** |
|
55 |
* Retrieve single bookmark data item or field. |
|
56 |
* |
|
57 |
* @since 2.3.0 |
|
58 |
* @uses get_bookmark() Gets bookmark object using $bookmark as ID |
|
59 |
* @uses sanitize_bookmark_field() Sanitizes Bookmark field based on $context. |
|
60 |
* |
|
61 |
* @param string $field The name of the data field to return |
|
62 |
* @param int $bookmark The bookmark ID to get field |
|
63 |
* @param string $context Optional. The context of how the field will be used. |
|
64 |
* @return string |
|
65 |
*/ |
|
66 |
function get_bookmark_field( $field, $bookmark, $context = 'display' ) { |
|
67 |
$bookmark = (int) $bookmark; |
|
68 |
$bookmark = get_bookmark( $bookmark ); |
|
69 |
||
70 |
if ( is_wp_error($bookmark) ) |
|
71 |
return $bookmark; |
|
72 |
||
73 |
if ( !is_object($bookmark) ) |
|
74 |
return ''; |
|
75 |
||
76 |
if ( !isset($bookmark->$field) ) |
|
77 |
return ''; |
|
78 |
||
79 |
return sanitize_bookmark_field($field, $bookmark->$field, $bookmark->link_id, $context); |
|
80 |
} |
|
81 |
||
82 |
/** |
|
83 |
* Retrieves the list of bookmarks |
|
84 |
* |
|
85 |
* Attempts to retrieve from the cache first based on MD5 hash of arguments. If |
|
86 |
* that fails, then the query will be built from the arguments and executed. The |
|
87 |
* results will be stored to the cache. |
|
88 |
* |
|
89 |
* List of default arguments are as follows: |
|
90 |
* 'orderby' - Default is 'name' (string). How to order the links by. String is |
|
91 |
* based off of the bookmark scheme. |
|
92 |
* 'order' - Default is 'ASC' (string). Either 'ASC' or 'DESC'. Orders in either |
|
93 |
* ascending or descending order. |
|
94 |
* 'limit' - Default is -1 (integer) or show all. The amount of bookmarks to |
|
95 |
* display. |
|
96 |
* 'category' - Default is empty string (string). Include the links in what |
|
97 |
* category ID(s). |
|
98 |
* 'category_name' - Default is empty string (string). Get links by category |
|
99 |
* name. |
|
100 |
* 'hide_invisible' - Default is 1 (integer). Whether to show (default) or hide |
|
101 |
* links marked as 'invisible'. |
|
102 |
* 'show_updated' - Default is 0 (integer). Will show the time of when the |
|
103 |
* bookmark was last updated. |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
104 |
* 'include' - Default is empty string (string). Include bookmark ID(s) |
136 | 105 |
* separated by commas. |
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
106 |
* 'exclude' - Default is empty string (string). Exclude bookmark ID(s) |
136 | 107 |
* separated by commas. |
108 |
* |
|
109 |
* @since 2.1.0 |
|
110 |
* @uses $wpdb Database Object |
|
111 |
* @link http://codex.wordpress.org/Template_Tags/get_bookmarks |
|
112 |
* |
|
113 |
* @param string|array $args List of arguments to overwrite the defaults |
|
114 |
* @return array List of bookmark row objects |
|
115 |
*/ |
|
116 |
function get_bookmarks($args = '') { |
|
117 |
global $wpdb; |
|
118 |
||
119 |
$defaults = array( |
|
120 |
'orderby' => 'name', 'order' => 'ASC', |
|
121 |
'limit' => -1, 'category' => '', |
|
122 |
'category_name' => '', 'hide_invisible' => 1, |
|
123 |
'show_updated' => 0, 'include' => '', |
|
124 |
'exclude' => '', 'search' => '' |
|
125 |
); |
|
126 |
||
127 |
$r = wp_parse_args( $args, $defaults ); |
|
128 |
extract( $r, EXTR_SKIP ); |
|
129 |
||
130 |
$cache = array(); |
|
131 |
$key = md5( serialize( $r ) ); |
|
132 |
if ( $cache = wp_cache_get( 'get_bookmarks', 'bookmark' ) ) { |
|
133 |
if ( is_array($cache) && isset( $cache[ $key ] ) ) |
|
134 |
return apply_filters('get_bookmarks', $cache[ $key ], $r ); |
|
135 |
} |
|
136 |
||
137 |
if ( !is_array($cache) ) |
|
138 |
$cache = array(); |
|
139 |
||
140 |
$inclusions = ''; |
|
141 |
if ( !empty($include) ) { |
|
142 |
$exclude = ''; //ignore exclude, category, and category_name params if using include |
|
143 |
$category = ''; |
|
144 |
$category_name = ''; |
|
145 |
$inclinks = preg_split('/[\s,]+/',$include); |
|
146 |
if ( count($inclinks) ) { |
|
147 |
foreach ( $inclinks as $inclink ) { |
|
148 |
if (empty($inclusions)) |
|
149 |
$inclusions = ' AND ( link_id = ' . intval($inclink) . ' '; |
|
150 |
else |
|
151 |
$inclusions .= ' OR link_id = ' . intval($inclink) . ' '; |
|
152 |
} |
|
153 |
} |
|
154 |
} |
|
155 |
if (!empty($inclusions)) |
|
156 |
$inclusions .= ')'; |
|
157 |
||
158 |
$exclusions = ''; |
|
159 |
if ( !empty($exclude) ) { |
|
160 |
$exlinks = preg_split('/[\s,]+/',$exclude); |
|
161 |
if ( count($exlinks) ) { |
|
162 |
foreach ( $exlinks as $exlink ) { |
|
163 |
if (empty($exclusions)) |
|
164 |
$exclusions = ' AND ( link_id <> ' . intval($exlink) . ' '; |
|
165 |
else |
|
166 |
$exclusions .= ' AND link_id <> ' . intval($exlink) . ' '; |
|
167 |
} |
|
168 |
} |
|
169 |
} |
|
170 |
if (!empty($exclusions)) |
|
171 |
$exclusions .= ')'; |
|
172 |
||
173 |
if ( !empty($category_name) ) { |
|
174 |
if ( $category = get_term_by('name', $category_name, 'link_category') ) { |
|
175 |
$category = $category->term_id; |
|
176 |
} else { |
|
177 |
$cache[ $key ] = array(); |
|
178 |
wp_cache_set( 'get_bookmarks', $cache, 'bookmark' ); |
|
179 |
return apply_filters( 'get_bookmarks', array(), $r ); |
|
180 |
} |
|
181 |
} |
|
182 |
||
183 |
if ( ! empty($search) ) { |
|
184 |
$search = like_escape($search); |
|
185 |
$search = " AND ( (link_url LIKE '%$search%') OR (link_name LIKE '%$search%') OR (link_description LIKE '%$search%') ) "; |
|
186 |
} |
|
187 |
||
188 |
$category_query = ''; |
|
189 |
$join = ''; |
|
190 |
if ( !empty($category) ) { |
|
191 |
$incategories = preg_split('/[\s,]+/',$category); |
|
192 |
if ( count($incategories) ) { |
|
193 |
foreach ( $incategories as $incat ) { |
|
194 |
if (empty($category_query)) |
|
195 |
$category_query = ' AND ( tt.term_id = ' . intval($incat) . ' '; |
|
196 |
else |
|
197 |
$category_query .= ' OR tt.term_id = ' . intval($incat) . ' '; |
|
198 |
} |
|
199 |
} |
|
200 |
} |
|
201 |
if (!empty($category_query)) { |
|
202 |
$category_query .= ") AND taxonomy = 'link_category'"; |
|
203 |
$join = " INNER JOIN $wpdb->term_relationships AS tr ON ($wpdb->links.link_id = tr.object_id) INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_taxonomy_id = tr.term_taxonomy_id"; |
|
204 |
} |
|
205 |
||
206 |
if ( $show_updated && get_option('links_recently_updated_time') ) { |
|
207 |
$recently_updated_test = ", IF (DATE_ADD(link_updated, INTERVAL " . get_option('links_recently_updated_time') . " MINUTE) >= NOW(), 1,0) as recently_updated "; |
|
208 |
} else { |
|
209 |
$recently_updated_test = ''; |
|
210 |
} |
|
211 |
||
212 |
$get_updated = ( $show_updated ) ? ', UNIX_TIMESTAMP(link_updated) AS link_updated_f ' : ''; |
|
213 |
||
214 |
$orderby = strtolower($orderby); |
|
215 |
$length = ''; |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
216 |
switch ( $orderby ) { |
136 | 217 |
case 'length': |
218 |
$length = ", CHAR_LENGTH(link_name) AS length"; |
|
219 |
break; |
|
220 |
case 'rand': |
|
221 |
$orderby = 'rand()'; |
|
222 |
break; |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
223 |
case 'link_id': |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
224 |
$orderby = "$wpdb->links.link_id"; |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
225 |
break; |
136 | 226 |
default: |
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
227 |
$orderparams = array(); |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
228 |
foreach ( explode(',', $orderby) as $ordparam ) { |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
229 |
$ordparam = trim($ordparam); |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
230 |
$keys = array( 'link_id', 'link_name', 'link_url', 'link_visible', 'link_rating', 'link_owner', 'link_updated', 'link_notes' ); |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
231 |
if ( in_array( 'link_' . $ordparam, $keys ) ) |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
232 |
$orderparams[] = 'link_' . $ordparam; |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
233 |
elseif ( in_array( $ordparam, $keys ) ) |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
234 |
$orderparams[] = $ordparam; |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
235 |
} |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
236 |
$orderby = implode(',', $orderparams); |
136 | 237 |
} |
238 |
||
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
239 |
if ( empty( $orderby ) ) |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
240 |
$orderby = 'link_name'; |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
241 |
|
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
242 |
$order = strtoupper( $order ); |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
243 |
if ( '' !== $order && !in_array( $order, array( 'ASC', 'DESC' ) ) ) |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
244 |
$order = 'ASC'; |
136 | 245 |
|
246 |
$visible = ''; |
|
247 |
if ( $hide_invisible ) |
|
248 |
$visible = "AND link_visible = 'Y'"; |
|
249 |
||
250 |
$query = "SELECT * $length $recently_updated_test $get_updated FROM $wpdb->links $join WHERE 1=1 $visible $category_query"; |
|
251 |
$query .= " $exclusions $inclusions $search"; |
|
252 |
$query .= " ORDER BY $orderby $order"; |
|
253 |
if ($limit != -1) |
|
254 |
$query .= " LIMIT $limit"; |
|
255 |
||
256 |
$results = $wpdb->get_results($query); |
|
257 |
||
258 |
$cache[ $key ] = $results; |
|
259 |
wp_cache_set( 'get_bookmarks', $cache, 'bookmark' ); |
|
260 |
||
261 |
return apply_filters('get_bookmarks', $results, $r); |
|
262 |
} |
|
263 |
||
264 |
/** |
|
265 |
* Sanitizes all bookmark fields |
|
266 |
* |
|
267 |
* @since 2.3.0 |
|
268 |
* |
|
269 |
* @param object|array $bookmark Bookmark row |
|
270 |
* @param string $context Optional, default is 'display'. How to filter the |
|
271 |
* fields |
|
272 |
* @return object|array Same type as $bookmark but with fields sanitized. |
|
273 |
*/ |
|
274 |
function sanitize_bookmark($bookmark, $context = 'display') { |
|
275 |
$fields = array('link_id', 'link_url', 'link_name', 'link_image', 'link_target', 'link_category', |
|
276 |
'link_description', 'link_visible', 'link_owner', 'link_rating', 'link_updated', |
|
277 |
'link_rel', 'link_notes', 'link_rss', ); |
|
278 |
||
279 |
if ( is_object($bookmark) ) { |
|
280 |
$do_object = true; |
|
281 |
$link_id = $bookmark->link_id; |
|
282 |
} else { |
|
283 |
$do_object = false; |
|
284 |
$link_id = $bookmark['link_id']; |
|
285 |
} |
|
286 |
||
287 |
foreach ( $fields as $field ) { |
|
288 |
if ( $do_object ) { |
|
289 |
if ( isset($bookmark->$field) ) |
|
290 |
$bookmark->$field = sanitize_bookmark_field($field, $bookmark->$field, $link_id, $context); |
|
291 |
} else { |
|
292 |
if ( isset($bookmark[$field]) ) |
|
293 |
$bookmark[$field] = sanitize_bookmark_field($field, $bookmark[$field], $link_id, $context); |
|
294 |
} |
|
295 |
} |
|
296 |
||
297 |
return $bookmark; |
|
298 |
} |
|
299 |
||
300 |
/** |
|
301 |
* Sanitizes a bookmark field |
|
302 |
* |
|
303 |
* Sanitizes the bookmark fields based on what the field name is. If the field |
|
304 |
* has a strict value set, then it will be tested for that, else a more generic |
|
305 |
* filtering is applied. After the more strict filter is applied, if the |
|
306 |
* $context is 'raw' then the value is immediately return. |
|
307 |
* |
|
308 |
* Hooks exist for the more generic cases. With the 'edit' context, the |
|
309 |
* 'edit_$field' filter will be called and passed the $value and $bookmark_id |
|
310 |
* respectively. With the 'db' context, the 'pre_$field' filter is called and |
|
311 |
* passed the value. The 'display' context is the final context and has the |
|
312 |
* $field has the filter name and is passed the $value, $bookmark_id, and |
|
313 |
* $context respectively. |
|
314 |
* |
|
315 |
* @since 2.3.0 |
|
316 |
* |
|
317 |
* @param string $field The bookmark field |
|
318 |
* @param mixed $value The bookmark field value |
|
319 |
* @param int $bookmark_id Bookmark ID |
|
320 |
* @param string $context How to filter the field value. Either 'raw', 'edit', |
|
321 |
* 'attribute', 'js', 'db', or 'display' |
|
322 |
* @return mixed The filtered value |
|
323 |
*/ |
|
324 |
function sanitize_bookmark_field($field, $value, $bookmark_id, $context) { |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
325 |
switch ( $field ) { |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
326 |
case 'link_id' : // ints |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
327 |
case 'link_rating' : |
136 | 328 |
$value = (int) $value; |
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
329 |
break; |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
330 |
case 'link_category' : // array( ints ) |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
331 |
$value = array_map('absint', (array) $value); |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
332 |
// We return here so that the categories aren't filtered. |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
333 |
// The 'link_category' filter is for the name of a link category, not an array of a link's link categories |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
334 |
return $value; |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
335 |
break; |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
336 |
case 'link_visible' : // bool stored as Y|N |
136 | 337 |
$value = preg_replace('/[^YNyn]/', '', $value); |
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
338 |
break; |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
339 |
case 'link_target' : // "enum" |
136 | 340 |
$targets = array('_top', '_blank'); |
341 |
if ( ! in_array($value, $targets) ) |
|
342 |
$value = ''; |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
343 |
break; |
136 | 344 |
} |
345 |
||
346 |
if ( 'raw' == $context ) |
|
347 |
return $value; |
|
348 |
||
349 |
if ( 'edit' == $context ) { |
|
350 |
$value = apply_filters("edit_$field", $value, $bookmark_id); |
|
351 |
||
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
352 |
if ( 'link_notes' == $field ) { |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
353 |
$value = esc_html( $value ); // textarea_escaped |
136 | 354 |
} else { |
355 |
$value = esc_attr($value); |
|
356 |
} |
|
357 |
} else if ( 'db' == $context ) { |
|
358 |
$value = apply_filters("pre_$field", $value); |
|
359 |
} else { |
|
360 |
// Use display filters by default. |
|
361 |
$value = apply_filters($field, $value, $bookmark_id, $context); |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
362 |
|
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
363 |
if ( 'attribute' == $context ) |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
364 |
$value = esc_attr($value); |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
365 |
else if ( 'js' == $context ) |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
366 |
$value = esc_js($value); |
136 | 367 |
} |
368 |
||
369 |
return $value; |
|
370 |
} |
|
371 |
||
372 |
/** |
|
373 |
* Deletes bookmark cache |
|
374 |
* |
|
375 |
* @since 2.7.0 |
|
376 |
* @uses wp_cache_delete() Deletes the contents of 'get_bookmarks' |
|
377 |
*/ |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
378 |
function clean_bookmark_cache( $bookmark_id ) { |
136 | 379 |
wp_cache_delete( $bookmark_id, 'bookmark' ); |
380 |
wp_cache_delete( 'get_bookmarks', 'bookmark' ); |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
381 |
clean_object_term_cache( $bookmark_id, 'link'); |
136 | 382 |
} |