From d48e85e0ac5e675ca33fac173f30c75403d1033f Mon Sep 17 00:00:00 2001 From: donncha Date: Thu, 22 Jun 2006 18:31:50 +0000 Subject: Moved everything in wp-inst down a directory. Uses's Ryan Boren's htaccess rules and mods If you're upgrading, try this on a test server first! git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@591 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-inst/wp-admin/plugins.php | 142 ------------------------------------------- 1 file changed, 142 deletions(-) delete mode 100644 wp-inst/wp-admin/plugins.php (limited to 'wp-inst/wp-admin/plugins.php') diff --git a/wp-inst/wp-admin/plugins.php b/wp-inst/wp-admin/plugins.php deleted file mode 100644 index e289e59..0000000 --- a/wp-inst/wp-admin/plugins.php +++ /dev/null @@ -1,142 +0,0 @@ - - - -

activated.') ?>

-
- - -

deactivated.') ?>

-
- - -
-

-

-'; - _e("Couldn't open plugins directory or there are no plugins available."); // TODO: make more helpful - echo '

'; -} else { -?> - - - - - - - - - - $plugin_data) { - $style = ('class="alternate"' == $style|| 'class="alternate active"' == $style) ? '' : 'alternate'; - - if (!empty($current_plugins) && in_array($plugin_file, $current_plugins)) { - $action = "".__('Deactivate').""; - $plugin_data['Title'] = "{$plugin_data['Title']}"; - $style .= $style == 'alternate' ? ' active' : 'active'; - } else { - $action = "".__('Activate').""; - } - $plugin_data['Description'] = wp_kses($plugin_data['Description'], array('a' => array('href' => array(),'title' => array()),'abbr' => array('title' => array()),'acronym' => array('title' => array()),'code' => array(),'em' => array(),'strong' => array()) ); ; - if ($style != '') $style = 'class="' . $style . '"'; - echo " - - - - - - "; - } -?> - -
{$plugin_data['Title']}{$plugin_data['Version']}{$plugin_data['Description']} ".sprintf(__('By %s'), $plugin_data['Author']).".$action
- - -

wp-content/plugins directory and it will be automatically deactivated.'); ?>

- -

-

WordPress plugin directory. To install a plugin you generally just need to upload the plugin file into your wp-content/plugins directory. Once a plugin is uploaded, you may activate it here.'); ?>

- -
- - -- cgit