WordPress 3.0 beta 1 documentation kindly provided to you by Hay Kranen
| [ Index ] |
PHP Cross Reference of WordPress 3.0 beta 1 |
|
| [ Index ] [ Variables ] [ Functions ] [ Classes ] [ Constants ] [ Statistics ] | ||
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Link/Bookmark API 4 * 5 * @package WordPress 6 * @subpackage Bookmark 7 */ 8 9 /** 10 * Retrieve Bookmark data based on ID 11 * 12 * @since 2.1.0 13 * @uses $wpdb Database Object 14 * 15 * @param int $bookmark_id 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)); 36 $_bookmark->link_category = array_unique( wp_get_object_terms($_bookmark->link_id, 'link_category', array('fields' => 'ids')) ); 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. 104 * 'include' - Default is empty string (string). Include other categories 105 * separated by commas. 106 * 'exclude' - Default is empty string (string). Exclude other categories 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 = ''; 216 switch ($orderby) { 217 case 'length': 218 $length = ", CHAR_LENGTH(link_name) AS length"; 219 break; 220 case 'rand': 221 $orderby = 'rand()'; 222 break; 223 default: 224 $orderby = "link_" . $orderby; 225 } 226 227 if ( 'link_id' == $orderby ) 228 $orderby = "$wpdb->links.link_id"; 229 230 $visible = ''; 231 if ( $hide_invisible ) 232 $visible = "AND link_visible = 'Y'"; 233 234 $query = "SELECT * $length $recently_updated_test $get_updated FROM $wpdb->links $join WHERE 1=1 $visible $category_query"; 235 $query .= " $exclusions $inclusions $search"; 236 $query .= " ORDER BY $orderby $order"; 237 if ($limit != -1) 238 $query .= " LIMIT $limit"; 239 240 $results = $wpdb->get_results($query); 241 242 $cache[ $key ] = $results; 243 wp_cache_set( 'get_bookmarks', $cache, 'bookmark' ); 244 245 return apply_filters('get_bookmarks', $results, $r); 246 } 247 248 /** 249 * Sanitizes all bookmark fields 250 * 251 * @since 2.3.0 252 * 253 * @param object|array $bookmark Bookmark row 254 * @param string $context Optional, default is 'display'. How to filter the 255 * fields 256 * @return object|array Same type as $bookmark but with fields sanitized. 257 */ 258 function sanitize_bookmark($bookmark, $context = 'display') { 259 $fields = array('link_id', 'link_url', 'link_name', 'link_image', 'link_target', 'link_category', 260 'link_description', 'link_visible', 'link_owner', 'link_rating', 'link_updated', 261 'link_rel', 'link_notes', 'link_rss', ); 262 263 if ( is_object($bookmark) ) { 264 $do_object = true; 265 $link_id = $bookmark->link_id; 266 } else { 267 $do_object = false; 268 $link_id = $bookmark['link_id']; 269 } 270 271 foreach ( $fields as $field ) { 272 if ( $do_object ) { 273 if ( isset($bookmark->$field) ) 274 $bookmark->$field = sanitize_bookmark_field($field, $bookmark->$field, $link_id, $context); 275 } else { 276 if ( isset($bookmark[$field]) ) 277 $bookmark[$field] = sanitize_bookmark_field($field, $bookmark[$field], $link_id, $context); 278 } 279 } 280 281 return $bookmark; 282 } 283 284 /** 285 * Sanitizes a bookmark field 286 * 287 * Sanitizes the bookmark fields based on what the field name is. If the field 288 * has a strict value set, then it will be tested for that, else a more generic 289 * filtering is applied. After the more strict filter is applied, if the 290 * $context is 'raw' then the value is immediately return. 291 * 292 * Hooks exist for the more generic cases. With the 'edit' context, the 293 * 'edit_$field' filter will be called and passed the $value and $bookmark_id 294 * respectively. With the 'db' context, the 'pre_$field' filter is called and 295 * passed the value. The 'display' context is the final context and has the 296 * $field has the filter name and is passed the $value, $bookmark_id, and 297 * $context respectively. 298 * 299 * @since 2.3.0 300 * 301 * @param string $field The bookmark field 302 * @param mixed $value The bookmark field value 303 * @param int $bookmark_id Bookmark ID 304 * @param string $context How to filter the field value. Either 'raw', 'edit', 305 * 'attribute', 'js', 'db', or 'display' 306 * @return mixed The filtered value 307 */ 308 function sanitize_bookmark_field($field, $value, $bookmark_id, $context) { 309 $int_fields = array('link_id', 'link_rating'); 310 if ( in_array($field, $int_fields) ) 311 $value = (int) $value; 312 313 // Fields which contain arrays of ints. 314 $array_int_fields = array( 'link_category' ); 315 if ( in_array($field, $array_int_fields) ) { 316 $value = array_map( 'absint', $value); 317 return $value; 318 } 319 320 $yesno = array('link_visible'); 321 if ( in_array($field, $yesno) ) 322 $value = preg_replace('/[^YNyn]/', '', $value); 323 324 if ( 'link_target' == $field ) { 325 $targets = array('_top', '_blank'); 326 if ( ! in_array($value, $targets) ) 327 $value = ''; 328 } 329 330 if ( 'raw' == $context ) 331 return $value; 332 333 if ( 'edit' == $context ) { 334 $format_to_edit = array('link_notes'); 335 $value = apply_filters("edit_$field", $value, $bookmark_id); 336 337 if ( in_array($field, $format_to_edit) ) { 338 $value = format_to_edit($value); 339 } else { 340 $value = esc_attr($value); 341 } 342 } else if ( 'db' == $context ) { 343 $value = apply_filters("pre_$field", $value); 344 } else { 345 // Use display filters by default. 346 $value = apply_filters($field, $value, $bookmark_id, $context); 347 } 348 349 if ( 'attribute' == $context ) 350 $value = esc_attr($value); 351 else if ( 'js' == $context ) 352 $value = esc_js($value); 353 354 return $value; 355 } 356 357 /** 358 * Deletes bookmark cache 359 * 360 * @since 2.7.0 361 * @uses wp_cache_delete() Deletes the contents of 'get_bookmarks' 362 */ 363 function clean_bookmark_cache($bookmark_id) { 364 wp_cache_delete( $bookmark_id, 'bookmark' ); 365 wp_cache_delete( 'get_bookmarks', 'bookmark' ); 366 } 367 368 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Apr 5 14:26:09 2010 | Cross-referenced by PHPXref 0.7 |