summaryrefslogtreecommitdiffstats
path: root/wp-admin/wpmu-themes.php
blob: 512b7bba1eb98128c481122ff79e6d1cf850c5e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
require_once('admin.php');

$title = __('WordPress MU &rsaquo; Admin &rsaquo; Themes');
$parent_file = 'wpmu-admin.php';
require_once('admin-header.php');

if( is_site_admin() == false ) {
	wp_die( __('<p>You do not have permission to access this page.</p>') );
}

if (isset($_GET['updated'])) {
	?>
	<div id="message" class="updated fade"><p><?php _e('Site themes saved.') ?></p></div>
	<?php
}

$themes = get_themes();
$allowed_themes = get_site_allowed_themes();
?>
<div class="wrap">
	<form action='wpmu-edit.php?action=updatethemes' method='post'>
		<h2><?php _e('Site Themes') ?></h2>
		<p><?php _e('Disable themes site-wide. You can enable themes on a blog by blog basis.') ?></p>		
		<table style="border:0; width:100%;" cellspacing="5" cellpadding="5">
			<thead>
			<tr>
				<th style="width:15%;"><?php _e('Active') ?></th>
				<th style="width:15%;"><?php _e('Theme') ?></th>
				<th style="width:70%;"><?php _e('Description') ?></th>
			</tr>
			</thead>
			<tbody id="the-list">
			<?php
			foreach( (array) $themes as $key => $theme ) :
				$theme_key = wp_specialchars($theme['Stylesheet']);
				$class = ('alternate' == $class) ? '' : 'alternate';
				$enabled = $disabled = '';
				
				if( isset( $allowed_themes[ $theme_key ] ) == true ) {
					$enabled = 'checked="checked" ';
				} else {
					$disabled = 'checked="checked" ';
				}
				?>
				<tr valign="top" class="<?php echo $class; ?>">
					<td style="text-align:center;">
						<label><input name="theme[<?php echo $theme_key ?>]" type="radio" id="disabled_<?php echo $theme_key ?>" value="disabled" <?php echo $disabled ?> /> <?php _e('No') ?></label>
						&nbsp;&nbsp;&nbsp; 
						<label><input name="theme[<?php echo $theme_key ?>]" type="radio" id="enabled_<?php echo $theme_key ?>" value="enabled" <?php echo $enabled ?> /> <?php _e('Yes') ?></label>
					</td>
					<th scope="row" style="text-align:left;"><?php echo $key ?></th> 
					<td><?php echo $theme['Description'] ?></td>
				</tr> 
			<?php endforeach; ?>
			</tbody>
		</table>
		
		<p class="submit">
			<input type='submit' value='<?php _e('Update Themes &raquo;') ?>' /></p>
	</form>
</div>

<?php include('admin-footer.php'); ?>