2007-04-24 03:05:17 +02:00
< ? php
require_once 'admin.php' ;
2007-05-20 01:44:37 +02:00
if ( ! current_user_can ( 'switch_themes' ) )
2007-05-04 19:52:22 +02:00
wp_die ( __ ( 'Cheatin’ uh?' ));
2007-08-24 00:34:15 +02:00
wp_enqueue_script ( 'interface' );
2007-04-24 03:05:17 +02:00
function wp_widgets_admin_head () {
2007-04-29 22:16:26 +02:00
global $wp_registered_sidebars , $wp_registered_widgets , $wp_registered_widget_controls ;
2007-04-24 03:05:17 +02:00
?>
2007-08-29 01:23:38 +02:00
< ? php wp_admin_css ( 'css/widgets' ); ?>
2007-05-19 19:24:25 +02:00
<!-- [ if IE 7 ] >
< style type = " text/css " >
2007-08-16 20:49:32 +02:00
#palette { float: <?php echo ( get_bloginfo( 'text_direction' ) == 'rtl' ) ? 'right' : 'left'; ?>; }
2007-05-19 19:24:25 +02:00
</ style >
<! [ endif ] -->
2007-04-29 22:16:26 +02:00
< ? php
2007-06-14 04:25:30 +02:00
2007-04-29 22:16:26 +02:00
$cols = array ();
foreach ( $wp_registered_sidebars as $index => $sidebar ) {
$cols [] = '\'' . $index . '\'' ;
}
$cols = implode ( ', ' , $cols );
2007-06-14 04:25:30 +02:00
2007-04-29 22:16:26 +02:00
$widgets = array ();
foreach ( $wp_registered_widgets as $name => $widget ) {
$widgets [] = '\'' . $widget [ 'id' ] . '\'' ;
}
$widgets = implode ( ', ' , $widgets );
?>
< script type = " text/javascript " >
// <![CDATA[
var cols = [ < ? php echo $cols ; ?> ];
var widgets = [ < ? php echo $widgets ; ?> ];
var controldims = new Array ;
< ? php foreach ( $wp_registered_widget_controls as $name => $widget ) : ?>
2007-08-24 00:34:15 +02:00
controldims [ '#<?php echo $widget[' id ']; ?>control' ] = new Array ;
controldims [ '#<?php echo $widget[' id ']; ?>control' ][ 'width' ] = < ? php echo ( int ) $widget [ 'width' ]; ?> ;
controldims [ '#<?php echo $widget[' id ']; ?>control' ][ 'height' ] = < ? php echo ( int ) $widget [ 'height' ]; ?> ;
2007-04-29 22:16:26 +02:00
< ? php endforeach ; ?>
function initWidgets () {
< ? php foreach ( $wp_registered_widget_controls as $name => $widget ) : ?>
2007-08-24 00:34:15 +02:00
jQuery ( '#<?php echo $widget[' id ']; ?>popper' ) . click ( function () { popControl ( '#<?php echo $widget[' id ']; ?>control' );});
jQuery ( '#<?php echo $widget[' id ']; ?>closer' ) . click ( function () { unpopControl ( '#<?php echo $widget[' id ']; ?>control' );});
jQuery ( '#<?php echo $widget[' id ']; ?>control' ) . Draggable ({ handle : '.controlhandle' , zIndex : 1000 });
2007-04-29 22:16:26 +02:00
if ( true && window . opera )
2007-08-24 00:34:15 +02:00
jQuery ( '#<?php echo $widget[' id ']; ?>control' ) . css ( 'border' , '1px solid #bbb' );
2007-04-29 22:16:26 +02:00
< ? php endforeach ; ?>
2007-08-24 00:34:15 +02:00
jQuery ( '#shadow' ) . css ( 'opacity' , '0' );
jQuery ( widgets ) . each ( function ( o ) { o = '#widgetprefix-' + o ; jQuery ( o ) . css ( 'position' , 'relative' );} );
2007-04-29 22:16:26 +02:00
}
function resetDroppableHeights () {
var max = 6 ;
2007-08-24 00:34:15 +02:00
jQuery . map ( cols , function ( o ) {
var c = jQuery ( '#' + o + ' li' ) . length ;
if ( c > max ) max = c ;
});
var maxheight = 35 * ( max + 1 );
jQuery . map ( cols , function ( o ) {
height = 0 == jQuery ( '#' + o + ' li' ) . length ? maxheight - jQuery ( '#' + o + 'placemat' ) . height () : maxheight ;
jQuery ( '#' + o ) . height ( height );
});
2007-04-29 22:16:26 +02:00
}
function maxHeight ( elm ) {
htmlheight = document . body . parentNode . clientHeight ;
bodyheight = document . body . clientHeight ;
var height = htmlheight > bodyheight ? htmlheight : bodyheight ;
2007-08-24 00:34:15 +02:00
jQuery ( elm ) . height ( height );
}
function getViewportDims () {
var x , y ;
if ( self . innerHeight ) { // all except Explorer
x = self . innerWidth ;
y = self . innerHeight ;
} else if ( document . documentElement && document . documentElement . clientHeight ) { // Explorer 6 Strict Mode
x = document . documentElement . clientWidth ;
y = document . documentElement . clientHeight ;
} else if ( document . body ) { // other Explorers
x = document . body . clientWidth ;
y = document . body . clientHeight ;
}
return new Array ( x , y );
2007-04-29 22:16:26 +02:00
}
function dragChange ( o ) {
2007-08-24 00:34:15 +02:00
var p = getViewportDims ();
var screenWidth = p [ 0 ];
var screenHeight = p [ 1 ];
var elWidth = parseInt ( jQuery ( o ) . css ( 'width' ) );
var elHeight = parseInt ( jQuery ( o ) . css ( 'height' ) );
var elLeft = parseInt ( jQuery ( o ) . css ( 'left' ) );
var elTop = parseInt ( jQuery ( o ) . css ( 'top' ) );
2007-09-04 01:32:58 +02:00
if ( screenWidth < ( parseInt ( elLeft ) + parseInt ( elWidth ) ) )
2007-08-24 00:34:15 +02:00
jQuery ( o ) . css ( 'left' , ( screenWidth - elWidth ) + 'px' );
2007-09-04 01:32:58 +02:00
if ( screenHeight < ( parseInt ( elTop ) + parseInt ( elHeight ) ) )
2007-08-24 00:34:15 +02:00
jQuery ( o ) . css ( 'top' , ( screenHeight - elHeight ) + 'px' );
2007-09-04 01:32:58 +02:00
if ( elLeft < 1 )
2007-08-24 00:34:15 +02:00
jQuery ( o ) . css ( 'left' , '1px' );
if ( elTop < 1 )
jQuery ( o ) . css ( 'top' , '1px' );
2007-04-29 22:16:26 +02:00
}
function popControl ( elm ) {
var x = ( document . body . clientWidth - controldims [ elm ][ 'width' ] ) / 2 ;
var y = ( document . body . parentNode . clientHeight - controldims [ elm ][ 'height' ] ) / 2 ;
2007-08-24 00:34:15 +02:00
jQuery ( elm ) . css ({ display : 'block' , width : controldims [ elm ][ 'width' ] + 'px' , height : controldims [ elm ][ 'height' ] + 'px' , position : 'absolute' , right : x + 'px' , top : y + 'px' , zIndex : '1000' });
jQuery ( elm ) . attr ( 'class' , 'control' );
jQuery ( '#shadow' ) . click ( function () { unpopControl ( elm );});
window . onresize = function (){ maxHeight ( '#shadow' ); dragChange ( elm );};
2007-04-29 22:16:26 +02:00
popShadow ();
}
function popShadow () {
2007-08-24 00:34:15 +02:00
maxHeight ( '#shadow' );
jQuery ( '#shadow' ) . css ({ zIndex : '999' , display : 'block' });
jQuery ( '#shadow' ) . fadeTo ( 'fast' , 0.2 );
2007-04-29 22:16:26 +02:00
}
function unpopShadow () {
2007-08-24 00:34:15 +02:00
jQuery ( '#shadow' ) . fadeOut ( 'fast' , function () { jQuery ( '#shadow' ) . hide ()});
2007-04-29 22:16:26 +02:00
}
function unpopControl ( el ) {
2007-08-24 00:34:15 +02:00
jQuery ( el ) . attr ( 'class' , 'hidden' );
jQuery ( el ) . hide ();
2007-04-29 22:16:26 +02:00
unpopShadow ();
}
function serializeAll () {
2007-08-24 00:34:15 +02:00
< ? php $i = 0 ; foreach ( $wp_registered_sidebars as $index => $sidebar ) : $i ++ ; ?>
var serial < ? php echo $i ?> = jQuery.SortSerialize('<?php echo $index ?>');
jQuery ( '#<?php echo $index ?>order' ) . attr ( 'value' , serial < ? php echo $i ?> .hash.replace(/widgetprefix-/g, ''));
2007-04-29 22:16:26 +02:00
< ? php endforeach ; ?>
}
function updateAll () {
2007-09-04 01:32:58 +02:00
jQuery . map ( cols , function ( o ) {
2007-08-24 00:34:15 +02:00
if ( jQuery ( '#' + o + ' li' ) . length )
jQuery ( '#' + o + 'placemat span.handle' ) . hide ();
2007-09-04 01:32:58 +02:00
else
2007-08-24 00:34:15 +02:00
jQuery ( '#' + o + 'placemat span.handle' ) . show ();
2007-04-29 22:16:26 +02:00
});
2007-08-24 00:34:15 +02:00
resetDroppableHeights ();
2007-04-29 22:16:26 +02:00
}
2007-08-24 00:34:15 +02:00
jQuery ( document ) . ready ( function () {
updateAll ();
initWidgets ();
});
2007-04-29 22:16:26 +02:00
// ]]>
</ script >
< ? php
2007-04-24 03:05:17 +02:00
}
add_action ( 'admin_head' , 'wp_widgets_admin_head' );
do_action ( 'sidebar_admin_setup' );
function wp_widget_draggable ( $name ) {
global $wp_registered_widgets , $wp_registered_widget_controls ;
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
if ( ! isset ( $wp_registered_widgets [ $name ] ) ) {
return ;
}
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
$sanitized_name = sanitize_title ( $wp_registered_widgets [ $name ][ 'id' ] );
$link_title = __ ( 'Configure' );
2007-09-04 01:32:58 +02:00
$popper = ( isset ( $wp_registered_widget_controls [ $name ] ) )
2007-04-24 03:05:17 +02:00
? ' <div class="popper" id="' . $sanitized_name . 'popper" title="' . $link_title . '">≡</div>'
: '' ;
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
$output = '<li class="module" id="widgetprefix-%1$s"><span class="handle">%2$s</span></li>' ;
2007-06-14 04:25:30 +02:00
2007-04-25 05:02:28 +02:00
printf ( $output , $sanitized_name , $wp_registered_widgets [ $name ][ 'name' ] . $popper );
2007-04-24 03:05:17 +02:00
}
$title = __ ( 'Widgets' );
$parent_file = 'themes.php' ;
require_once 'admin-header.php' ;
if ( count ( $wp_registered_sidebars ) < 1 ) {
?>
< div class = " wrap " >
< h2 >< ? php _e ( 'No Sidebars Defined' ); ?> </h2>
2007-06-14 04:25:30 +02:00
2007-04-26 04:13:18 +02:00
< p >< ? php _e ( 'You are seeing this message because the theme you are currently using isn’t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please <a href="http://automattic.com/code/widgets/themes/">follow these instructions</a>.' ); /* TODO: article on codex */ ; ?> </p>
2007-04-24 03:05:17 +02:00
</ div >
< ? php
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
require_once 'admin-footer.php' ;
exit ;
}
$sidebars_widgets = wp_get_sidebars_widgets ();
if ( empty ( $sidebars_widgets ) ) {
$sidebars_widgets = wp_get_widget_defaults ();
}
if ( isset ( $_POST [ 'action' ] ) ) {
check_admin_referer ( 'widgets-save-widget-order' );
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
switch ( $_POST [ 'action' ] ) {
case 'default' :
$sidebars_widgets = wp_get_widget_defaults ();
wp_set_sidebars_widgets ( $sidebars_widgets );
break ;
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
case 'save_widget_order' :
$sidebars_widgets = array ();
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
foreach ( $wp_registered_sidebars as $index => $sidebar ) {
$postindex = $index . 'order' ;
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
parse_str ( $_POST [ $postindex ], $order );
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
$new_order = $order [ $index ];
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
if ( is_array ( $new_order ) ) {
foreach ( $new_order as $sanitized_name ) {
foreach ( $wp_registered_widgets as $name => $widget ) {
if ( $sanitized_name == $widget [ 'id' ] ) {
$sidebars_widgets [ $index ][] = $name ;
}
}
}
}
}
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
wp_set_sidebars_widgets ( $sidebars_widgets );
break ;
}
}
ksort ( $wp_registered_widgets );
$inactive_widgets = array ();
foreach ( $wp_registered_widgets as $name => $widget ) {
$is_active = false ;
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
foreach ( $wp_registered_sidebars as $index => $sidebar ) {
if ( is_array ( $sidebars_widgets [ $index ] ) && in_array ( $name , $sidebars_widgets [ $index ] ) ) {
$is_active = true ;
break ;
}
}
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
if ( ! $is_active ) {
$inactive_widgets [] = $name ;
}
}
$containers = array ( 'palette' );
foreach ( $wp_registered_sidebars as $index => $sidebar ) {
$containers [] = $index ;
}
$c_string = '' ;
foreach ( $containers as $container ) {
$c_string .= '"' . $container . '",' ;
}
$c_string = substr ( $c_string , 0 , - 1 );
if ( isset ( $_POST [ 'action' ] ) ) {
?>
< div class = " fade updated " id = " message " >
< p >< ? php printf ( __ ( 'Sidebar updated. <a href="%s">View site »</a>' ), get_bloginfo ( 'url' ) . '/' ); ?> </p>
</ div >
< ? php
}
?>
< div class = " wrap " >
< h2 >< ? php _e ( 'Sidebar Arrangement' ); ?> </h2>
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
< p >< ? php _e ( 'You can drag and drop widgets onto your sidebar below.' ); ?> </p>
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
< form id = " sbadmin " method = " post " onsubmit = " serializeAll(); " >
2007-05-14 05:39:05 +02:00
< p class = " submit " >
< input type = " submit " value = " <?php _e( 'Save Changes »' ); ?> " />
</ p >
2007-04-24 03:05:17 +02:00
< div id = " zones " >
< ? php
foreach ( $wp_registered_sidebars as $index => $sidebar ) {
?>
< input type = " hidden " id = " <?php echo $index ; ?>order " name = " <?php echo $index ; ?>order " value = " " />
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
< div class = " dropzone " >
< h3 >< ? php echo $sidebar [ 'name' ]; ?> </h3>
2007-06-14 04:25:30 +02:00
2007-08-24 00:34:15 +02:00
< div id = " <?php echo $index ; ?>placemat " class = " placemat " >
2007-04-24 03:05:17 +02:00
< span class = " handle " >
< h4 >< ? php _e ( 'Default Sidebar' ); ?> </h4>
< ? php _e ( 'Your theme will display its usual sidebar when this box is empty. Dragging widgets into this box will replace the usual sidebar with your customized sidebar.' ); ?>
</ span >
</ div >
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
< ul id = " <?php echo $index ; ?> " >
< ? php
if ( is_array ( $sidebars_widgets [ $index ] ) ) {
foreach ( $sidebars_widgets [ $index ] as $name ) {
wp_widget_draggable ( $name );
}
}
?>
</ ul >
</ div >
< ? php
}
?>
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
</ div >
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
< div id = " palettediv " >
< h3 >< ? php _e ( 'Available Widgets' ); ?> </h3>
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
< ul id = " palette " >
< ? php
foreach ( $inactive_widgets as $name ) {
wp_widget_draggable ( $name );
}
?>
</ ul >
</ div >
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
< script type = " text/javascript " >
// <![CDATA[
2007-08-24 00:34:15 +02:00
jQuery ( document ) . ready ( function (){
2007-04-24 03:05:17 +02:00
< ? php foreach ( $containers as $container ) { ?>
2007-08-24 00:34:15 +02:00
jQuery ( 'ul#<?php echo $container; ?>' ) . Sortable ({
accept : 'module' , activeclass : 'activeDraggable' , opacity : 0.8 , revert : true , onStop : updateAll
});
2007-04-24 03:05:17 +02:00
< ? php } ?>
2007-08-24 00:34:15 +02:00
});
2007-04-24 03:05:17 +02:00
// ]]>
</ script >
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
< p class = " submit " >
2007-05-04 19:52:22 +02:00
< ? php wp_nonce_field ( 'widgets-save-widget-order' ); ?>
2007-04-24 03:05:17 +02:00
< input type = " hidden " name = " action " id = " action " value = " save_widget_order " />
< input type = " submit " value = " <?php _e( 'Save Changes »' ); ?> " />
</ p >
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
< div id = " controls " >
< ? php foreach ( $wp_registered_widget_controls as $name => $widget ) { ?>
< div class = " hidden " id = " <?php echo $widget['id'] ; ?>control " >
2007-04-27 02:51:19 +02:00
< span class = " controlhandle " >< ? php echo $widget [ 'name' ]; ?> </span>
2007-04-24 03:05:17 +02:00
< span id = " <?php echo $widget['id'] ; ?>closer " class = " controlcloser " >& #215;</span>
< div class = " controlform " >
< ? php call_user_func_array ( $widget [ 'callback' ], $widget [ 'params' ] ); ?>
</ div >
</ div >
< ? php } ?>
</ div >
</ form >
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
< br class = " clear " />
</ div >
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
< div id = " shadow " > </ div >
2007-06-14 04:25:30 +02:00
2007-04-24 03:05:17 +02:00
< ? php do_action ( 'sidebar_admin_page' ); ?>
2007-04-25 05:02:28 +02:00
< ? php require_once 'admin-footer.php' ; ?>