mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-04 18:42:40 +00:00
Closes #2119 Only define clone() in PHP4 when it hasn't been already defined.
Closes #2213, Support multiple plugin paths. Closes #2234, filepaths to behavior classes should be cached in class.paths.php also Closes #2345, ability to group components into subfolders Closes #2645, Improvement to basic.php for class loading. Fixes #3526, Cache::write, when using just the config name, it fails. Fixes #3559, loading plugin model as assoc don't work. Closes #3567 Controller Folders (Note this does not need routing to work, but controller names can not conflict with others in the same application so naming must still be unique) Fixes #3579, email.php component: Parse error with php 4. Adding new class and file importer. Updated most of the core to use the importer. Added ClassRegsitry::init() that will create and instance of an object and store it in the registry. Deprecated most of the load functions in basics.php Plugin model loading now forces using the dot notation, to use models within a plugin, all the model associations must be in the PluginName.Model syntax, if this is not used, the plugin will look for the models in the main app/models directory first, if not found then it will search the plugin directories recursively until it finds a model. var $belongsTo = array('SomeModel'); will look for some_model.php in the app/models var $belongsTo = array('MyPlugin.SomeModel'); will look for some_model.php in my_plugin/models var $belongsTo = array('MyPlugin.MyPlugin', 'SomeModel'); will used my_plugin/models/my_plugin.php and app/models/some_model.php The controllers of the plugin will still look for the default models inside the plugin if var $uses is not set: var $uses = array('SomeModel'); will look for some_model.php in the app/models var $uses = array('MyPlugin.SomeModel'); will look for some_model.php in my_plugin/models var $uses = array('MyPlugin.MyPlugin', 'SomeModel'); will used my_plugin/models/my_plugin.php and app/models/some_model.php All of the above will work between plugins and main app These changes also allow placing model and controllers is sub directories Removed old class.paths.php file generation git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6001 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
58d9d38be1
commit
c000940e36
40 changed files with 1065 additions and 756 deletions
|
@ -27,16 +27,97 @@
|
|||
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
||||
*/
|
||||
uses('class_registry');
|
||||
/**
|
||||
* Short description for class.
|
||||
*
|
||||
* @package cake.tests
|
||||
* @subpackage cake.tests.cases.libs
|
||||
*/
|
||||
class ClassRegistryTest extends UnitTestCase {
|
||||
class ClassRegisterModel extends CakeTestModel {
|
||||
var $useTable = false;
|
||||
}
|
||||
|
||||
function skip() {
|
||||
$this->skipif (true, 'ClassRegistry not implemented');
|
||||
class RegisterArticle extends ClassRegisterModel {
|
||||
var $name = 'RegisterArticle';
|
||||
}
|
||||
class RegisterArticleFeatured extends ClassRegisterModel {
|
||||
var $name = 'RegisterArticlFeatured';
|
||||
}
|
||||
|
||||
class RegisterArticleTag extends ClassRegisterModel {
|
||||
var $name = 'RegisterArticlTag';
|
||||
}
|
||||
|
||||
class ClassRegistryTest extends UnitTestCase {
|
||||
function testAddModel() {
|
||||
if (PHP5) {
|
||||
$Tag = ClassRegistry::init('RegisterArticleTag');
|
||||
} else {
|
||||
$Tag =& ClassRegistry::init('RegisterArticleTag');
|
||||
}
|
||||
$this->assertTrue(is_a($Tag, 'RegisterArticleTag'));
|
||||
|
||||
$TagCopy = ClassRegistry::isKeySet('RegisterArticleTag');
|
||||
$this->assertTrue($TagCopy);
|
||||
|
||||
$Tag->name = 'SomeNewName';
|
||||
|
||||
$TagCopy = ClassRegistry::getObject('RegisterArticleTag');
|
||||
$this->assertTrue(is_a($TagCopy, 'RegisterArticleTag'));
|
||||
$this->assertIdentical($Tag, $TagCopy);
|
||||
|
||||
$NewTag = ClassRegistry::init(array('class' => 'RegisterArticleTag', 'alias' => 'NewTag'));
|
||||
$this->assertTrue(is_a($Tag, 'RegisterArticleTag'));
|
||||
|
||||
$this->assertNotIdentical($Tag, $NewTag);
|
||||
|
||||
$NewTag->name = 'SomeOtherName';
|
||||
$this->assertNotIdentical($Tag, $NewTag);
|
||||
|
||||
$Tag->name = 'SomeOtherName';
|
||||
$this->assertNotIdentical($Tag, $NewTag);
|
||||
|
||||
$this->assertTrue($TagCopy->name === 'SomeOtherName');
|
||||
}
|
||||
|
||||
function testClassRegistryFlush () {
|
||||
$ArticleTag = ClassRegistry::getObject('RegisterArticleTag');
|
||||
$this->assertTrue(is_a($ArticleTag, 'RegisterArticleTag'));
|
||||
ClassRegistry::flush();
|
||||
|
||||
$NoArticleTag = ClassRegistry::isKeySet('RegisterArticleTag');
|
||||
$this->assertFalse($NoArticleTag);
|
||||
$this->assertTrue(is_a($ArticleTag, 'RegisterArticleTag'));
|
||||
}
|
||||
|
||||
function testAddMultiplModels () {
|
||||
$Article = ClassRegistry::isKeySet('Article');
|
||||
$this->assertFalse($Article);
|
||||
|
||||
$Featured = ClassRegistry::isKeySet('Featured');
|
||||
$this->assertFalse($Featured);
|
||||
|
||||
$Tag = ClassRegistry::isKeySet('Tag');
|
||||
$this->assertFalse($Tag);
|
||||
|
||||
$models = array(array('class' => 'RegisterArticle', 'alias' => 'Article'),
|
||||
array('class' => 'RegisterArticleFeatured', 'alias' => 'Featured'),
|
||||
array('class' => 'RegisterArticleTag', 'alias' => 'Tag'));
|
||||
|
||||
$added = ClassRegistry::init($models);
|
||||
$this->assertTrue($added);
|
||||
|
||||
$Article = ClassRegistry::isKeySet('Article');
|
||||
$this->assertTrue($Article);
|
||||
|
||||
$Featured = ClassRegistry::isKeySet('Featured');
|
||||
$this->assertTrue($Featured);
|
||||
|
||||
$Tag = ClassRegistry::isKeySet('Tag');
|
||||
$this->assertTrue($Tag);
|
||||
|
||||
$Article = ClassRegistry::getObject('Article');
|
||||
$this->assertTrue(is_a($Article, 'RegisterArticle'));
|
||||
|
||||
$Featured = ClassRegistry::getObject('Featured');
|
||||
$this->assertTrue(is_a($Featured, 'RegisterArticleFeatured'));
|
||||
|
||||
$Tag = ClassRegistry::getObject('Tag');
|
||||
$this->assertTrue(is_a($Tag, 'RegisterArticleTag'));
|
||||
}
|
||||
}
|
||||
?>
|
|
@ -255,4 +255,4 @@ class AclComponentTest extends CakeTestCase {
|
|||
}
|
||||
}
|
||||
|
||||
?>
|
||||
?>
|
|
@ -59,22 +59,19 @@ class ControllerTest extends CakeTestCase {
|
|||
$Controller->uses = array('ControllerPost', 'ControllerComment');
|
||||
$Controller->passedArgs[] = '1';
|
||||
$Controller->constructClasses();
|
||||
$this->assertTrue($Controller->ControllerPost == new ControllerPost());
|
||||
$this->assertTrue($Controller->ControllerComment == new ControllerComment());
|
||||
$this->assertFalse($Controller->ControllerComment != new ControllerComment());
|
||||
$this->assertTrue(is_a($Controller->ControllerPost, 'ControllerPost'));
|
||||
$this->assertTrue(is_a($Controller->ControllerComment, 'ControllerComment'));
|
||||
|
||||
unset($Controller);
|
||||
|
||||
}
|
||||
|
||||
function testPersistent() {
|
||||
|
||||
$Controller =& new Controller();
|
||||
$Controller->modelClass = 'ControllerPost';
|
||||
$Controller->persistModel = true;
|
||||
$Controller->constructClasses();
|
||||
$this->assertTrue(file_exists(CACHE . 'persistent' . DS .'controllerpost.php'));
|
||||
$this->assertTrue($Controller->ControllerPost == new ControllerPost());
|
||||
$this->assertTrue(is_a($Controller->ControllerPost, 'ControllerPost'));
|
||||
unlink(CACHE . 'persistent' . DS . 'controllerpost.php');
|
||||
unlink(CACHE . 'persistent' . DS . 'controllerpostregistry.php');
|
||||
|
||||
|
|
99
cake/tests/cases/libs/loader.test.php
Normal file
99
cake/tests/cases/libs/loader.test.php
Normal file
|
@ -0,0 +1,99 @@
|
|||
<?php
|
||||
/* SVN FILE: $Id$ */
|
||||
/**
|
||||
* Short description for file.
|
||||
*
|
||||
* Long description for file
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
|
||||
* Copyright 2005-2007, Cake Software Foundation, Inc.
|
||||
* 1785 E. Sahara Avenue, Suite 490-204
|
||||
* Las Vegas, Nevada 89104
|
||||
*
|
||||
* Licensed under The Open Group Test Suite License
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @filesource
|
||||
* @copyright Copyright 2005-2007, Cake Software Foundation, Inc.
|
||||
* @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
|
||||
* @package cake.tests
|
||||
* @subpackage cake.tests.cases.libs
|
||||
* @since CakePHP(tm) v 1.2.0.5432
|
||||
* @version $Revision$
|
||||
* @modifiedby $LastChangedBy$
|
||||
* @lastmodified $Date$
|
||||
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
||||
*/
|
||||
uses('configure');
|
||||
class AppImportTest extends UnitTestCase {
|
||||
var $realFile;
|
||||
|
||||
function testClassLoading() {
|
||||
$file = App::import();
|
||||
$this->assertTrue($file);
|
||||
|
||||
$file = App::import('Core', 'Model', false);
|
||||
$this->assertTrue($file);
|
||||
|
||||
$file = App::import('Model', 'SomeRandomModelThatDoesNotExist', false);
|
||||
$this->assertFalse($file);
|
||||
|
||||
$file = App::import('Model', 'AppModel', false);
|
||||
$this->assertTrue($file);
|
||||
}
|
||||
|
||||
function testFileLoading () {
|
||||
$file = App::import('File', 'RealFile', false, array(), CAKE_CORE_INCLUDE_PATH . DS . 'cake' . DS . 'config' . DS . 'config.php');
|
||||
$this->assertTrue($file);
|
||||
|
||||
$file = App::import('File', 'NoFile', false, array(), CAKE_CORE_INCLUDE_PATH . DS . 'config' . DS . 'cake' . DS . 'config.php');
|
||||
$this->assertFalse($file);
|
||||
}
|
||||
// import($type = null, $name = null, $parent = true, $file = null, $search = array(), $return = false) {
|
||||
function testFileLoadingWithArray() {
|
||||
$type = array('type' => 'File', 'name' => 'SomeName', 'parent' => false,
|
||||
'file' => CAKE_CORE_INCLUDE_PATH . DS . 'cake' . DS . 'config' . DS . 'config.php');
|
||||
$file = App::import($type);
|
||||
$this->assertTrue($file);
|
||||
|
||||
$type = array('type' => 'File', 'name' => 'NoFile', 'parent' => false,
|
||||
'file' => CAKE_CORE_INCLUDE_PATH . DS . 'config' . DS . 'cake' . DS . 'config.php');
|
||||
$file = App::import($type);
|
||||
$this->assertFalse($file);
|
||||
}
|
||||
|
||||
function testFileLoadingReturnValue () {
|
||||
$file = App::import('File', 'Name', false, array(), CAKE_CORE_INCLUDE_PATH . DS . 'cake' . DS . 'config' . DS . 'config.php', true);
|
||||
$this->assertTrue($file);
|
||||
|
||||
$this->assertTrue(isset($file['Cake.version']));
|
||||
|
||||
$type = array('type' => 'File', 'name' => 'OtherName', 'parent' => false,
|
||||
'file' => CAKE_CORE_INCLUDE_PATH . DS . 'cake' . DS . 'config' . DS . 'config.php', 'return' => true);
|
||||
$file = App::import($type);
|
||||
$this->assertTrue($file);
|
||||
|
||||
$this->assertTrue(isset($file['Cake.version']));
|
||||
}
|
||||
|
||||
function testLoadingWithSearch () {
|
||||
$file = App::import('File', 'NewName', false, array(CAKE_CORE_INCLUDE_PATH), 'config.php');
|
||||
$this->assertTrue($file);
|
||||
|
||||
$file = App::import('File', 'AnotherNewName', false, array(LIBS), 'config.php');
|
||||
$this->assertFalse($file);
|
||||
}
|
||||
|
||||
function testLoadingWithSearchArray () {
|
||||
$type = array('type' => 'File', 'name' => 'RandomName', 'parent' => false, 'file' => 'config.php', 'search' => array(CAKE_CORE_INCLUDE_PATH));
|
||||
$file = App::import($type);
|
||||
$this->assertTrue($file);
|
||||
|
||||
$type = array('type' => 'File', 'name' => 'AnotherRandomName', 'parent' => false, 'file' => 'config.php', 'search' => array(LIBS));
|
||||
$file = App::import($type);
|
||||
$this->assertFalse($file);
|
||||
}
|
||||
}
|
||||
?>
|
|
@ -113,12 +113,12 @@ class DBACL_TEST extends DB_ACL {
|
|||
*/
|
||||
class AclNodeTest extends CakeTestCase {
|
||||
var $fixtures = array('core.aro', 'core.aco', 'core.aros_aco', 'core.aco_action');
|
||||
|
||||
|
||||
function setUp() {
|
||||
Configure::write('Acl.classname', 'DB_ACL_TEST');
|
||||
Configure::write('Acl.database', 'test_suite');
|
||||
}
|
||||
|
||||
|
||||
function testNode(){
|
||||
$Aco = new DbAcoTest();
|
||||
$result = Set::extract($Aco->node('Controller1'), '{n}.DbAcoTest.id');
|
||||
|
@ -154,5 +154,4 @@ class DBACL_TEST extends DB_ACL {
|
|||
$this->assertEqual($result, $expected);
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
|
@ -29,9 +29,7 @@
|
|||
if (!defined('CAKEPHP_UNIT_TEST_EXECUTION')) {
|
||||
define('CAKEPHP_UNIT_TEST_EXECUTION', 1);
|
||||
}
|
||||
|
||||
require_once CAKE.'app_helper.php';
|
||||
uses('controller'.DS.'controller', 'model'.DS.'model', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'ajax',
|
||||
uses('view'.DS.'helpers'.DS.'app_helper', 'controller'.DS.'controller', 'model'.DS.'model', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'ajax',
|
||||
'view'.DS.'helpers'.DS.'html', 'view'.DS.'helpers'.DS.'form', 'view'.DS.'helpers'.DS.'javascript');
|
||||
|
||||
class AjaxTestController extends Controller {
|
||||
|
|
|
@ -30,8 +30,7 @@ if (!defined('CAKEPHP_UNIT_TEST_EXECUTION')) {
|
|||
define('CAKEPHP_UNIT_TEST_EXECUTION', 1);
|
||||
}
|
||||
|
||||
require_once CAKE.'app_helper.php';
|
||||
uses('controller'.DS.'controller', 'model'.DS.'model', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'cache');
|
||||
uses('view'.DS.'helpers'.DS.'app_helper', 'controller'.DS.'controller', 'model'.DS.'model', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'cache');
|
||||
|
||||
/**
|
||||
* Short description for class.
|
||||
|
|
|
@ -30,13 +30,10 @@ if (!defined('CAKEPHP_UNIT_TEST_EXECUTION')) {
|
|||
define('CAKEPHP_UNIT_TEST_EXECUTION', 1);
|
||||
}
|
||||
|
||||
require_once CAKE.'app_helper.php';
|
||||
|
||||
uses(
|
||||
uses('view'.DS.'helpers'.DS.'app_helper',
|
||||
'class_registry', 'controller'.DS.'controller', 'model'.DS.'model',
|
||||
'view'.DS.'helper', 'view'.DS.'helpers'.DS.'html', 'view'.DS.'view',
|
||||
'view'.DS.'helpers'.DS.'form'
|
||||
);
|
||||
'view'.DS.'helpers'.DS.'form');
|
||||
|
||||
class ContactTestController extends Controller {
|
||||
var $name = 'ContactTest';
|
||||
|
|
|
@ -26,8 +26,7 @@
|
|||
* @lastmodified $Date$
|
||||
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
||||
*/
|
||||
require_once CAKE.'app_helper.php';
|
||||
uses('class_registry', 'controller'.DS.'controller', 'model'.DS.'model', 'view'.DS.'helper',
|
||||
uses('view'.DS.'helpers'.DS.'app_helper', 'class_registry', 'controller'.DS.'controller', 'model'.DS.'model', 'view'.DS.'helper',
|
||||
'view'.DS.'helpers'.DS.'html', 'view'.DS.'helpers'.DS.'form');
|
||||
|
||||
class TheHtmlTestController extends Controller {
|
||||
|
|
|
@ -26,8 +26,7 @@
|
|||
* @lastmodified $Date$
|
||||
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
||||
*/
|
||||
require_once CAKE.'app_helper.php';
|
||||
uses('view'.DS.'helper', 'view'.DS.'helpers'.DS.'javascript',
|
||||
uses('view'.DS.'helpers'.DS.'app_helper', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'javascript',
|
||||
'view'.DS.'helpers'.DS.'html', 'view'.DS.'helpers'.DS.'form');
|
||||
/**
|
||||
* Short description for class.
|
||||
|
|
|
@ -30,8 +30,7 @@ if (!defined('CAKEPHP_UNIT_TEST_EXECUTION')) {
|
|||
define('CAKEPHP_UNIT_TEST_EXECUTION', 1);
|
||||
}
|
||||
|
||||
require_once CAKE.'app_helper.php';
|
||||
uses('controller'.DS.'controller', 'model'.DS.'model', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'js');
|
||||
uses('view'.DS.'helpers'.DS.'app_helper', 'controller'.DS.'controller', 'model'.DS.'model', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'js');
|
||||
|
||||
/**
|
||||
* Short description for class.
|
||||
|
|
|
@ -26,8 +26,7 @@
|
|||
* @lastmodified $Date$
|
||||
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
||||
*/
|
||||
require_once CAKE.'app_helper.php';
|
||||
uses('view'.DS.'helper', 'view'.DS.'helpers'.DS.'number');
|
||||
uses('view'.DS.'helpers'.DS.'app_helper', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'number');
|
||||
/**
|
||||
* Short description for class.
|
||||
*
|
||||
|
|
|
@ -26,8 +26,7 @@
|
|||
* @lastmodified $Date$
|
||||
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
||||
*/
|
||||
require_once CAKE.'app_helper.php';
|
||||
uses('view'.DS.'helper', 'view'.DS.'helpers'.DS.'html', 'view'.DS.'helpers'.DS.'form',
|
||||
uses('view'.DS.'helpers'.DS.'app_helper', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'html', 'view'.DS.'helpers'.DS.'form',
|
||||
'view'.DS.'helpers'.DS.'ajax', 'view'.DS.'helpers'.DS.'javascript', 'view'.DS.'helpers'.DS.'paginator');
|
||||
/**
|
||||
* Short description for class.
|
||||
|
@ -107,7 +106,7 @@ class PaginatorTest extends UnitTestCase {
|
|||
$this->assertPattern('/\/projects\/sort\/page:2/', $result);
|
||||
$this->assertPattern('/<script type="text\/javascript">Event.observe/', $result);
|
||||
}
|
||||
|
||||
|
||||
function testSortAdminLinks() {
|
||||
Router::reload();
|
||||
Configure::write('Routing.admin', 'admin');
|
||||
|
|
|
@ -29,9 +29,7 @@
|
|||
if (!defined('CAKEPHP_UNIT_TEST_EXECUTION')) {
|
||||
define('CAKEPHP_UNIT_TEST_EXECUTION', 1);
|
||||
}
|
||||
|
||||
require_once CAKE.'app_helper.php';
|
||||
uses('controller'.DS.'controller', 'model'.DS.'model', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'rss');
|
||||
uses('view'.DS.'helpers'.DS.'app_helper', 'controller'.DS.'controller', 'model'.DS.'model', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'rss');
|
||||
|
||||
/**
|
||||
* Short description for class.
|
||||
|
|
|
@ -30,8 +30,7 @@ if (!defined('CAKEPHP_UNIT_TEST_EXECUTION')) {
|
|||
define('CAKEPHP_UNIT_TEST_EXECUTION', 1);
|
||||
}
|
||||
|
||||
require_once CAKE.'app_helper.php';
|
||||
uses('controller'.DS.'controller', 'model'.DS.'model', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'session');
|
||||
uses('view'.DS.'helpers'.DS.'app_helper', 'controller'.DS.'controller', 'model'.DS.'model', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'session');
|
||||
|
||||
/**
|
||||
* Short description for class.
|
||||
|
|
|
@ -26,8 +26,7 @@
|
|||
* @lastmodified $Date$
|
||||
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
||||
*/
|
||||
require_once CAKE.'app_helper.php';
|
||||
uses('view'.DS.'helper', 'view'.DS.'helpers'.DS.'text');
|
||||
uses('view'.DS.'helpers'.DS.'app_helper', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'text');
|
||||
/**
|
||||
* Short description for class.
|
||||
*
|
||||
|
|
|
@ -30,8 +30,7 @@ if (!defined('CAKEPHP_UNIT_TEST_EXECUTION')) {
|
|||
define('CAKEPHP_UNIT_TEST_EXECUTION', 1);
|
||||
}
|
||||
|
||||
require_once CAKE.'app_helper.php';
|
||||
uses('controller'.DS.'controller', 'model'.DS.'model', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'time');
|
||||
uses('view'.DS.'helpers'.DS.'app_helper', 'controller'.DS.'controller', 'model'.DS.'model', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'time');
|
||||
|
||||
/**
|
||||
* Short description for class.
|
||||
|
|
|
@ -30,8 +30,7 @@ if (!defined('CAKEPHP_UNIT_TEST_EXECUTION')) {
|
|||
define('CAKEPHP_UNIT_TEST_EXECUTION', 1);
|
||||
}
|
||||
|
||||
require_once CAKE.'app_helper.php';
|
||||
uses('controller'.DS.'controller', 'model'.DS.'model', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'xml');
|
||||
uses('view'.DS.'helpers'.DS.'app_helper', 'controller'.DS.'controller', 'model'.DS.'model', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'xml');
|
||||
|
||||
/**
|
||||
* Short description for class.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue