ShellBanner
System:Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686
Software:Apache. PHP/5.3.6-13ubuntu3.10
ID:uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
Safe Mode:OFF
Open_Basedir:OFF
Freespace:26.62 GB of 70.42 GB (37.81%)
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,

/ http/ marphoto/ wp-admin/ network/ - drwxr-xr-x

Directory:
Viewing file:     site-themes.php (7.14 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Edit Site Themes Administration Screen
 *
 * @package WordPress
 * @subpackage Multisite
 * @since 3.1.0
 */

/** Load WordPress Administration Bootstrap */
require_once( dirname__FILE__ ) . '/admin.php' );

if ( ! 
is_multisite() )
    
wp_die__'Multisite support is not enabled.' ) );

if ( ! 
current_user_can'manage_sites' ) )
    
wp_die__'You do not have sufficient permissions to manage themes for this site.' ) );

get_current_screen()->add_help_tab( array(
    
'id'      => 'overview',
    
'title'   => __('Overview'),
    
'content' =>
        
'<p>' __('The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.') . '</p>' .
        
'<p>' __('<strong>Info</strong> - The domain and path are rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.') . '</p>' .
        
'<p>' __('<strong>Users</strong> - This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.') . '</p>' .
        
'<p>' sprintf__('<strong>Themes</strong> - This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site&#8217;s Appearance menu. To enable a theme for the entire network, see the <a href="%s">Network Themes</a> screen.' ), network_admin_url'themes.php' ) ) . '</p>' .
        
'<p>' __('<strong>Settings</strong> - This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database.') . '</p>'
) );

get_current_screen()->set_help_sidebar(
    
'<p><strong>' __('For more information:') . '</strong></p>' .
    
'<p>' __('<a href="http://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' .
    
'<p>' __('<a href="http://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>'
);

$wp_list_table _get_list_table('WP_MS_Themes_List_Table');

$action $wp_list_table->current_action();

$s = isset($_REQUEST['s']) ? $_REQUEST['s'] : '';

// Clean up request URI from temporary args for screen options/paging uri's to work as expected.
$temp_args = array( 'enabled''disabled''error' );
$_SERVER['REQUEST_URI'] = remove_query_arg$temp_args$_SERVER['REQUEST_URI'] );
$referer remove_query_arg$temp_argswp_get_referer() );

$id = isset( $_REQUEST['id'] ) ? intval$_REQUEST['id'] ) : 0;

if ( ! 
$id )
    
wp_die__('Invalid site ID.') );

$wp_list_table->prepare_items();

$details get_blog_details$id );
if ( !
can_edit_network$details->site_id ) )
    
wp_die__'You do not have permission to access this page.' ) );

$is_main_site is_main_site$id );

if ( 
$action ) {
    
switch_to_blog$id );
    
$allowed_themes get_option'allowedthemes' );

    switch ( 
$action ) {
        case 
'enable':
            
check_admin_referer'enable-theme_' $_GET['theme'] );
            
$theme $_GET['theme'];
            
$action 'enabled';
            
$n 1;
            if ( !
$allowed_themes )
                
$allowed_themes = array( $theme => true );
            else
                
$allowed_themes[$theme] = true;
            break;
        case 
'disable':
            
check_admin_referer'disable-theme_' $_GET['theme'] );
            
$theme $_GET['theme'];
            
$action 'disabled';
            
$n 1;
            if ( !
$allowed_themes )
                
$allowed_themes = array();
            else
                unset( 
$allowed_themes[$theme] );
            break;
        case 
'enable-selected':
            
check_admin_referer'bulk-themes' );
            if ( isset( 
$_POST['checked'] ) ) {
                
$themes = (array) $_POST['checked'];
                
$action 'enabled';
                
$n count$themes );
                foreach( (array) 
$themes as $theme )
                    
$allowed_themes$theme ] = true;
            } else {
                
$action 'error';
                
$n 'none';
            }
            break;
        case 
'disable-selected':
            
check_admin_referer'bulk-themes' );
            if ( isset( 
$_POST['checked'] ) ) {
                
$themes = (array) $_POST['checked'];
                
$action 'disabled';
                
$n count$themes );
                foreach( (array) 
$themes as $theme )
                    unset( 
$allowed_themes$theme ] );
            } else {
                
$action 'error';
                
$n 'none';
            }
            break;
    }

    
update_option'allowedthemes'$allowed_themes );
    
restore_current_blog();

    
wp_safe_redirectadd_query_arg( array( 'id' => $id$action => $n ), $referer ) );
    exit;
}

if ( isset( 
$_GET['action'] ) && 'update-site' == $_GET['action'] ) {
    
wp_safe_redirect$referer );
    exit();
}

add_thickbox();
add_screen_option'per_page', array( 'label' => _x'Themes''themes per page (screen options)' ) ) );

$site_url_no_http preg_replace'#^http(s)?://#'''get_blogaddress_by_id$id ) );
$title_site_url_linked sprintf__('Edit Site: <a href="%1$s">%2$s</a>'), get_blogaddress_by_id$id ), $site_url_no_http );
$title sprintf__('Edit Site: %s'), $site_url_no_http );

$parent_file 'sites.php';
$submenu_file 'sites.php';

require( 
ABSPATH 'wp-admin/admin-header.php' ); ?>

<div class="wrap">
<h2 id="edit-site"><?php echo $title_site_url_linked ?></h2>
<h3 class="nav-tab-wrapper">
<?php
$tabs 
= array(
    
'site-info'     => array( 'label' => __'Info' ),     'url' => 'site-info.php'     ),
    
'site-users'    => array( 'label' => __'Users' ),    'url' => 'site-users.php'    ),
    
'site-themes'   => array( 'label' => __'Themes' ),   'url' => 'site-themes.php'   ),
    
'site-settings' => array( 'label' => __'Settings' ), 'url' => 'site-settings.php' ),
);
foreach ( 
$tabs as $tab_id => $tab ) {
    
$class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' '';
    echo 
'<a href="' $tab['url'] . '?id=' $id .'" class="nav-tab' $class '">' esc_html$tab['label'] ) . '</a>';
}
?>
</h3><?php

if ( isset( $_GET['enabled'] ) ) {
    
$_GET['enabled'] = absint$_GET['enabled'] );
    echo 
'<div id="message" class="updated"><p>' sprintf_n'Theme enabled.''%s themes enabled.'$_GET['enabled'] ), number_format_i18n$_GET['enabled'] ) ) . '</p></div>';
} elseif ( isset( 
$_GET['disabled'] ) ) {
    
$_GET['disabled'] = absint$_GET['disabled'] );
    echo 
'<div id="message" class="updated"><p>' sprintf_n'Theme disabled.''%s themes disabled.'$_GET['disabled'] ), number_format_i18n$_GET['disabled'] ) ) . '</p></div>';
} elseif ( isset( 
$_GET['error'] ) && 'none' == $_GET['error'] ) {
    echo 
'<div id="message" class="error"><p>' __'No theme selected.' ) . '</p></div>';
?>

<p><?php _e'Network enabled themes are not shown on this screen.' ?></p>

<form method="get" action="">
<?php $wp_list_table->search_box__'Search Installed Themes' ), 'theme' ); ?>
<input type="hidden" name="id" value="<?php echo esc_attr$id ?>" />
</form>

<?php $wp_list_table->views(); ?>

<form method="post" action="site-themes.php?action=update-site">
    <input type="hidden" name="id" value="<?php echo esc_attr$id ?>" />

<?php $wp_list_table->display(); ?>

</form>

</div>
<?php include(ABSPATH 'wp-admin/admin-footer.php'); ?>
Command:
Quick Commands:
Upload:
[OK] Max size: 100MB
PHP Filesystem: <@ Ú
Search File:
regexp
Create File:
Overwrite [OK]
View File:
Mass Defacement:
[+] Main Directory: [+] Defacement Url:
LmfaoX Shell - Private Build [BETA] - v0.1 -; Generated: 0.2798 seconds