2003-12-18 11:12:34 +01:00
|
|
|
<?php
|
|
|
|
|
2006-06-17 01:35:48 +02:00
|
|
|
function _walk_bookmarks($bookmarks, $args = '' ) {
|
2007-05-11 05:10:05 +02:00
|
|
|
$defaults = array(
|
2007-09-04 01:32:58 +02:00
|
|
|
'show_updated' => 0, 'show_description' => 0,
|
|
|
|
'show_images' => 1, 'before' => '<li>',
|
2007-05-11 05:10:05 +02:00
|
|
|
'after' => '</li>', 'between' => "\n"
|
|
|
|
);
|
2007-06-14 04:25:30 +02:00
|
|
|
|
2007-05-11 05:10:05 +02:00
|
|
|
$r = wp_parse_args( $args, $defaults );
|
2007-06-15 00:45:40 +02:00
|
|
|
extract( $r, EXTR_SKIP );
|
2006-06-17 01:35:48 +02:00
|
|
|
|
|
|
|
foreach ( (array) $bookmarks as $bookmark ) {
|
2006-08-22 11:24:31 +02:00
|
|
|
if ( !isset($bookmark->recently_updated) )
|
|
|
|
$bookmark->recently_updated = false;
|
|
|
|
$output .= $before;
|
|
|
|
if ( $show_updated && $bookmark->recently_updated )
|
2006-08-30 23:46:31 +02:00
|
|
|
$output .= get_option('links_recently_updated_prepend');
|
2006-06-17 01:35:48 +02:00
|
|
|
|
|
|
|
$the_link = '#';
|
2006-08-22 11:24:31 +02:00
|
|
|
if ( !empty($bookmark->link_url) )
|
2007-03-17 09:46:59 +01:00
|
|
|
$the_link = clean_url($bookmark->link_url);
|
2006-06-17 01:35:48 +02:00
|
|
|
|
|
|
|
$rel = $bookmark->link_rel;
|
2006-08-22 11:24:31 +02:00
|
|
|
if ( '' != $rel )
|
2006-06-17 01:35:48 +02:00
|
|
|
$rel = ' rel="' . $rel . '"';
|
|
|
|
|
2007-09-24 03:48:36 +02:00
|
|
|
$desc = attribute_escape(sanitize_bookmark_field('link_description', $bookmark->link_description, $bookmark->link_id, 'display'));
|
|
|
|
$name = attribute_escape(sanitize_bookmark_field('link_name', $bookmark->link_name, $bookmark->link_id, 'display'));
|
2007-03-10 02:13:49 +01:00
|
|
|
$title = $desc;
|
2006-06-17 01:35:48 +02:00
|
|
|
|
2006-08-22 11:24:31 +02:00
|
|
|
if ( $show_updated )
|
2006-09-05 20:52:24 +02:00
|
|
|
if ( '00' != substr($bookmark->link_updated_f, 0, 2) ) {
|
|
|
|
$title .= ' ';
|
|
|
|
$title .= sprintf(__('Last updated: %s'), date(get_option('links_updated_date_format'), $bookmark->link_updated_f + (get_option('gmt_offset') * 3600)));
|
|
|
|
$title .= ')';
|
|
|
|
}
|
2006-06-17 01:35:48 +02:00
|
|
|
|
2006-08-22 11:24:31 +02:00
|
|
|
if ( '' != $title )
|
2006-06-17 01:35:48 +02:00
|
|
|
$title = ' title="' . $title . '"';
|
|
|
|
|
|
|
|
$alt = ' alt="' . $name . '"';
|
|
|
|
|
|
|
|
$target = $bookmark->link_target;
|
2006-08-22 11:24:31 +02:00
|
|
|
if ( '' != $target )
|
2006-06-17 01:35:48 +02:00
|
|
|
$target = ' target="' . $target . '"';
|
|
|
|
|
|
|
|
$output .= '<a href="' . $the_link . '"' . $rel . $title . $target. '>';
|
|
|
|
|
2006-08-22 11:24:31 +02:00
|
|
|
if ( $bookmark->link_image != null && $show_images ) {
|
|
|
|
if ( strpos($bookmark->link_image, 'http') !== false )
|
2006-06-17 01:35:48 +02:00
|
|
|
$output .= "<img src=\"$bookmark->link_image\" $alt $title />";
|
|
|
|
else // If it's a relative path
|
2006-08-30 23:46:31 +02:00
|
|
|
$output .= "<img src=\"" . get_option('siteurl') . "$bookmark->link_image\" $alt $title />";
|
2006-06-17 01:35:48 +02:00
|
|
|
} else {
|
|
|
|
$output .= $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
$output .= '</a>';
|
|
|
|
|
2006-08-22 11:24:31 +02:00
|
|
|
if ( $show_updated && $bookmark->recently_updated )
|
2006-08-30 23:46:31 +02:00
|
|
|
$output .= get_option('links_recently_updated_append');
|
2006-06-17 01:35:48 +02:00
|
|
|
|
2006-08-22 11:24:31 +02:00
|
|
|
if ( $show_description && '' != $desc )
|
2006-06-17 01:35:48 +02:00
|
|
|
$output .= $between . $desc;
|
2007-06-14 04:25:30 +02:00
|
|
|
|
2007-03-31 21:43:49 +02:00
|
|
|
if ($show_rating) {
|
|
|
|
$output .= $between . get_linkrating($bookmark);
|
|
|
|
}
|
2007-06-14 04:25:30 +02:00
|
|
|
|
2006-06-17 01:35:48 +02:00
|
|
|
$output .= "$after\n";
|
|
|
|
} // end while
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
2006-03-03 22:38:36 +01:00
|
|
|
function wp_list_bookmarks($args = '') {
|
2007-05-11 05:10:05 +02:00
|
|
|
$defaults = array(
|
2007-09-04 01:32:58 +02:00
|
|
|
'orderby' => 'name', 'order' => 'ASC',
|
|
|
|
'limit' => -1, 'category' => '',
|
|
|
|
'category_name' => '', 'hide_invisible' => 1,
|
|
|
|
'show_updated' => 0, 'echo' => 1,
|
|
|
|
'categorize' => 1, 'title_li' => __('Bookmarks'),
|
|
|
|
'title_before' => '<h2>', 'title_after' => '</h2>',
|
|
|
|
'category_orderby' => 'name', 'category_order' => 'ASC',
|
|
|
|
'class' => 'linkcat', 'category_before' => '<li id="%id" class="%class">',
|
2007-05-11 05:10:05 +02:00
|
|
|
'category_after' => '</li>'
|
|
|
|
);
|
2007-06-14 04:25:30 +02:00
|
|
|
|
2007-05-11 05:10:05 +02:00
|
|
|
$r = wp_parse_args( $args, $defaults );
|
2007-06-15 00:45:40 +02:00
|
|
|
extract( $r, EXTR_SKIP );
|
2006-08-22 11:24:31 +02:00
|
|
|
|
2006-06-17 01:35:48 +02:00
|
|
|
$output = '';
|
|
|
|
|
|
|
|
if ( $categorize ) {
|
2006-10-02 20:01:07 +02:00
|
|
|
//Split the bookmarks into ul's for each category
|
2007-05-27 19:21:04 +02:00
|
|
|
$cats = get_terms('link_category', "category_name=$category_name&include=$category&orderby=$category_orderby&order=$category_order&hierarchical=0");
|
2006-10-02 20:01:07 +02:00
|
|
|
|
2006-06-17 01:35:48 +02:00
|
|
|
foreach ( (array) $cats as $cat ) {
|
2007-05-23 20:59:12 +02:00
|
|
|
$params = array_merge($r, array('category'=>$cat->term_id));
|
2007-03-04 02:59:57 +01:00
|
|
|
$bookmarks = get_bookmarks($params);
|
2006-06-17 01:35:48 +02:00
|
|
|
if ( empty($bookmarks) )
|
|
|
|
continue;
|
2007-05-23 20:59:12 +02:00
|
|
|
$output .= str_replace(array('%id', '%class'), array("linkcat-$cat->term_id", $class), $category_before);
|
|
|
|
$catname = apply_filters( "link_category", $cat->name );
|
2007-03-10 02:13:49 +01:00
|
|
|
$output .= "$title_before$catname$title_after\n\t<ul>\n";
|
2006-06-17 01:35:48 +02:00
|
|
|
$output .= _walk_bookmarks($bookmarks, $r);
|
2006-11-02 23:12:13 +01:00
|
|
|
$output .= "\n\t</ul>\n$category_after\n";
|
2006-06-17 01:35:48 +02:00
|
|
|
}
|
2006-10-02 20:01:07 +02:00
|
|
|
} else {
|
|
|
|
//output one single list using title_li for the title
|
2007-03-04 02:59:57 +01:00
|
|
|
$bookmarks = get_bookmarks($r);
|
2007-02-27 16:24:54 +01:00
|
|
|
|
2006-10-02 20:01:07 +02:00
|
|
|
if ( !empty($bookmarks) ) {
|
2007-01-25 03:02:21 +01:00
|
|
|
if ( !empty( $title_li ) ){
|
|
|
|
$output .= str_replace(array('%id', '%class'), array("linkcat-$category", $class), $category_before);
|
|
|
|
$output .= "$title_before$title_li$title_after\n\t<ul>\n";
|
|
|
|
$output .= _walk_bookmarks($bookmarks, $r);
|
|
|
|
$output .= "\n\t</ul>\n$category_after\n";
|
|
|
|
} else {
|
|
|
|
$output .= _walk_bookmarks($bookmarks, $r);
|
|
|
|
}
|
2006-10-02 20:01:07 +02:00
|
|
|
}
|
2006-06-17 01:35:48 +02:00
|
|
|
}
|
|
|
|
|
2006-08-22 11:24:31 +02:00
|
|
|
if ( !$echo )
|
|
|
|
return $output;
|
|
|
|
echo $output;
|
2006-03-03 22:38:36 +01:00
|
|
|
}
|
|
|
|
|
2006-10-02 20:01:07 +02:00
|
|
|
?>
|