2003-05-22 08:12:53 -04:00
< ? php
// Links
2003-08-06 20:00:55 -04:00
// Copyright (C) 2002, 2003 Mike Little -- mike@zed1.com
2003-12-07 22:46:42 -05:00
2003-07-19 16:45:27 -04:00
require_once ( '../wp-config.php' );
2003-05-22 08:12:53 -04:00
2003-05-23 04:29:51 -04:00
$title = 'Manage Links' ;
2003-12-10 19:22:36 -05:00
$this_file = 'link-manager.php' ;
2003-05-22 08:12:53 -04:00
2003-07-29 12:45:19 -04:00
function category_dropdown ( $fieldname , $selected = 0 ) {
2003-12-04 20:27:00 -05:00
global $wpdb , $tablelinkcategories ;
2003-07-30 10:44:57 -04:00
2003-07-29 12:45:19 -04:00
$results = $wpdb -> get_results ( " SELECT cat_id, cat_name, auto_toggle FROM $tablelinkcategories ORDER BY cat_id " );
echo ' <select name="' . $fieldname . '" size="1">' . " \n " ;
foreach ( $results as $row ) {
echo " <option value= \" " . $row -> cat_id . " \" " ;
if ( $row -> cat_id == $selected )
echo " selected " ;
echo " > " . $row -> cat_id . " : " . $row -> cat_name ;
if ( $row -> auto_toggle == 'Y' )
echo ' (auto toggle)' ;
echo " </option> \n " ;
}
echo " </select> \n " ;
}
2003-05-22 08:12:53 -04:00
function add_magic_quotes ( $array ) {
2003-07-22 20:26:03 -04:00
foreach ( $array as $k => $v ) {
if ( is_array ( $v )) {
$array [ $k ] = add_magic_quotes ( $v );
} else {
$array [ $k ] = addslashes ( $v );
}
}
return $array ;
}
2003-05-22 08:12:53 -04:00
if ( ! get_magic_quotes_gpc ()) {
2003-07-22 20:26:03 -04:00
$HTTP_GET_VARS = add_magic_quotes ( $HTTP_GET_VARS );
$HTTP_POST_VARS = add_magic_quotes ( $HTTP_POST_VARS );
$HTTP_COOKIE_VARS = add_magic_quotes ( $HTTP_COOKIE_VARS );
2003-05-22 08:12:53 -04:00
}
2003-12-18 04:36:13 -05:00
$wpvarstoreset = array ( 'action' , 'standalone' , 'cat_id' , 'linkurl' , 'name' , 'image' ,
2003-05-22 08:12:53 -04:00
'description' , 'visible' , 'target' , 'category' , 'link_id' ,
2003-07-26 19:52:36 -04:00
'submit' , 'order_by' , 'links_show_cat_id' , 'rating' , 'rel' ,
2003-07-29 12:45:19 -04:00
'notes' , 'linkcheck[]' );
2003-12-18 04:36:13 -05:00
for ( $i = 0 ; $i < count ( $wpvarstoreset ); $i += 1 ) {
$wpvar = $wpvarstoreset [ $i ];
if ( ! isset ( $$wpvar )) {
if ( empty ( $HTTP_POST_VARS [ " $wpvar " ])) {
if ( empty ( $HTTP_GET_VARS [ " $wpvar " ])) {
$$wpvar = '' ;
2003-05-22 08:12:53 -04:00
} else {
2003-12-18 04:36:13 -05:00
$$wpvar = $HTTP_GET_VARS [ " $wpvar " ];
2003-05-22 08:12:53 -04:00
}
} else {
2003-12-18 04:36:13 -05:00
$$wpvar = $HTTP_POST_VARS [ " $wpvar " ];
2003-05-22 08:12:53 -04:00
}
}
}
2003-10-20 16:53:13 -04:00
$links_show_cat_id = $HTTP_COOKIE_VARS [ " links_show_cat_id_ " . $cookiehash ];
$links_show_order = $HTTP_COOKIE_VARS [ " links_show_order_ " . $cookiehash ];
2003-05-22 08:12:53 -04:00
2003-12-27 15:55:03 -05:00
if ( ! empty ( $action2 ))
2003-07-29 09:46:24 -04:00
$action = $action2 ;
2003-05-22 08:12:53 -04:00
switch ( $action ) {
2003-07-26 19:52:36 -04:00
case 'Assign' :
{
$standalone = 1 ;
2003-12-10 19:22:36 -05:00
include_once ( 'admin-header.php' );
2003-07-30 10:44:57 -04:00
2003-07-26 19:52:36 -04:00
// check the current user's level first.
2003-08-03 19:46:20 -04:00
if ( $user_level < get_settings ( 'links_minadminlevel' ))
2003-07-26 19:52:36 -04:00
die ( " Cheatin' uh ? " );
2003-07-30 10:44:57 -04:00
2003-07-26 19:52:36 -04:00
//for each link id (in $linkcheck[]): if the current user level >= the
//userlevel of the owner of the link then we can proceed.
2003-07-29 12:45:19 -04:00
if ( count ( $linkcheck ) == 0 ) {
2003-07-30 10:44:57 -04:00
header ( 'Location: ' . $this_file );
2003-07-29 12:45:19 -04:00
exit ;
}
2003-07-26 19:52:36 -04:00
$all_links = join ( ',' , $linkcheck );
$results = $wpdb -> get_results ( " SELECT link_id, link_owner, user_level FROM $tablelinks LEFT JOIN $tableusers ON link_owner = ID WHERE link_id in ( $all_links ) " );
foreach ( $results as $row ) {
2003-08-03 19:46:20 -04:00
if ( ! get_settings ( 'links_use_adminlevels' ) || ( $user_level >= $row -> user_level )) { // ok to proceed
2003-07-26 19:52:36 -04:00
$ids_to_change [] = $row -> link_id ;
}
}
// should now have an array of links we can change
$all_links = join ( ',' , $ids_to_change );
$q = $wpdb -> query ( " update $tablelinks SET link_owner=' $newowner ' WHERE link_id IN ( $all_links ) " );
2003-07-30 10:44:57 -04:00
header ( 'Location: ' . $this_file );
2003-07-26 19:52:36 -04:00
break ;
}
2003-07-29 12:45:19 -04:00
case 'Visibility' :
{
$standalone = 1 ;
2003-12-10 19:22:36 -05:00
include_once ( 'admin-header.php' );
2003-07-30 10:44:57 -04:00
2003-07-29 12:45:19 -04:00
// check the current user's level first.
2003-08-03 19:46:20 -04:00
if ( $user_level < get_settings ( 'links_minadminlevel' ))
2003-07-29 12:45:19 -04:00
die ( " Cheatin' uh ? " );
2003-07-30 10:44:57 -04:00
2003-07-29 12:45:19 -04:00
//for each link id (in $linkcheck[]): toggle the visibility
if ( count ( $linkcheck ) == 0 ) {
2003-07-30 10:44:57 -04:00
header ( 'Location: ' . $this_file );
2003-07-29 12:45:19 -04:00
exit ;
}
$all_links = join ( ',' , $linkcheck );
$results = $wpdb -> get_results ( " SELECT link_id, link_visible FROM $tablelinks WHERE link_id in ( $all_links ) " );
foreach ( $results as $row ) {
if ( $row -> link_visible == 'Y' ) { // ok to proceed
$ids_to_turnoff [] = $row -> link_id ;
} else {
$ids_to_turnon [] = $row -> link_id ;
}
}
// should now have two arrays of links to change
if ( count ( $ids_to_turnoff )) {
$all_linksoff = join ( ',' , $ids_to_turnoff );
$q = $wpdb -> query ( " update $tablelinks SET link_visible='N' WHERE link_id IN ( $all_linksoff ) " );
}
2003-07-30 10:44:57 -04:00
2003-07-29 12:45:19 -04:00
if ( count ( $ids_to_turnon )) {
$all_linkson = join ( ',' , $ids_to_turnon );
$q = $wpdb -> query ( " update $tablelinks SET link_visible='Y' WHERE link_id IN ( $all_linkson ) " );
}
2003-07-30 10:44:57 -04:00
header ( 'Location: ' . $this_file );
2003-07-29 12:45:19 -04:00
break ;
}
case 'Move' :
{
$standalone = 1 ;
2003-12-10 19:22:36 -05:00
include_once ( 'admin-header.php' );
2003-07-29 12:45:19 -04:00
// check the current user's level first.
2003-08-03 19:46:20 -04:00
if ( $user_level < get_settings ( 'links_minadminlevel' ))
2003-07-29 12:45:19 -04:00
die ( " Cheatin' uh ? " );
2003-07-30 10:44:57 -04:00
2003-07-29 12:45:19 -04:00
//for each link id (in $linkcheck[]) change category to selected value
if ( count ( $linkcheck ) == 0 ) {
2003-07-30 10:44:57 -04:00
header ( 'Location: ' . $this_file );
2003-07-29 12:45:19 -04:00
exit ;
}
$all_links = join ( ',' , $linkcheck );
// should now have an array of links we can change
$q = $wpdb -> query ( " update $tablelinks SET link_category=' $category ' WHERE link_id IN ( $all_links ) " );
2003-07-30 10:44:57 -04:00
header ( 'Location: ' . $this_file );
2003-07-29 12:45:19 -04:00
break ;
}
2003-05-23 04:29:51 -04:00
case 'Add' :
2003-05-22 08:12:53 -04:00
{
$standalone = 1 ;
2003-12-10 19:22:36 -05:00
include_once ( 'admin-header.php' );
2003-05-22 08:12:53 -04:00
$link_url = $HTTP_POST_VARS [ " linkurl " ];
$link_name = $HTTP_POST_VARS [ " name " ];
$link_image = $HTTP_POST_VARS [ " image " ];
$link_target = $HTTP_POST_VARS [ " target " ];
$link_category = $HTTP_POST_VARS [ " category " ];
$link_description = $HTTP_POST_VARS [ " description " ];
$link_visible = $HTTP_POST_VARS [ " visible " ];
$link_rating = $HTTP_POST_VARS [ " rating " ];
$link_rel = $HTTP_POST_VARS [ " rel " ];
2003-07-22 20:26:03 -04:00
$link_notes = $HTTP_POST_VARS [ " notes " ];
2003-05-22 08:12:53 -04:00
$auto_toggle = get_autotoggle ( $link_category );
2003-08-03 19:46:20 -04:00
if ( $user_level < get_settings ( 'links_minadminlevel' ))
2003-05-22 08:12:53 -04:00
die ( " Cheatin' uh ? " );
// if we are in an auto toggle category and this one is visible then we
// need to make the others invisible before we add this new one.
if (( $auto_toggle == 'Y' ) && ( $link_visible == 'Y' )) {
2003-07-19 16:45:27 -04:00
$wpdb -> query ( " UPDATE $tablelinks set link_visible = 'N' WHERE link_category = $link_category " );
2003-05-22 08:12:53 -04:00
}
2003-07-22 20:26:03 -04:00
$wpdb -> query ( " INSERT INTO $tablelinks (link_url, link_name, link_image, link_target, link_category, link_description, link_visible, link_owner, link_rating, link_rel, link_notes) " .
2003-05-22 08:12:53 -04:00
" VALUES(' " . addslashes ( $link_url ) . " ',' "
. addslashes ( $link_name ) . " ', ' "
. addslashes ( $link_image ) . " ', ' $link_target ', $link_category , ' "
2003-07-22 20:26:03 -04:00
. addslashes ( $link_description ) . " ', ' $link_visible ', $user_ID , $link_rating , ' " . addslashes ( $link_rel ) . " ', ' " . addslashes ( $link_notes ) . " ') " );
2003-05-22 08:12:53 -04:00
2003-12-23 16:47:03 -05:00
header ( 'Location: ' . $HTTP_SERVER_VARS [ 'HTTP_REFERER' ]);
2003-05-22 08:12:53 -04:00
break ;
} // end Add
2003-05-23 04:29:51 -04:00
case 'editlink' :
2003-05-22 08:12:53 -04:00
{
if ( isset ( $submit ) && ( $submit == " Save " )) {
if ( isset ( $links_show_cat_id ) && ( $links_show_cat_id != '' ))
$cat_id = $links_show_cat_id ;
if ( ! isset ( $cat_id ) || ( $cat_id == '' )) {
if ( ! isset ( $links_show_cat_id ) || ( $links_show_cat_id == '' ))
$cat_id = 'All' ;
}
$links_show_cat_id = $cat_id ;
$standalone = 1 ;
2003-12-10 19:22:36 -05:00
include_once ( 'admin-header.php' );
2003-05-22 08:12:53 -04:00
$link_id = $HTTP_POST_VARS [ " link_id " ];
$link_url = $HTTP_POST_VARS [ " linkurl " ];
$link_name = $HTTP_POST_VARS [ " name " ];
$link_image = $HTTP_POST_VARS [ " image " ];
$link_target = $HTTP_POST_VARS [ " target " ];
$link_category = $HTTP_POST_VARS [ " category " ];
$link_description = $HTTP_POST_VARS [ " description " ];
$link_visible = $HTTP_POST_VARS [ " visible " ];
$link_rating = $HTTP_POST_VARS [ " rating " ];
$link_rel = $HTTP_POST_VARS [ " rel " ];
2003-07-22 20:26:03 -04:00
$link_notes = $HTTP_POST_VARS [ " notes " ];
2003-05-22 08:12:53 -04:00
$auto_toggle = get_autotoggle ( $link_category );
2003-08-03 19:46:20 -04:00
if ( $user_level < get_settings ( 'links_minadminlevel' ))
2003-05-22 08:12:53 -04:00
die ( " Cheatin' uh ? " );
// if we are in an auto toggle category and this one is visible then we
// need to make the others invisible before we update this one.
if (( $auto_toggle == 'Y' ) && ( $link_visible == 'Y' )) {
2003-07-19 16:45:27 -04:00
$wpdb -> query ( " UPDATE $tablelinks set link_visible = 'N' WHERE link_category = $link_category " );
2003-05-22 08:12:53 -04:00
}
2003-07-19 16:45:27 -04:00
$wpdb -> query ( " UPDATE $tablelinks SET link_url=' " . addslashes ( $link_url ) . " ', \n " .
2003-05-22 08:12:53 -04:00
" link_name=' " . addslashes ( $link_name ) . " ', \n link_image=' " . addslashes ( $link_image ) . " ', \n " .
" link_target=' $link_target ', \n link_category= $link_category , \n " .
" link_visible=' $link_visible ', \n link_description=' " . addslashes ( $link_description ) . " ', \n " .
" link_rating= $link_rating , \n " .
2003-07-22 20:26:03 -04:00
" link_rel=' " . addslashes ( $link_rel ) . " ', \n " .
" link_notes=' " . addslashes ( $link_notes ) . " ' \n " .
2003-07-19 16:45:27 -04:00
" WHERE link_id= $link_id " );
2003-05-22 08:12:53 -04:00
} // end if save
2003-10-20 16:53:13 -04:00
setcookie ( 'links_show_cat_id_' . $cookiehash , $links_show_cat_id , time () + 600 );
2003-07-30 10:44:57 -04:00
header ( 'Location: ' . $this_file );
2003-05-22 08:12:53 -04:00
break ;
} // end Save
2003-05-23 04:29:51 -04:00
case 'Delete' :
2003-05-22 08:12:53 -04:00
{
$standalone = 1 ;
2003-12-10 19:22:36 -05:00
include_once ( 'admin-header.php' );
2003-05-22 08:12:53 -04:00
$link_id = $HTTP_POST_VARS [ " link_id " ];
2003-08-03 19:46:20 -04:00
if ( $user_level < get_settings ( 'links_minadminlevel' ))
2003-05-22 08:12:53 -04:00
die ( " Cheatin' uh ? " );
2003-07-19 16:45:27 -04:00
$wpdb -> query ( " DELETE FROM $tablelinks WHERE link_id = ' $link_id ' " );
2003-05-22 08:12:53 -04:00
if ( isset ( $links_show_cat_id ) && ( $links_show_cat_id != '' ))
$cat_id = $links_show_cat_id ;
2003-07-22 20:26:03 -04:00
2003-05-22 08:12:53 -04:00
if ( ! isset ( $cat_id ) || ( $cat_id == '' )) {
if ( ! isset ( $links_show_cat_id ) || ( $links_show_cat_id == '' ))
$cat_id = 'All' ;
}
$links_show_cat_id = $cat_id ;
2003-10-20 16:53:13 -04:00
setcookie ( " links_show_cat_id_ " . $cookiehash , $links_show_cat_id , time () + 600 );
2003-07-30 10:44:57 -04:00
header ( 'Location: ' . $this_file );
2003-05-22 08:12:53 -04:00
break ;
} // end Delete
2003-07-22 20:26:03 -04:00
2003-05-23 04:29:51 -04:00
case 'linkedit' :
2003-05-22 08:12:53 -04:00
{
$standalone = 0 ;
2003-12-10 19:22:36 -05:00
include_once ( 'admin-header.php' );
2003-08-03 19:46:20 -04:00
if ( $user_level < get_settings ( 'links_minadminlevel' )) {
2003-05-23 04:29:51 -04:00
die ( " You have no right to edit the links for this blog.<br />Ask for a promotion to your <a href= \" mailto: $admin_email\ " > blog admin </ a >. : ) " );
2003-05-22 08:12:53 -04:00
}
2003-07-22 20:26:03 -04:00
$row = $wpdb -> get_row ( " SELECT link_url, link_name, link_image, link_target, link_description, link_visible, link_category AS cat_id, link_rating, link_rel, link_notes " .
2003-05-22 08:12:53 -04:00
" FROM $tablelinks " .
2003-07-19 16:45:27 -04:00
" WHERE link_id = $link_id " );
2003-05-22 08:12:53 -04:00
2003-07-19 16:45:27 -04:00
if ( $row ) {
2003-07-22 20:26:03 -04:00
$link_url = stripslashes ( $row -> link_url );
2003-05-22 08:12:53 -04:00
$link_name = stripslashes ( $row -> link_name );
$link_image = $row -> link_image ;
$link_target = $row -> link_target ;
$link_category = $row -> cat_id ;
$link_description = stripslashes ( $row -> link_description );
$link_visible = $row -> link_visible ;
$link_rating = $row -> link_rating ;
$link_rel = stripslashes ( $row -> link_rel );
2003-07-22 20:26:03 -04:00
$link_notes = stripslashes ( $row -> link_notes );
2003-05-22 08:12:53 -04:00
}
?>
2003-12-27 15:55:03 -05:00
< ul id = " adminmenu2 " >
< li >< a href = " link-manager.php " class = " current " > Manage Links </ a ></ li >
< li >< a href = " link-add.php " > Add Link </ a ></ li >
< li >< a href = " link-categories.php " > Link Categories </ a ></ li >
< li class = " last " >< a href = " link-import.php " > Import Blogroll </ a ></ li >
</ ul >
2003-05-23 04:29:51 -04:00
< div class = " wrap " >
2003-07-22 20:26:03 -04:00
2003-12-07 22:46:42 -05:00
< table width = " 100% " cellpadding = " 3 " cellspacing = " 3 " >
2003-07-22 20:26:03 -04:00
< form name = " editlink " method = " post " >
2003-05-22 08:12:53 -04:00
< input type = " hidden " name = " action " value = " editlink " />
< input type = " hidden " name = " link_id " value = " <?php echo $link_id ; ?> " />
< input type = " hidden " name = " order_by " value = " <?php echo $order_by ?> " />
< input type = " hidden " name = " cat_id " value = " <?php echo $cat_id ?> " />
2003-05-23 09:34:55 -04:00
< tr >
2003-12-07 22:46:42 -05:00
< td colspan = " 2 " >< strong > Edit </ strong > a link :</ td >
2003-05-23 09:34:55 -04:00
</ tr >
2003-12-07 22:46:42 -05:00
< tr >
< td align = " right " > URL :</ td >
2003-05-23 09:34:55 -04:00
< td >< input type = " text " name = " linkurl " size = " 80 " value = " <?php echo $link_url ; ?> " ></ td >
</ tr >
2003-12-07 22:46:42 -05:00
< tr >
< td align = " right " > Display Name / Alt text :</ td >
2003-05-23 09:34:55 -04:00
< td >< input type = " text " name = " name " size = " 80 " value = " <?php echo $link_name ; ?> " ></ td >
</ tr >
2003-12-07 22:46:42 -05:00
< tr >
< td align = " right " > Image :</ td >
2003-05-23 09:34:55 -04:00
< td >< input type = " text " name = " image " size = " 80 " value = " <?php echo $link_image ; ?> " ></ td >
</ tr >
2003-12-07 22:46:42 -05:00
< tr >
< td align = " right " > Description :</ td >
2003-05-23 09:34:55 -04:00
< td >< input type = " text " name = " description " size = " 80 " value = " <?php echo $link_description ; ?> " ></ td >
</ tr >
2003-12-07 22:46:42 -05:00
< tr >
< td align = " right " > Rel :</ td >
2003-05-23 09:34:55 -04:00
< td >< input type = " text " name = " rel " size = " 80 " value = " <?php echo $link_rel ; ?> " ></ td >
</ tr >
2003-12-07 22:46:42 -05:00
< tr >
< td valign = " top " align = " right " > Notes :</ td >
2003-07-22 20:26:03 -04:00
< td >< textarea name = " notes " cols = " 80 " rows = " 10 " >< ? php echo $link_notes ; ?> </textarea></td>
</ tr >
2003-12-07 22:46:42 -05:00
< tr >
< td align = " right " > Rating :</ td >
2003-07-22 20:26:03 -04:00
< td >
< select name = " rating " size = " 1 " >
< ? php
2003-05-22 08:12:53 -04:00
for ( $r = 0 ; $r < 10 ; $r ++ ) {
echo ( ' <option value="' . $r . '" ' );
if ( $link_rating == $r )
echo ( 'selected' );
echo ( '>' . $r . '</option>' );
}
?>
2003-07-22 20:26:03 -04:00
</ select >& nbsp ;( Leave at 0 for no rating . )
</ td >
2003-05-23 09:34:55 -04:00
</ tr >
2003-12-07 22:46:42 -05:00
< tr >
< td align = " right " > Target :</ td >
2003-07-22 20:26:03 -04:00
< td >< label >< input type = " radio " name = " target " value = " _blank " < ? php echo (( $link_target == '_blank' ) ? 'checked="checked"' : '' ); ?> > _blank</label>
& nbsp ; < label >< input type = " radio " name = " target " value = " _top " < ? php echo (( $link_target == '_top' ) ? 'checked="checked"' : '' ); ?> > _top</label>
& nbsp ; < label >< input type = " radio " name = " target " value = " " < ? php echo (( $link_target == '' ) ? 'checked="checked"' : '' ); ?> > none</label>
2003-06-10 19:05:05 -04:00
</ td >
2003-05-23 09:34:55 -04:00
</ tr >
2003-12-07 22:46:42 -05:00
< tr >
< td align = " right " > Visible :</ td >
2003-07-22 20:26:03 -04:00
< td >< label >
2003-07-30 10:44:57 -04:00
< input type = " radio " name = " visible " < ? php if ( $link_visible == 'Y' ) echo " checked " ; ?> value="Y">
2003-07-22 20:26:03 -04:00
Yes </ label >
& nbsp ; < label >
2003-07-30 10:44:57 -04:00
< input type = " radio " name = " visible " < ? php if ( $link_visible == 'N' ) echo " checked " ; ?> value="N">
2003-07-22 20:26:03 -04:00
No </ label >
</ td >
2003-05-23 09:34:55 -04:00
</ tr >
2003-12-07 22:46:42 -05:00
< tr >
< td align = " right " >< label for = " category " > Category </ label >:</ td >
2003-07-22 20:26:03 -04:00
< td >
2003-07-29 12:45:19 -04:00
< ? php category_dropdown ( 'category' , $link_category ); ?>
2003-05-23 09:34:55 -04:00
</ td >
</ tr >
2003-12-07 22:46:42 -05:00
< tr >
2003-07-22 20:26:03 -04:00
< td colspan = " 2 " align = " center " >
< input type = " submit " name = " submit " value = " Save " class = " search " >& nbsp ;
< input type = " submit " name = " submit " value = " Cancel " class = " search " >
2003-05-23 09:34:55 -04:00
</ td >
</ tr >
</ table >
2003-05-23 04:29:51 -04:00
</ div >
2003-05-22 08:12:53 -04:00
< ? php
break ;
} // end linkedit
case " Show " :
{
if ( ! isset ( $cat_id ) || ( $cat_id == '' )) {
if ( ! isset ( $links_show_cat_id ) || ( $links_show_cat_id == '' ))
$cat_id = 'All' ;
}
$links_show_cat_id = $cat_id ;
2003-07-19 16:45:27 -04:00
if ( ! isset ( $order_by ) || ( $order_by == '' )) {
if ( ! isset ( $links_show_order ) || ( $links_show_order == '' ))
$order_by = 'order_name' ;
}
$links_show_order = $order_by ;
2003-05-22 08:12:53 -04:00
//break; fall through
} // end Show
case " popup " :
{
2003-11-05 19:00:45 -05:00
$link_url = stripslashes ( $HTTP_GET_VARS [ " linkurl " ]);
$link_name = stripslashes ( $HTTP_GET_VARS [ " name " ]);
2003-05-22 08:12:53 -04:00
//break; fall through
}
default :
{
if ( isset ( $links_show_cat_id ) && ( $links_show_cat_id != '' ))
$cat_id = $links_show_cat_id ;
2003-07-22 20:26:03 -04:00
2003-05-22 08:12:53 -04:00
if ( ! isset ( $cat_id ) || ( $cat_id == '' )) {
if ( ! isset ( $links_show_cat_id ) || ( $links_show_cat_id == '' ))
$cat_id = 'All' ;
}
$links_show_cat_id = $cat_id ;
2003-07-19 16:45:27 -04:00
if ( isset ( $links_show_order ) && ( $links_show_order != '' ))
$order_by = $links_show_order ;
2003-07-22 20:26:03 -04:00
2003-05-22 08:12:53 -04:00
if ( ! isset ( $order_by ) || ( $order_by == '' ))
2003-06-01 06:16:04 -04:00
$order_by = 'order_name' ;
2003-07-19 16:45:27 -04:00
$links_show_order = $order_by ;
2003-10-20 16:53:13 -04:00
setcookie ( 'links_show_cat_id_' . $cookiehash , $links_show_cat_id , time () + 600 );
setcookie ( 'links_show_order_' . $cookiehash , $links_show_order , time () + 600 );
2003-05-22 08:12:53 -04:00
$standalone = 0 ;
2003-12-10 19:22:36 -05:00
include_once ( " ./admin-header.php " );
2003-08-03 19:46:20 -04:00
if ( $user_level < get_settings ( 'links_minadminlevel' )) {
2003-05-22 08:12:53 -04:00
die ( " You have no right to edit the links for this blog.<br>Ask for a promotion to your <a href= \" mailto: $admin_email\ " > blog admin </ a > : ) " );
}
switch ( $order_by )
{
2003-06-01 06:16:04 -04:00
case 'order_id' : $sqlorderby = 'id' ; break ;
2003-05-22 08:12:53 -04:00
case 'order_url' : $sqlorderby = 'url' ; break ;
case 'order_desc' : $sqlorderby = 'description' ; break ;
case 'order_owner' : $sqlorderby = 'owner' ; break ;
case 'order_rating' : $sqlorderby = 'rating' ; break ;
2003-07-22 20:26:03 -04:00
case 'order_name' :
2003-06-01 06:16:04 -04:00
default : $sqlorderby = 'name' ; break ;
2003-05-22 08:12:53 -04:00
}
2003-07-22 20:26:03 -04:00
2003-05-22 08:12:53 -04:00
if ( $action != " popup " ) {
?>
2003-07-26 19:52:36 -04:00
< script type = " text/javascript " >
2003-07-30 10:44:57 -04:00
<!--
2003-07-26 19:52:36 -04:00
function checkAll ( form )
{
for ( i = 0 , n = form . elements . length ; i < n ; i ++ ) {
if ( form . elements [ i ] . type == " checkbox " ) {
if ( form . elements [ i ] . checked == true )
form . elements [ i ] . checked = false ;
else
form . elements [ i ] . checked = true ;
}
}
}
//-->
2003-07-30 10:44:57 -04:00
</ script >
2003-12-07 22:46:42 -05:00
< ul id = " adminmenu2 " >
2003-12-10 19:22:36 -05:00
< li >< a href = " link-manager.php " class = " current " > Manage Links </ a ></ li >
2003-12-23 16:47:03 -05:00
< li >< a href = " link-add.php " > Add Link </ a ></ li >
2003-12-10 19:22:36 -05:00
< li >< a href = " link-categories.php " > Link Categories </ a ></ li >
< li class = " last " >< a href = " link-import.php " > Import Blogroll </ a ></ li >
2003-12-07 22:46:42 -05:00
</ ul >
2003-05-23 04:29:51 -04:00
< div class = " wrap " >
2003-05-22 08:12:53 -04:00
< form name = " cats " method = " post " >
2003-12-07 22:46:42 -05:00
< table width = " 75% " cellpadding = " 3 " cellspacing = " 3 " >
2003-05-22 08:12:53 -04:00
< tr >
< td >
2003-12-07 22:46:42 -05:00
< strong > Show </ strong > links in category :< ? php echo gethelp_link ( $this_file , 'link_categories' ); ?> <br />
2003-05-22 08:12:53 -04:00
</ td >
< td >
2003-12-07 22:46:42 -05:00
< strong > Order </ strong > by :< ? php echo gethelp_link ( $this_file , 'order_by' ); ?>
2003-05-22 08:12:53 -04:00
</ td >
2003-12-07 22:46:42 -05:00
< td >& nbsp ; </ td >
2003-05-22 08:12:53 -04:00
</ tr >
< tr >
< td >
< ? php
2003-07-19 16:45:27 -04:00
$results = $wpdb -> get_results ( " SELECT cat_id, cat_name, auto_toggle FROM $tablelinkcategories ORDER BY cat_id " );
2003-05-22 08:12:53 -04:00
echo " <select name= \" cat_id \" > \n " ;
echo " <option value= \" All \" " ;
if ( $cat_id == 'All' )
echo " selected " ;
echo " > All</option> \n " ;
2003-07-19 16:45:27 -04:00
foreach ( $results as $row ) {
2003-05-22 08:12:53 -04:00
echo " <option value= \" " . $row -> cat_id . " \" " ;
if ( $row -> cat_id == $cat_id )
echo " selected " ;
echo " > " . $row -> cat_id . " : " . $row -> cat_name ;
if ( $row -> auto_toggle == 'Y' )
echo ' (auto toggle)' ;
echo " </option> \n " ;
}
echo " </select> \n " ;
?>
</ td >
< td >
< select name = " order_by " >
< option value = " order_id " < ? php if ( $order_by == 'order_id' ) echo " selected " ; ?> >Id</option>
< option value = " order_name " < ? php if ( $order_by == 'order_name' ) echo " selected " ; ?> >Name</option>
< option value = " order_url " < ? php if ( $order_by == 'order_url' ) echo " selected " ; ?> >URL</option>
< option value = " order_desc " < ? php if ( $order_by == 'order_desc' ) echo " selected " ; ?> >Description</option>
< option value = " order_owner " < ? php if ( $order_by == 'order_owner' ) echo " selected " ; ?> >Owner</option>
< option value = " order_rating " < ? php if ( $order_by == 'order_rating' ) echo " selected " ; ?> >Rating</option>
</ select >
</ td >
< td >
2003-08-06 20:00:55 -04:00
< input type = " submit " name = " action " value = " Show " class = " search " />< ? php echo gethelp_link ( $this_file , 'show' ); ?>
2003-05-22 08:12:53 -04:00
</ td >
</ tr >
</ table >
</ form >
2003-05-23 04:29:51 -04:00
</ div >
< div class = " wrap " >
2003-05-22 08:12:53 -04:00
2003-07-22 20:26:03 -04:00
< form name = " links " id = " links " method = " post " >
2003-05-22 08:12:53 -04:00
< input type = " hidden " name = " link_id " value = " " />
< input type = " hidden " name = " action " value = " " />
< input type = " hidden " name = " order_by " value = " <?php echo $order_by ?> " />
< input type = " hidden " name = " cat_id " value = " <?php echo $cat_id ?> " />
2003-12-07 22:46:42 -05:00
< table width = " 100% " cellpadding = " 3 " cellspacing = " 3 " >
2003-07-22 20:26:03 -04:00
< tr >
2003-08-06 20:00:55 -04:00
< th width = " 15% " >< ? php echo gethelp_link ( $this_file , 'list_o_links' ); ?> Name</th>
2003-12-07 22:46:42 -05:00
< th > URI </ th >
2003-06-01 06:16:04 -04:00
< th > Category </ th >
2003-12-07 22:46:42 -05:00
< th > rel </ th >
2003-06-01 06:16:04 -04:00
< th > Image </ th >
< th > Visible </ th >
2003-12-07 22:46:42 -05:00
< th colspan = " 2 " > Action </ th >
2003-07-26 19:52:36 -04:00
< th >& nbsp ; </ th >
2003-06-01 06:16:04 -04:00
</ tr >
2003-05-22 08:12:53 -04:00
< ? php
2003-07-19 16:45:27 -04:00
$sql = " SELECT link_url, link_name, link_image, link_description, link_visible,
2003-07-26 19:52:36 -04:00
link_category AS cat_id , cat_name AS category , $tableusers . user_login , link_id ,
link_rating , link_rel , $tableusers . user_level
FROM $tablelinks
LEFT JOIN $tablelinkcategories ON $tablelinks . link_category = $tablelinkcategories . cat_id
LEFT JOIN $tableusers ON $tableusers . ID = $tablelinks . link_owner " ;
2003-05-22 08:12:53 -04:00
if ( isset ( $cat_id ) && ( $cat_id != 'All' )) {
2003-07-26 19:52:36 -04:00
$sql .= " WHERE link_category = $cat_id " ;
2003-05-22 08:12:53 -04:00
}
2003-06-01 06:16:04 -04:00
$sql .= ' ORDER BY link_' . $sqlorderby ;
// echo "$sql";
$links = $wpdb -> get_results ( $sql );
2003-06-03 18:42:13 -04:00
if ( $links ) {
foreach ( $links as $link ) {
2003-07-22 20:26:03 -04:00
$short_url = str_replace ( 'http://' , '' , stripslashes ( $link -> link_url ));
2003-06-03 18:42:13 -04:00
$short_url = str_replace ( 'www.' , '' , $short_url );
2003-07-22 20:26:03 -04:00
if ( '/' == substr ( $short_url , - 1 ))
$short_url = substr ( $short_url , 0 , - 1 );
if ( strlen ( $short_url ) > 35 )
$short_url = substr ( $short_url , 0 , 32 ) . '...' ;
2003-06-03 18:42:13 -04:00
$link -> link_name = stripslashes ( $link -> link_name );
$link -> category = stripslashes ( $link -> category );
$link -> link_rel = stripslashes ( $link -> link_rel );
2003-07-22 20:26:03 -04:00
$link -> link_description = stripslashes ( $link -> link_description );
2003-06-03 18:42:13 -04:00
$image = ( $link -> link_image != null ) ? 'Yes' : 'No' ;
$visible = ( $link -> link_visible == 'Y' ) ? 'Yes' : 'No' ;
++ $i ;
$style = ( $i % 2 ) ? ' class="alternate"' : '' ;
echo <<< LINKS
2003-12-07 22:46:42 -05:00
< tr valign = " middle " $style >
2003-07-22 20:26:03 -04:00
< td >< strong > $link -> link_name </ strong >< br />
Description : $link -> link_description </ td >
< td >< a href = " $link->link_url " title = " Visit $link->link_name " > $short_url </ a ></ td >
< td > $link -> category </ td >
< td > $link -> link_rel </ td >
2003-12-07 22:46:42 -05:00
< td align = 'center' > $image </ td >
< td align = 'center' > $visible </ td >
2003-07-26 19:52:36 -04:00
LINKS ;
$show_buttons = 1 ; // default
2003-07-30 10:44:57 -04:00
2003-08-03 19:46:20 -04:00
if ( get_settings ( 'links_use_adminlevels' ) && ( $link -> user_level > $user_level )) {
2003-07-26 19:52:36 -04:00
$show_buttons = 0 ;
}
2003-07-30 10:44:57 -04:00
2003-07-26 19:52:36 -04:00
if ( $show_buttons ) {
echo <<< LINKS
2003-12-27 15:55:03 -05:00
< td >< a href = " link-manager.php?link_id= $link->link_id &action=linkedit " class = " edit " > Edit </ a ></ td >
< td >< a href = " link-manager.php?link_id= $link->link_id &action=Delete " onclick = " return confirm('You are about to delete this link. \\ n \ 'Cancel \ ' to stop, \ 'OK \ ' to delete.'); " class = " delete " > Delete </ a ></ td >
2003-07-26 19:52:36 -04:00
< td >< input type = " checkbox " name = " linkcheck[] " value = " $link->link_id " />< td >
2003-06-01 06:16:04 -04:00
LINKS ;
2003-07-26 19:52:36 -04:00
} else {
2003-12-07 22:46:42 -05:00
echo " <td> </td><td> </td><td> </td> \n " ;
2003-07-26 19:52:36 -04:00
}
2003-12-07 22:46:42 -05:00
echo " \n \t </tr> " ;
2003-06-03 18:42:13 -04:00
}
}
2003-05-22 08:12:53 -04:00
?>
2003-07-26 19:52:36 -04:00
</ table >
2003-12-07 22:46:42 -05:00
2003-07-29 12:45:19 -04:00
</ div >
< div class = " wrap " >
2003-12-07 22:46:42 -05:00
< table width = " 100% " cellpadding = " 3 " cellspacing = " 3 " >
2003-07-29 12:45:19 -04:00
< tr >< th colspan = " 4 " > Manage Multiple Links :</ th ></ tr >
< tr >< td colspan = " 4 " > Use the checkboxes on the right to select multiple links and choose an action below :</ td ></ tr >
2003-07-26 19:52:36 -04:00
< tr >
2003-07-29 12:45:19 -04:00
< td >
2003-08-06 20:00:55 -04:00
< input type = " submit " name = " action2 " value = " Assign " /> ownership < ? php echo gethelp_link ( $this_file , 'assign_ownership' ); ?> to:
2003-07-26 19:52:36 -04:00
< ? php
$results = $wpdb -> get_results ( " SELECT ID, user_login FROM $tableusers WHERE user_level > 0 ORDER BY ID " );
2003-07-29 12:45:19 -04:00
echo " <select name= \" newowner \" size= \" 1 \" > \n " ;
2003-07-26 19:52:36 -04:00
foreach ( $results as $row ) {
2003-07-29 12:45:19 -04:00
echo " <option value= \" " . $row -> ID . " \" " ;
2003-07-26 19:52:36 -04:00
echo " > " . $row -> user_login ;
echo " </option> \n " ;
}
2003-07-29 12:45:19 -04:00
echo " </select> \n " ;
2003-07-26 19:52:36 -04:00
?>
2003-07-29 12:45:19 -04:00
</ td >
< td >
2003-08-06 20:00:55 -04:00
Toggle < input type = " submit " name = " action2 " value = " Visibility " />< ? php echo gethelp_link ( $this_file , 'toggle_visibility' ); ?>
2003-07-29 12:45:19 -04:00
</ td >
< td >
2003-08-06 20:00:55 -04:00
< input type = " submit " name = " action2 " value = " Move " />< ? php echo gethelp_link ( $this_file , 'move_to_cat' ); ?> to category
2003-07-29 12:45:19 -04:00
< ? php category_dropdown ( 'category' ); ?>
2003-07-26 19:52:36 -04:00
</ td >
< td align = " right " >
2003-08-06 20:00:55 -04:00
< a href = " # " onclick = " checkAll(document.getElementById('links')); return false; " > Toggle Checkboxes </ a >< ? php echo gethelp_link ( $this_file , 'toggle_checkboxes' ); ?>
2003-07-26 19:52:36 -04:00
</ td >
</ tr >
2003-06-01 06:16:04 -04:00
</ table >
</ form >
2003-05-22 08:12:53 -04:00
< ? php
} // end if !popup
?>
2003-05-23 04:29:51 -04:00
</ div >
2003-05-22 08:12:53 -04:00
< ? php
break ;
} // end default
} // end case
?>
2003-05-23 04:29:51 -04:00
2003-12-10 19:22:36 -05:00
< ? php include ( 'admin-footer.php' ); ?>