Browse Source

allowing install/cake-wide plugins

AD7six 16 years ago
parent
commit
94e986561b
3 changed files with 2 additions and 4 deletions
  1. 0 2
      cake/console/cake.php
  2. 2 2
      cake/libs/configure.php
  3. 0 0
      plugins/empty

+ 0 - 2
cake/console/cake.php

@@ -226,7 +226,6 @@ class ShellDispatcher {
 		if (!class_exists('Folder')) {
 			require LIBS . 'folder.php';
 		}
-
 		foreach ($pluginPaths as $pluginPath) {
 			$Folder =& new Folder($pluginPath);
 			list($plugins,) = $Folder->read(false, true);
@@ -608,7 +607,6 @@ class ShellDispatcher {
 
 		$this->stdout("\nAvailable Shells:");
 		$_shells = array();
-
 		foreach ($this->shellPaths as $path) {
 			if (is_dir($path)) {
 				$shells = App::objects('file', $path);

+ 2 - 2
cake/libs/configure.php

@@ -630,9 +630,9 @@ class App extends Object {
 			'views' => array(VIEWS),
 			'helpers' => array(HELPERS),
 			'locales' => array(APP . 'locale' . DS),
-			'shells' => array(APP . 'vendors' . DS . 'shells', VENDORS . 'shells'),
+			'shells' => array(APP . 'vendors' . DS . 'shells' . DS, VENDORS . 'shells' . DS),
 			'vendors' => array(APP . 'vendors' . DS, VENDORS),
-			'plugins' => array(APP . 'plugins' . DS),
+			'plugins' => array(APP . 'plugins' . DS, CAKE_CORE_INCLUDE_PATH . DS . 'plugins' . DS),
 		);
 
 		if ($reset == true) {

+ 0 - 0
plugins/empty