mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-03-18 07:29:51 +00:00
Updating includes for shell + task includes to point at the new file.
This commit is contained in:
parent
0a86b7f208
commit
9b8ce2d7fa
17 changed files with 21 additions and 189 deletions
|
@ -19,20 +19,8 @@
|
||||||
*/
|
*/
|
||||||
App::import('Shell', 'Shell', false);
|
App::import('Shell', 'Shell', false);
|
||||||
|
|
||||||
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'acl.php';
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('AclShell')) {
|
|
||||||
require CAKE . 'console' . DS . 'libs' . DS . 'acl.php';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* AclShellTest class
|
* AclShellTest class
|
||||||
|
|
|
@ -19,20 +19,9 @@
|
||||||
*/
|
*/
|
||||||
App::import('Shell', 'Shell', false);
|
App::import('Shell', 'Shell', false);
|
||||||
|
|
||||||
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'api.php';
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('ApiShell')) {
|
|
||||||
require CAKE . 'console' . DS . 'libs' . DS . 'api.php';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ApiShellTest class
|
* ApiShellTest class
|
||||||
|
|
|
@ -21,17 +21,7 @@
|
||||||
App::import('Shell', 'Shell', false);
|
App::import('Shell', 'Shell', false);
|
||||||
App::import('Core', 'Controller');
|
App::import('Core', 'Controller');
|
||||||
|
|
||||||
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'bake.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'bake.php';
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'model.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'model.php';
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'controller.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'controller.php';
|
||||||
|
|
|
@ -20,20 +20,9 @@
|
||||||
App::import('Shell', 'Shell', false);
|
App::import('Shell', 'Shell', false);
|
||||||
App::import('Model', 'CakeSchema', false);
|
App::import('Model', 'CakeSchema', false);
|
||||||
|
|
||||||
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'schema.php';
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('SchemaShell')) {
|
|
||||||
require CAKE . 'console' . DS . 'libs' . DS . 'schema.php';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test for Schema database management
|
* Test for Schema database management
|
||||||
|
|
|
@ -22,18 +22,7 @@
|
||||||
App::import('Core', 'Folder');
|
App::import('Core', 'Folder');
|
||||||
App::import('Shell', 'Shell', false);
|
App::import('Shell', 'Shell', false);
|
||||||
|
|
||||||
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* TestShell class
|
* TestShell class
|
||||||
|
|
|
@ -17,15 +17,8 @@
|
||||||
* @since CakePHP(tm) v 2.0
|
* @since CakePHP(tm) v 2.0
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
|
||||||
}
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
App::import('Shell', 'TaskCollection', false);
|
App::import('Shell', 'TaskCollection', false);
|
||||||
App::import('Shell', 'Shell', false);
|
App::import('Shell', 'Shell', false);
|
||||||
|
|
||||||
|
|
|
@ -21,17 +21,7 @@ App::import('Core', 'ClassRegistry');
|
||||||
App::import('View', 'Helper', false);
|
App::import('View', 'Helper', false);
|
||||||
App::import('Shell', 'Shell', false);
|
App::import('Shell', 'Shell', false);
|
||||||
|
|
||||||
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'project.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'project.php';
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'controller.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'controller.php';
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'model.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'model.php';
|
||||||
|
|
|
@ -19,17 +19,7 @@
|
||||||
*/
|
*/
|
||||||
App::import('Shell', 'Shell', false);
|
App::import('Shell', 'Shell', false);
|
||||||
|
|
||||||
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'db_config.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'db_config.php';
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -22,17 +22,7 @@
|
||||||
App::import('Core', 'Folder');
|
App::import('Core', 'Folder');
|
||||||
App::import('Shell', 'Shell', false);
|
App::import('Shell', 'Shell', false);
|
||||||
|
|
||||||
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'extract.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'extract.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -23,13 +23,7 @@ if (!defined('DISABLE_AUTO_DISPATCH')) {
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
define('DISABLE_AUTO_DISPATCH', true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'template.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'template.php';
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'fixture.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'fixture.php';
|
||||||
|
|
||||||
|
|
|
@ -21,17 +21,7 @@
|
||||||
*/
|
*/
|
||||||
App::import('Shell', 'Shell', false);
|
App::import('Shell', 'Shell', false);
|
||||||
|
|
||||||
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'model.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'model.php';
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'fixture.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'fixture.php';
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'template.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'template.php';
|
||||||
|
|
|
@ -22,17 +22,7 @@
|
||||||
App::import('Shell', 'Shell', false);
|
App::import('Shell', 'Shell', false);
|
||||||
App::import('Core', array('File'));
|
App::import('Core', array('File'));
|
||||||
|
|
||||||
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'plugin.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'plugin.php';
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'model.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'model.php';
|
||||||
|
|
||||||
|
|
|
@ -23,17 +23,7 @@ App::import('Shell', 'Shell', false);
|
||||||
App::import('Core', 'File');
|
App::import('Core', 'File');
|
||||||
|
|
||||||
|
|
||||||
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'project.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'project.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -22,17 +22,7 @@
|
||||||
*/
|
*/
|
||||||
App::import('Shell', 'Shell', false);
|
App::import('Shell', 'Shell', false);
|
||||||
|
|
||||||
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'template.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'template.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -23,17 +23,7 @@ App::import('Shell', 'Shell', false);
|
||||||
App::import('Controller', 'Controller', false);
|
App::import('Controller', 'Controller', false);
|
||||||
App::import('Model', 'Model', false);
|
App::import('Model', 'Model', false);
|
||||||
|
|
||||||
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'test.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'test.php';
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'template.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'template.php';
|
||||||
|
|
||||||
|
|
|
@ -21,17 +21,7 @@
|
||||||
*/
|
*/
|
||||||
App::import('Shell', 'Shell', false);
|
App::import('Shell', 'Shell', false);
|
||||||
|
|
||||||
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'view.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'view.php';
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'controller.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'controller.php';
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'template.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'tasks' . DS . 'template.php';
|
||||||
|
|
|
@ -20,17 +20,7 @@
|
||||||
|
|
||||||
App::import('Shell', 'Shell', false);
|
App::import('Shell', 'Shell', false);
|
||||||
|
|
||||||
if (!defined('DISABLE_AUTO_DISPATCH')) {
|
require_once CAKE . 'console' . DS . 'shell_dispatcher.php';
|
||||||
define('DISABLE_AUTO_DISPATCH', true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('ShellDispatcher')) {
|
|
||||||
ob_start();
|
|
||||||
$argv = false;
|
|
||||||
require CAKE . 'console' . DS . 'cake.php';
|
|
||||||
ob_end_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once CAKE . 'console' . DS . 'libs' . DS . 'testsuite.php';
|
require_once CAKE . 'console' . DS . 'libs' . DS . 'testsuite.php';
|
||||||
|
|
||||||
class TestSuiteShellTest extends CakeTestCase {
|
class TestSuiteShellTest extends CakeTestCase {
|
||||||
|
|
Loading…
Add table
Reference in a new issue