Rename \Mibew\PluginManager to \Mibew\Plugin\Manager

This commit is contained in:
Dmitriy Simushev 2014-02-25 15:09:02 +00:00
parent 522aed6a5e
commit 9598f0db42
3 changed files with 4 additions and 4 deletions

View File

@ -15,12 +15,12 @@
* limitations under the License. * limitations under the License.
*/ */
namespace Mibew; namespace Mibew\Plugin;
/** /**
* Manage plugins * Manage plugins
*/ */
class PluginManager class Manager
{ {
/** /**
* Contains all loaded plugins * Contains all loaded plugins

View File

@ -16,7 +16,7 @@
*/ */
// Import namespaces and classes of the core // Import namespaces and classes of the core
use Mibew\PluginManager; use Mibew\Plugin\Manager as PluginManager;
/** /**
* Name for the cookie to store locale code in use * Name for the cookie to store locale code in use

View File

@ -94,5 +94,5 @@ if (function_exists("date_default_timezone_set")) {
if (!empty($plugins_list)) { if (!empty($plugins_list)) {
// Variable $plugins_config defined in libs/config.php // Variable $plugins_config defined in libs/config.php
\Mibew\PluginManager::loadPlugins($plugins_list); \Mibew\Plugin\Manager::loadPlugins($plugins_list);
} }