Moved wp-links files to wp-includes or wp-images where appropiate. Updated necessary paths.
git-svn-id: http://svn.automattic.com/wordpress/trunk@630 1a063a9b-81f0-0310-95a4-ce76da25c4cd
|
@ -3,7 +3,6 @@
|
|||
// Copyright (C) 2002 Mike Little -- mike@zed1.com
|
||||
|
||||
require_once('../wp-config.php');
|
||||
include_once("../wp-links/links.php");
|
||||
|
||||
$parent_file = 'link-manager.php';
|
||||
$title = 'Import Blogroll';
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
// Copyright (C) 2002, 2003 Mike Little -- mike@zed1.com
|
||||
|
||||
require_once('../wp-config.php');
|
||||
require_once("../wp-links/links.php");
|
||||
|
||||
$title = 'Manage Links';
|
||||
$this_file = 'link-manager.php';
|
||||
|
|
After Width: | Height: | Size: 882 B |
After Width: | Height: | Size: 909 B |
After Width: | Height: | Size: 918 B |
After Width: | Height: | Size: 926 B |
After Width: | Height: | Size: 950 B |
After Width: | Height: | Size: 960 B |
After Width: | Height: | Size: 967 B |
After Width: | Height: | Size: 989 B |
After Width: | Height: | Size: 996 B |
After Width: | Height: | Size: 981 B |
After Width: | Height: | Size: 895 B |
After Width: | Height: | Size: 334 B |
|
@ -0,0 +1,172 @@
|
|||
<?php
|
||||
// Links weblogs.com grabber
|
||||
// Copyright (C) 2003 Mike Little -- mike@zed1.com
|
||||
|
||||
require_once('wp-config.php');
|
||||
|
||||
// globals to hold state
|
||||
$updated_timestamp = 0;
|
||||
$all_links = array();
|
||||
|
||||
/**
|
||||
** preload_links()
|
||||
** Pre-load the visible, non-blank, links into an associative array $all_links
|
||||
** key is url, value is array of link_id and update_time
|
||||
** Note: update time is initialised to 0. That way we only have to update (in
|
||||
** the db) the ones which have been updated (on weblogs.com).
|
||||
**/
|
||||
function preload_links() {
|
||||
global $tablelinks, $all_links, $wpdb;
|
||||
$links = $wpdb->get_results("SELECT link_id, link_url FROM $tablelinks WHERE link_visible = 'Y' AND link_url <> ''");
|
||||
foreach ($links as $link) {
|
||||
$link_url = transform_url($link->link_url);
|
||||
$all_links[$link_url] = array($link->link_id, 0);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
** update_links()
|
||||
** Update in the db the links which have been updated ($all_links[url][1] != 0)
|
||||
**/
|
||||
function update_links() {
|
||||
global $tablelinks, $all_links, $wpdb;
|
||||
reset($all_links);
|
||||
while (list($id, $val) = each($all_links)) {
|
||||
if ($val[1]) {
|
||||
$wpdb->query("UPDATE $tablelinks SET link_updated = '$val[1]' WHERE link_id = $val[0]");
|
||||
}
|
||||
} // end while
|
||||
}
|
||||
|
||||
/**
|
||||
** get_weblogs_updatedfile()
|
||||
** Retrieves and caches a copy of the weblogs.com changed blogs xml file.
|
||||
** If the file exists check it's age, get new copy if old.
|
||||
** If a new or updated file has been written return true (needs processing)
|
||||
** otherwise return false (nothing to do)
|
||||
**/
|
||||
function get_weblogs_updatedfile() {
|
||||
global $ignore_weblogs_cache,ABSPATH;
|
||||
$update = false;
|
||||
|
||||
if ($ignore_weblogs_cache) {
|
||||
$update = true;
|
||||
} else {
|
||||
if (file_exists(get_settings('weblogs_cache_file'))) {
|
||||
// is it old?
|
||||
$modtime = filemtime(get_settings('weblogs_cache_file'));
|
||||
if ((time() - $modtime) > (get_settings('weblogs_cacheminutes') * 60)) {
|
||||
$update = true;
|
||||
}
|
||||
} else { // doesn't exist
|
||||
$update = true;
|
||||
}
|
||||
}
|
||||
|
||||
if ($update) {
|
||||
// get a new copy
|
||||
$a = @file(get_settings('weblogs_xml_url'));
|
||||
if ($a != false && count($a) && $a[0]) {
|
||||
$contents = implode('', $a);
|
||||
|
||||
// Clean up the input, because weblogs.com doesn't output clean XML
|
||||
$contents = preg_replace("/'/",''',$contents);
|
||||
$contents = preg_replace('|[^[:space:][:punct:][:alpha:][:digit:]]|','',$contents);
|
||||
|
||||
$cachefp = fopen(get_settings('weblogs_cache_file'), "w");
|
||||
fwrite($cachefp, $contents);
|
||||
fclose($cachefp);
|
||||
} else {
|
||||
return false; //don't try to process
|
||||
}
|
||||
}
|
||||
return $update;
|
||||
}
|
||||
|
||||
/**
|
||||
** startElement()
|
||||
** Callback function. Called at the start of a new xml tag.
|
||||
**/
|
||||
function startElement($parser, $tagName, $attrs) {
|
||||
global $updated_timestamp, $all_links;
|
||||
if ($tagName == 'WEBLOGUPDATES') {
|
||||
//convert 'updated' into php date variable
|
||||
$updated_timestamp = strtotime($attrs['UPDATED']);
|
||||
//echo('got timestamp of ' . gmdate('F j, Y, H:i:s', $updated_timestamp) . "\n");
|
||||
} else if ($tagName == 'WEBLOG') {
|
||||
// is this url in our links?
|
||||
$link_url = transform_url($attrs['URL']);
|
||||
if (isset($all_links[$link_url])) {
|
||||
$all_links[$link_url][1] = date('YmdHis', $updated_timestamp - $attrs['WHEN']);
|
||||
//echo('set link id ' . $all_links[$link_url][0] . ' to date ' . $all_links[$link_url][1] . "\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
** endElement()
|
||||
** Callback function. Called at the end of an xml tag.
|
||||
**/
|
||||
function endElement($parser, $tagName) {
|
||||
// nothing to do.
|
||||
}
|
||||
|
||||
/**
|
||||
** transform_url()
|
||||
** Transforms a url to a minimal identifier.
|
||||
**
|
||||
** Remove www, remove index.* or default.*, remove
|
||||
** trailing slash
|
||||
**/
|
||||
function transform_url($url) {
|
||||
global ABSPATH;
|
||||
//echo("transform_url(): $url ");
|
||||
$url = str_replace('www.', '', $url);
|
||||
$url = str_replace('WWW.', '', $url);
|
||||
$url = preg_replace('/(?:index|default)\.[a-z]{2,}/i', '', $url);
|
||||
if (substr($url, -1, 1) == '/') {
|
||||
$url = substr($url, 0, -1);
|
||||
}
|
||||
//echo(" now equals $url\n");
|
||||
return $url;
|
||||
} // end transform_url
|
||||
|
||||
// get/update the cache file.
|
||||
// true return means new copy
|
||||
if (get_weblogs_updatedfile()) {
|
||||
//echo('<pre>');
|
||||
// pre-load the links
|
||||
preload_links();
|
||||
|
||||
// Create an XML parser
|
||||
$xml_parser = xml_parser_create();
|
||||
|
||||
// Set the functions to handle opening and closing tags
|
||||
xml_set_element_handler($xml_parser, "startElement", "endElement");
|
||||
|
||||
// Open the XML file for reading
|
||||
$fp = fopen(ABSPATH.get_settings('weblogs_cache_file'), "r")
|
||||
or die("Error reading XML data.");
|
||||
|
||||
// Read the XML file 16KB at a time
|
||||
while ($data = fread($fp, 16384)) {
|
||||
// Parse each 4KB chunk with the XML parser created above
|
||||
xml_parse($xml_parser, $data, feof($fp))
|
||||
or die(sprintf("XML error: %s at line %d",
|
||||
xml_error_string(xml_get_error_code($xml_parser)),
|
||||
xml_get_current_line_number($xml_parser)));
|
||||
}
|
||||
|
||||
// Close the XML file
|
||||
fclose($fp);
|
||||
|
||||
// Free up memory used by the XML parser
|
||||
xml_parser_free($xml_parser);
|
||||
|
||||
// now update the db with latest times
|
||||
update_links();
|
||||
|
||||
//echo('</pre>');
|
||||
} // end if updated cache file
|
||||
|
||||
?>
|
|
@ -0,0 +1,577 @@
|
|||
<?php
|
||||
|
||||
/** function get_linksbyname()
|
||||
** Gets the links associated with category 'cat_name'.
|
||||
** Parameters:
|
||||
** cat_name (default 'noname') - The category name to use. If no
|
||||
** match is found uses all
|
||||
** before (default '') - the html to output before the link
|
||||
** after (default '<br />') - the html to output after the link
|
||||
** between (default ' ') - the html to output between the link/image
|
||||
** and it's description. Not used if no image or show_images == true
|
||||
** show_images (default true) - whether to show images (if defined).
|
||||
** orderby (default 'id') - the order to output the links. E.g. 'id', 'name',
|
||||
** 'url', 'description' or 'rating'. Or maybe owner. If you start the
|
||||
** name with an underscore the order will be reversed.
|
||||
** You can also specify 'rand' as the order which will return links in a
|
||||
** random order.
|
||||
** show_description (default true) - whether to show the description if
|
||||
** show_images=false/not defined
|
||||
** show_rating (default false) - show rating stars/chars
|
||||
** limit (default -1) - Limit to X entries. If not specified, all entries
|
||||
** are shown.
|
||||
** show_updated (default 0) - whether to show last updated timestamp
|
||||
*/
|
||||
function get_linksbyname($cat_name = "noname", $before = '', $after = '<br />',
|
||||
$between = " ", $show_images = true, $orderby = 'id',
|
||||
$show_description = true, $show_rating = false,
|
||||
$limit = -1, $show_updated = 0) {
|
||||
global $tablelinkcategories, $wpdb;
|
||||
$cat_id = -1;
|
||||
$results = $wpdb->get_results("SELECT cat_id FROM $tablelinkcategories WHERE cat_name='$cat_name'");
|
||||
if ($results) {
|
||||
foreach ($results as $result) {
|
||||
$cat_id = $result->cat_id;
|
||||
}
|
||||
}
|
||||
get_links($cat_id, $before, $after, $between, $show_images, $orderby,
|
||||
$show_description, $show_rating, $limit, $show_updated);
|
||||
}
|
||||
|
||||
function bool_from_yn($yn) {
|
||||
if ($yn == 'Y') return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/** function wp_get_linksbyname()
|
||||
** Gets the links associated with the named category.
|
||||
** Parameters:
|
||||
** category (no default) - The category to use.
|
||||
**/
|
||||
function wp_get_linksbyname($category) {
|
||||
global $wpdb, $tablelinkcategories;
|
||||
|
||||
$cat = $wpdb->get_row("SELECT cat_id, cat_name, auto_toggle, show_images, show_description, "
|
||||
. " show_rating, show_updated, sort_order, sort_desc, text_before_link, text_after_link, "
|
||||
. " text_after_all, list_limit FROM $tablelinkcategories WHERE cat_name='$category'");
|
||||
if ($cat) {
|
||||
if ($cat->sort_desc == 'Y') {
|
||||
$cat->sort_order = '_'.$cat->sort_order;
|
||||
}
|
||||
get_links($cat->cat_id, $cat->text_before_link, $cat->text_after_all,
|
||||
$cat->text_after_link, bool_from_yn($cat->show_images), $cat->sort_order,
|
||||
bool_from_yn($cat->show_description), bool_from_yn($cat->show_rating),
|
||||
$cat->list_limit, bool_from_yn($cat->show_updated));
|
||||
}
|
||||
} // end wp_get_linksbyname
|
||||
|
||||
/** function wp_get_links()
|
||||
** Gets the links associated with category n.
|
||||
** Parameters:
|
||||
** category (no default) - The category to use.
|
||||
**/
|
||||
function wp_get_links($category) {
|
||||
global $wpdb, $tablelinkcategories;
|
||||
|
||||
$cat = $wpdb->get_row("SELECT cat_id, cat_name, auto_toggle, show_images, show_description, "
|
||||
. " show_rating, show_updated, sort_order, sort_desc, text_before_link, text_after_link, "
|
||||
. " text_after_all, list_limit FROM $tablelinkcategories WHERE cat_id=$category");
|
||||
if ($cat) {
|
||||
if ($cat->sort_desc == 'Y') {
|
||||
$cat->sort_order = '_'.$cat->sort_order;
|
||||
}
|
||||
get_links($cat->cat_id, $cat->text_before_link, $cat->text_after_all,
|
||||
$cat->text_after_link, bool_from_yn($cat->show_images), $cat->sort_order,
|
||||
bool_from_yn($cat->show_description), bool_from_yn($cat->show_rating),
|
||||
$cat->list_limit, bool_from_yn($cat->show_updated));
|
||||
}
|
||||
} // end wp_get_links
|
||||
|
||||
/** function get_links()
|
||||
** Gets the links associated with category n.
|
||||
** Parameters:
|
||||
** category (default -1) - The category to use. If no category supplied
|
||||
** uses all
|
||||
** before (default '') - the html to output before the link
|
||||
** after (default '<br />') - the html to output after the link
|
||||
** between (default ' ') - the html to output between the link/image
|
||||
** and it's description. Not used if no image or show_images == true
|
||||
** show_images (default true) - whether to show images (if defined).
|
||||
** orderby (default 'id') - the order to output the links. E.g. 'id', 'name',
|
||||
** 'url', 'description', or 'rating'. Or maybe owner. If you start the
|
||||
** name with an underscore the order will be reversed.
|
||||
** You can also specify 'rand' as the order which will return links in a
|
||||
** random order.
|
||||
** show_description (default true) - whether to show the description if
|
||||
** show_images=false/not defined .
|
||||
** show_rating (default false) - show rating stars/chars
|
||||
** limit (default -1) - Limit to X entries. If not specified, all entries
|
||||
** are shown.
|
||||
** show_updated (default 0) - whether to show last updated timestamp
|
||||
*/
|
||||
function get_links($category = -1, $before = '', $after = '<br />',
|
||||
$between = ' ', $show_images = true, $orderby = 'name',
|
||||
$show_description = true, $show_rating = false,
|
||||
$limit = -1, $show_updated = 1, $echo = true) {
|
||||
|
||||
global $tablelinks, $wpdb;
|
||||
|
||||
$direction = ' ASC';
|
||||
$category_query = "";
|
||||
if ($category != -1) {
|
||||
$category_query = " AND link_category = $category ";
|
||||
}
|
||||
if (get_settings('links_recently_updated_time')) {
|
||||
$recently_updated_test = ", IF (DATE_ADD(link_updated, INTERVAL ".get_settings('links_recently_updated_time')." MINUTE) >= NOW(), 1,0) as recently_updated ";
|
||||
}
|
||||
if ($show_updated) {
|
||||
$get_updated = ", UNIX_TIMESTAMP(link_updated) AS link_updated_f ";
|
||||
}
|
||||
|
||||
$orderby=strtolower($orderby);
|
||||
if ($orderby == '')
|
||||
$orderby = 'id';
|
||||
if (substr($orderby,0,1) == '_') {
|
||||
$direction = ' DESC';
|
||||
$orderby = substr($orderby,1);
|
||||
}
|
||||
|
||||
switch($orderby) {
|
||||
case 'length':
|
||||
$length = ",CHAR_LENGTH(link_name) AS length";
|
||||
break;
|
||||
case 'rand':
|
||||
$orderby = 'rand()';
|
||||
break;
|
||||
default:
|
||||
$orderby = " link_" . $orderby;
|
||||
}
|
||||
|
||||
if (!isset($length)) {
|
||||
$length = "";
|
||||
}
|
||||
|
||||
$sql = "SELECT link_url, link_name, link_image, link_target,
|
||||
link_description, link_rating, link_rel $length $recently_updated_test $get_updated
|
||||
FROM $tablelinks
|
||||
WHERE link_visible = 'Y' " .
|
||||
$category_query;
|
||||
$sql .= ' ORDER BY ' . $orderby;
|
||||
$sql .= $direction;
|
||||
/* The next 2 lines implement LIMIT TO processing */
|
||||
if ($limit != -1)
|
||||
$sql .= " LIMIT $limit";
|
||||
//echo $sql;
|
||||
$results = $wpdb->get_results($sql);
|
||||
if (!$results) {
|
||||
return;
|
||||
}
|
||||
foreach ($results as $row) {
|
||||
echo($before);
|
||||
if ($show_updated && $row->recently_updated) {
|
||||
echo get_settings('links_recently_updated_prepend');
|
||||
}
|
||||
$the_link = '#';
|
||||
if (($row->link_url != null) && ($row->link_url != '')) {
|
||||
$the_link = htmlspecialchars(stripslashes($row->link_url));
|
||||
}
|
||||
$rel = stripslashes($row->link_rel);
|
||||
if ($rel != '') {
|
||||
$rel = " rel='$rel'";
|
||||
}
|
||||
$desc = htmlspecialchars(stripslashes($row->link_description), ENT_QUOTES);
|
||||
if ($show_updated) {
|
||||
if (substr($row->link_updated_f,0,2) != '00') {
|
||||
$desc .= ' (Last updated ' . date(get_settings('links_updated_date_format'), $row->link_updated_f + (get_settings('time_difference') * 3600)) .')';
|
||||
}
|
||||
}
|
||||
if ('' != $desc) {
|
||||
$desc = " title='$desc'";
|
||||
}
|
||||
|
||||
$target = $row->link_target;
|
||||
if ('' != $target) {
|
||||
$target = " target='$target'";
|
||||
}
|
||||
echo("<a href='$the_link'");
|
||||
echo($rel . $desc . $target);
|
||||
echo('>');
|
||||
if (($row->link_image != null) && $show_images) {
|
||||
echo("<img src=\"$row->link_image\" border=\"0\" alt=\"" .
|
||||
stripslashes($row->link_name) . "\" title=\"" .
|
||||
stripslashes($row->link_description) . "\" />");
|
||||
} else {
|
||||
echo(stripslashes($row->link_name));
|
||||
}
|
||||
echo('</a>');
|
||||
if ($show_updated && $row->recently_updated) {
|
||||
echo get_settings('links_recently_updated_append');
|
||||
}
|
||||
|
||||
if ($show_description && ($row->link_description != '')) {
|
||||
echo($between.stripslashes($row->link_description));
|
||||
}
|
||||
|
||||
// now do the rating
|
||||
if ($show_rating) {
|
||||
|
||||
if (get_settings('links_rating_type') == 'number') {
|
||||
if (($row->link_rating != 0) || (get_settings('links_rating_ignore_zero') != 1)) {
|
||||
echo($between." $row->link_rating\n");
|
||||
}
|
||||
} else if (get_settings('links_rating_type') == 'char') {
|
||||
echo($between);
|
||||
for ($r = $row->link_rating; $r > 0; $r--) {
|
||||
echo(get_settings('links_rating_char'));
|
||||
}
|
||||
} else if (get_settings('links_rating_type') == 'image') {
|
||||
echo($between);
|
||||
if (get_settings('links_rating_single_image')) {
|
||||
for ($r = $row->link_rating; $r > 0; $r--) {
|
||||
echo(' <img src="'.get_settings('links_rating_image0').'" alt="' .
|
||||
$row->link_rating.'" />'."\n");
|
||||
}
|
||||
} else {
|
||||
if (($row->link_rating != 0) || (get_settings('links_rating_ignore_zero') != 1)) {
|
||||
$b = 'links_rating_image'.$row->link_rating;
|
||||
echo(' <img src="' .
|
||||
get_settings($b).'" alt="' .
|
||||
$row->link_rating.'" />'."\n");
|
||||
}
|
||||
}
|
||||
} // end if image
|
||||
} // end if show_rating
|
||||
echo("$after\n");
|
||||
} // end while
|
||||
}
|
||||
|
||||
|
||||
/** function get_linkobjectsbyname()
|
||||
** Gets an array of link objects associated with category 'cat_name'.
|
||||
** Parameters:
|
||||
** cat_name (default 'noname') - The category name to use. If no
|
||||
** match is found uses all
|
||||
** orderby (default 'id') - the order to output the links. E.g. 'id', 'name',
|
||||
** 'url', 'description', or 'rating'. Or maybe owner. If you start the
|
||||
** name with an underscore the order will be reversed.
|
||||
** You can also specify 'rand' as the order which will return links in a
|
||||
** random order.
|
||||
** limit (default -1) - Limit to X entries. If not specified, all entries
|
||||
** are shown.
|
||||
**
|
||||
** Use this like:
|
||||
** $links = get_linkobjectsbyname('fred');
|
||||
** foreach ($links as $link) {
|
||||
** echo '<li>'.stripslashes($link->link_name).'</li>';
|
||||
** }
|
||||
**/
|
||||
function get_linkobjectsbyname($cat_name = "noname" , $orderby = 'name', $limit = -1) {
|
||||
global $tablelinkcategories, $wpdb;
|
||||
$cat_id = -1;
|
||||
$results = $wpdb->get_results("SELECT cat_id FROM $tablelinkcategories WHERE cat_name='$cat_name'");
|
||||
if ($results) {
|
||||
foreach ($results as $result) {
|
||||
$cat_id = $result->cat_id;
|
||||
}
|
||||
}
|
||||
return get_linkobjects($cat_id, $orderby, $limit);
|
||||
}
|
||||
|
||||
/** function get_linkobjects()
|
||||
** Gets an array of link objects associated with category n.
|
||||
** Parameters:
|
||||
** category (default -1) - The category to use. If no category supplied
|
||||
** uses all
|
||||
** orderby (default 'id') - the order to output the links. E.g. 'id', 'name',
|
||||
** 'url', 'description', or 'rating'. Or maybe owner. If you start the
|
||||
** name with an underscore the order will be reversed.
|
||||
** You can also specify 'rand' as the order which will return links in a
|
||||
** random order.
|
||||
** limit (default -1) - Limit to X entries. If not specified, all entries
|
||||
** are shown.
|
||||
**
|
||||
** Use this like:
|
||||
** $links = get_linkobjects(1);
|
||||
** if ($links) {
|
||||
** foreach ($links as $link) {
|
||||
** echo '<li>'.$link->link_name.'<br />'.$link->link_description.'</li>';
|
||||
** }
|
||||
** }
|
||||
** Fields are:
|
||||
** link_id
|
||||
** link_url
|
||||
** link_name
|
||||
** link_image
|
||||
** link_target
|
||||
** link_category
|
||||
** link_description
|
||||
** link_visible
|
||||
** link_owner
|
||||
** link_rating
|
||||
** link_updated
|
||||
** link_rel
|
||||
** link_notes
|
||||
**/
|
||||
function get_linkobjects($category = -1, $orderby = 'name', $limit = -1) {
|
||||
global $tablelinks, $wpdb;
|
||||
|
||||
$sql = "SELECT * FROM $tablelinks WHERE link_visible = 'Y'";
|
||||
if ($category != -1) {
|
||||
$sql .= " AND link_category = $category ";
|
||||
}
|
||||
if ($orderby == '')
|
||||
$orderby = 'id';
|
||||
if (substr($orderby,0,1) == '_') {
|
||||
$direction = ' DESC';
|
||||
$orderby = substr($orderby,1);
|
||||
}
|
||||
if (strcasecmp('rand',$orderby) == 0) {
|
||||
$orderby = 'rand()';
|
||||
} else {
|
||||
$orderby = " link_" . $orderby;
|
||||
}
|
||||
$sql .= ' ORDER BY ' . $orderby;
|
||||
$sql .= $direction;
|
||||
/* The next 2 lines implement LIMIT TO processing */
|
||||
if ($limit != -1)
|
||||
$sql .= " LIMIT $limit";
|
||||
|
||||
$results = $wpdb->get_results($sql);
|
||||
if ($results) {
|
||||
foreach ($results as $result) {
|
||||
$result->link_url = stripslashes($result->link_url);
|
||||
$result->link_name = stripslashes($result->link_name);
|
||||
$result->link_description = stripslashes($result->link_description);
|
||||
$result->link_notes = stripslashes($result->link_notes);
|
||||
$newresults[] = $result;
|
||||
}
|
||||
}
|
||||
return $newresults;
|
||||
}
|
||||
|
||||
/** function get_linkrating()
|
||||
** Returns the appropriate html for the link rating based on the configuration.
|
||||
** Parameters:
|
||||
** link - The link object returned from get_linkobjects
|
||||
**/
|
||||
function get_linkrating($link) {
|
||||
if (get_settings('links_rating_type') == 'number') {
|
||||
if (($link->link_rating != 0) || (get_settings('links_rating_ignore_zero') != 1)) {
|
||||
$s = "$link->link_rating";
|
||||
}
|
||||
} else if (get_settings('links_rating_type') == 'char') {
|
||||
for ($r = $link->link_rating; $r > 0; $r--) {
|
||||
$s .= get_settings('links_rating_char');
|
||||
}
|
||||
} else if (get_settings('links_rating_type') == 'image') {
|
||||
if (get_settings('links_rating_single_image')) {
|
||||
for ($r = $link->link_rating; $r > 0; $r--) {
|
||||
$s .= '<img src="'.get_settings('links_rating_image0').'" alt="' .
|
||||
$link->link_rating.'" />'."\n";
|
||||
}
|
||||
} else {
|
||||
if (($link->link_rating != 0) || (get_settings('links_rating_ignore_zero') != 1)) {
|
||||
$b = 'links_rating_image'.$row->link_rating;
|
||||
$s = ' <img src="' .
|
||||
get_settings($b).'" alt="' .
|
||||
$link->link_rating.'" />'."\n";
|
||||
}
|
||||
}
|
||||
} // end if image
|
||||
return $s;
|
||||
}
|
||||
|
||||
|
||||
/** function get_linksbyname_withrating()
|
||||
** Gets the links associated with category 'cat_name' and display rating stars/chars.
|
||||
** Parameters:
|
||||
** cat_name (default 'noname') - The category name to use. If no
|
||||
** match is found uses all
|
||||
** before (default '') - the html to output before the link
|
||||
** after (default '<br />') - the html to output after the link
|
||||
** between (default ' ') - the html to output between the link/image
|
||||
** and it's description. Not used if no image or show_images == true
|
||||
** show_images (default true) - whether to show images (if defined).
|
||||
** orderby (default 'id') - the order to output the links. E.g. 'id', 'name',
|
||||
** 'url' or 'description'. Or maybe owner. If you start the
|
||||
** name with an underscore the order will be reversed.
|
||||
** You can also specify 'rand' as the order which will return links in a
|
||||
** random order.
|
||||
** show_description (default true) - whether to show the description if
|
||||
** show_images=false/not defined
|
||||
** limit (default -1) - Limit to X entries. If not specified, all entries
|
||||
** are shown.
|
||||
** show_updated (default 0) - whether to show last updated timestamp
|
||||
*/
|
||||
function get_linksbyname_withrating($cat_name = "noname", $before = '',
|
||||
$after = '<br />', $between = " ",
|
||||
$show_images = true, $orderby = 'id',
|
||||
$show_description = true, $limit = -1, $show_updated = 0) {
|
||||
|
||||
get_linksbyname($cat_name, $before, $after, $between, $show_images,
|
||||
$orderby, $show_description, true, $limit, $show_updated);
|
||||
}
|
||||
|
||||
/** function get_links_withrating()
|
||||
** Gets the links associated with category n and display rating stars/chars.
|
||||
** Parameters:
|
||||
** category (default -1) - The category to use. If no category supplied
|
||||
** uses all
|
||||
** before (default '') - the html to output before the link
|
||||
** after (default '<br />') - the html to output after the link
|
||||
** between (default ' ') - the html to output between the link/image
|
||||
** and it's description. Not used if no image or show_images == true
|
||||
** show_images (default true) - whether to show images (if defined).
|
||||
** orderby (default 'id') - the order to output the links. E.g. 'id', 'name',
|
||||
** 'url' or 'description'. Or maybe owner. If you start the
|
||||
** name with an underscore the order will be reversed.
|
||||
** You can also specify 'rand' as the order which will return links in a
|
||||
** random order.
|
||||
** show_description (default true) - whether to show the description if
|
||||
** show_images=false/not defined .
|
||||
** limit (default -1) - Limit to X entries. If not specified, all entries
|
||||
** are shown.
|
||||
** show_updated (default 0) - whether to show last updated timestamp
|
||||
*/
|
||||
function get_links_withrating($category = -1, $before = '', $after = '<br />',
|
||||
$between = " ", $show_images = true,
|
||||
$orderby = 'id', $show_description = true,
|
||||
$limit = -1, $show_updated = 0) {
|
||||
|
||||
get_links($category, $before, $after, $between, $show_images, $orderby,
|
||||
$show_description, true, $limit, $show_updated);
|
||||
}
|
||||
|
||||
/** function get_linkcatname()
|
||||
** Gets the name of category n.
|
||||
** Parameters: id (default 0) - The category to get. If no category supplied
|
||||
** uses 0
|
||||
*/
|
||||
function get_linkcatname($id = 0) {
|
||||
global $tablelinkcategories, $wpdb;
|
||||
$cat_name = '';
|
||||
if ('' != $id) {
|
||||
$cat_name = $wpdb->get_var("SELECT cat_name FROM $tablelinkcategories WHERE cat_id=$id");
|
||||
}
|
||||
return stripslashes($cat_name);
|
||||
}
|
||||
|
||||
/** function get_get_autotoggle()
|
||||
** Gets the auto_toggle setting of category n.
|
||||
** Parameters: id (default 0) - The category to get. If no category supplied
|
||||
** uses 0
|
||||
*/
|
||||
function get_autotoggle($id = 0) {
|
||||
global $tablelinkcategories, $wpdb;
|
||||
$auto_toggle = $wpdb->get_var("SELECT auto_toggle FROM $tablelinkcategories WHERE cat_id=$id");
|
||||
if ('' == $auto_toggle)
|
||||
$auto_toggle = 'N';
|
||||
return $auto_toggle;
|
||||
}
|
||||
|
||||
/** function links_popup_script()
|
||||
** This function contributed by Fullo -- http://sprite.csr.unibo.it/fullo/
|
||||
** Show the link to the links popup and the number of links
|
||||
** Parameters:
|
||||
** text (default Links) - the text of the link
|
||||
** width (default 400) - the width of the popup window
|
||||
** height (default 400) - the height of the popup window
|
||||
** file (default linkspopup.php) - the page to open in the popup window
|
||||
** count (default true) - the number of links in the db
|
||||
*/
|
||||
function links_popup_script($text = 'Links', $width=400, $height=400,
|
||||
$file='links.all.php', $count = true) {
|
||||
global $tablelinks;
|
||||
if ($count == true) {
|
||||
$counts = $wpdb->get_var("SELECT count(*) FROM $tablelinks");
|
||||
}
|
||||
|
||||
$javascript = "<a href=\"#\" " .
|
||||
" onclick=\"javascript:window.open('$file?popup=1', '_blank', " .
|
||||
"'width=$width,height=$height,scrollbars=yes,status=no'); " .
|
||||
" return false\">";
|
||||
$javascript .= $text;
|
||||
|
||||
if ($count == true) {
|
||||
$javascript .= " ($counts)";
|
||||
}
|
||||
|
||||
$javascript .="</a>\n\n";
|
||||
echo $javascript;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* function get_links_list()
|
||||
*
|
||||
* added by Dougal
|
||||
*
|
||||
* Output a list of all links, listed by category, using the
|
||||
* settings in $tablelinkcategories and output it as a nested
|
||||
* HTML unordered list.
|
||||
*
|
||||
* Parameters:
|
||||
* order (default 'name') - Sort link categories by 'name' or 'id'
|
||||
* hide_if_empty (default true) - Supress listing empty link categories
|
||||
*/
|
||||
function get_links_list($order = 'name', $hide_if_empty = true) {
|
||||
global $tablelinkcategories, $tablelinks, $wpdb;
|
||||
|
||||
$order = strtolower($order);
|
||||
|
||||
// Handle link category sorting
|
||||
if (substr($order,0,1) == '_') {
|
||||
$direction = ' DESC';
|
||||
$order = substr($order,1);
|
||||
}
|
||||
|
||||
// if 'name' wasn't specified, assume 'id':
|
||||
$cat_order = ('name' == $order)?'cat_name':'cat_id';
|
||||
|
||||
if ($hide_if_empty) {
|
||||
$extra_join = "LEFT JOIN $tablelinks ON link_category = cat_id";
|
||||
$group_by_having = 'GROUP BY cat_id HAVING count(link_id) > 0';
|
||||
}
|
||||
|
||||
// Fetch the link category data as an array of hashes
|
||||
$cats = $wpdb->get_results("SELECT cat_id, cat_name, show_images,
|
||||
show_description, show_rating, show_updated, sort_order, sort_desc, list_limit
|
||||
FROM $tablelinkcategories $extra_join
|
||||
$group_by_having
|
||||
ORDER BY $cat_order $direction ",ARRAY_A);
|
||||
|
||||
// Display each category
|
||||
if ($cats) {
|
||||
// Start the unordered list
|
||||
echo "<ul>\n";
|
||||
|
||||
foreach ($cats as $cat) {
|
||||
// Handle each category.
|
||||
|
||||
// First, fix the sort_order info
|
||||
$orderby = $cat['sort_order'];
|
||||
$orderby = (bool_from_yn($cat['sort_desc'])?'_':'') . $orderby;
|
||||
|
||||
// Display the category name
|
||||
echo '<li>' . stripslashes($cat['cat_name']) . "\n<ul>\n";
|
||||
|
||||
// Call get_links() with all the appropriate params
|
||||
get_links($cat['cat_id'],
|
||||
'<li>',"</li>","\n",
|
||||
bool_from_yn($cat['show_images']),
|
||||
$orderby,
|
||||
bool_from_yn($cat['show_description']),
|
||||
bool_from_yn($cat['show_rating']),
|
||||
$cat['list_limit'],
|
||||
bool_from_yn($cat['show_updated']));
|
||||
|
||||
// Close the last category
|
||||
echo "</ul>\n</li>\n";
|
||||
|
||||
}
|
||||
// Close out our category list.
|
||||
echo "</ul>\n";
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
|
@ -27,7 +27,7 @@ require (ABSPATH . WPINC . '/functions.php');
|
|||
require (ABSPATH . WPINC . '/template-functions.php');
|
||||
require (ABSPATH . WPINC . '/class-xmlrpc.php');
|
||||
require (ABSPATH . WPINC . '/class-xmlrpcs.php');
|
||||
require (ABSPATH . '/wp-links/links.php');
|
||||
require (ABSPATH . WPINC . '/links.php');
|
||||
|
||||
//setup the old globals from b2config.php
|
||||
//
|
||||
|
|