code
stringlengths
1
2.01M
repo_name
stringlengths
3
62
path
stringlengths
1
267
language
stringclasses
231 values
license
stringclasses
13 values
size
int64
1
2.01M
<?php /** * Test Suite TestPlugin AppModel * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/TestPluginAppModel.php
PHP
gpl3
820
<?php /** * Test suite plugin session handler */ App::uses('CakeSessionHandlerInterface', 'Model/Datasource/Session'); class TestPluginSession implements CakeSessionHandlerInterface { public function open() { return true; } public function close() { } public function read($id) { } public function write...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/Datasource/Session/TestPluginSession.php
PHP
gpl3
420
<?php class TestDriver extends TestSource { }
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/Datasource/Database/TestDriver.php
PHP
gpl3
46
<?php App::uses('DboSource', 'Model/Datasource'); class DboDummy extends DboSource { public function connect() { return true; } }
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/Datasource/Database/DboDummy.php
PHP
gpl3
137
<?php App::uses('DataSource', 'Model/Datasource'); class TestSource extends DataSource { public function describe($model) { return compact('model'); } public function listSources($data = null) { return array('test_source'); } public function create(Model $model, $fields = array(), $values = array()) { re...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/Datasource/TestSource.php
PHP
gpl3
729
<?php class TestOtherSource extends DataSource { public function describe($model) { return compact('model'); } public function listSources($data = null) { return array('test_source'); } public function create(Model $model, $fields = null, $values = array()) { return compact('model', 'fields', 'values'); ...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/Datasource/TestOtherSource.php
PHP
gpl3
685
<?php /** * Test App Comment Model * * PHP 5 * * CakePHP : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions ...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/TestPluginAuthors.php
PHP
gpl3
948
<?php /** * Test App Comment Model * * PHP 5 * * CakePHP : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions ...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/TestPluginComment.php
PHP
gpl3
961
alert('win sauce');
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Plugin/PluginJs/webroot/js/plugin_js.js
JavaScript
gpl3
19
alert('plugin one nested js file');
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Plugin/PluginJs/webroot/js/one/plugin_one.js
JavaScript
gpl3
35
<?php Configure::write('CakePluginTest.js_plugin.bootstrap', 'loaded js plugin bootstrap');
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Plugin/PluginJs/Config/bootstrap.php
PHP
gpl3
91
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Plugin/TestPluginTwo/Console/Command/ExampleShell.php
PHP
gpl3
968
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Plugin/TestPluginTwo/Console/Command/WelcomeShell.php
PHP
gpl3
983
<?php Configure::write('CakePluginTest.test_plugin_two.bootstrap', 'loaded plugin two bootstrap');
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Plugin/TestPluginTwo/Config/bootstrap.php
PHP
gpl3
98
/* override the theme webroot css file */
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/webroot/theme/test_theme/css/theme_webroot.css
CSS
gpl3
42
/* this is the webroot test asset css file */
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/webroot/theme/test_theme/css/webroot_test.css
CSS
gpl3
46
<?php /** * Static content controller. * * This file will render views from views/pages/ * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license ...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Controller/PagesController.php
PHP
gpl3
1,868
<?php /** * Application level Controller * * This file is application-wide controller file. You can put all * application-wide controller-related methods here. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Controller/AppController.php
PHP
gpl3
1,206
<?php /** * TestsAppsPostsController file * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE....
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Controller/TestsAppsPostsController.php
PHP
gpl3
1,739
<?php App::uses('CakeErrorController', 'Controller'); class TestAppsErrorController extends CakeErrorController { public $helpers = array( 'Html', 'Session', 'Form', 'Banana', ); }
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Controller/TestAppsErrorController.php
PHP
gpl3
195
<?php /** * TestsAppsController file * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt ...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Controller/TestsAppsController.php
PHP
gpl3
1,287
<?php /** * Test Suite TestUtilityClass Library * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LI...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Lib/Utility/TestUtilityClass.php
PHP
gpl3
782
<?php /** * Test Suite Library * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redi...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Lib/Library.php
PHP
gpl3
748
<?php /** * Test Suite Test App Cache Engine class. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see th...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Lib/Cache/Engine/TestAppCacheEngine.php
PHP
gpl3
1,166
<?php /** * Test Suite Test App Logging stream class. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see ...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Lib/Log/Engine/TestAppLog.php
PHP
gpl3
886
<?php /** * SampleShell file * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redist...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Console/Command/SampleShell.php
PHP
gpl3
920
admin_edit template
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Console/Templates/test/views/admin_edit.ctp
PHP
gpl3
19
I got rendered <?php echo $test; ?>
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Console/Templates/test/classes/test_object.ctp
PHP
gpl3
35
<?php /** * Routes file * * Routes for test app * * PHP versions 4 and 5 * * CakePHP : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LI...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Config/routes.php
PHP
gpl3
838
<?php $config = array( 'Read' => 'value2', 'Deep' => array( 'Second' => array( 'SecondDeepest' => 'buried2' ) ), 'TestAcl' => array( 'classname' => 'Overwrite', 'custom' => 'one' ) );
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Config/var_test2.php
PHP
gpl3
200
<?php /* * Test App PHP Based Acl Config File * * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice. * * ...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Config/acl.php
PHP
gpl3
2,375
;<?php exit() ?> ; SVN FILE: $Id$ ;/** ; * Test App Ini Based Acl Config File ; * ; * ; * PHP 5 ; * ; * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) ; * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) ; * ; * Licensed under The MIT License ; * Redistributions of files must r...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Config/acl.ini.php
PHP
gpl3
1,265
<?php $config = array( 'tags' => array( 'form' => 'start form', 'formend' => 'finish form', 'hiddenblock' => '<div class="hidden">%s</div>' ) );
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Config/htmlhelper_tags.php
PHP
gpl3
153
<?php $config = array( 'Read' => 'value', 'Deep' => array( 'Deeper' => array( 'Deepest' => 'buried' ) ), 'TestAcl' => array( 'classname' => 'Original' ) );
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Config/var_test.php
PHP
gpl3
170
<?php //do nothing this is an empty file.
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Config/empty.php
PHP
gpl3
41
<?php /** * Test App Comment Model * * * * PHP 5 * * CakePHP : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistribut...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Model/PersisterOne.php
PHP
gpl3
1,669
<?php /** * Test App Comment Model * * * * PHP 5 * * CakePHP : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistribut...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Model/Post.php
PHP
gpl3
778
<?php /** * Behavior for binding management. * * Behavior to simplify manipulating a model's bindings when doing a find operation * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT L...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Model/Behavior/PersisterOneBehaviorBehavior.php
PHP
gpl3
1,106
<?php /** * Behavior for binding management. * * Behavior to simplify manipulating a model's bindings when doing a find operation * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT L...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Model/Behavior/PersisterTwoBehaviorBehavior.php
PHP
gpl3
1,106
<?php /** * Test App Comment Model * * * * PHP 5 * * CakePHP : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistribut...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Model/Comment.php
PHP
gpl3
787
<?php /** * Application model for Cake. * * This file is application-wide model file. You can put all * application-wide model-related methods here. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Lice...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Model/AppModel.php
PHP
gpl3
1,096
<?php /** * Test suite app/Model/Datasource/Session session handler * */ App::uses('CakeSessionHandlerInterface', 'Model/Datasource/Session'); class TestAppLibSession implements CakeSessionHandlerInterface { public function open() { return true; } public function close() { } public function read($id) { ...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Model/Datasource/Session/TestAppLibSession.php
PHP
gpl3
445
<?php App::uses('TestSource', 'TestPlugin.Model/Datasource'); class TestLocalDriver extends TestSource { }
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Model/Datasource/Database/TestLocalDriver.php
PHP
gpl3
108
<?php class Test2OtherSource extends DataSource { public function describe($model) { return compact('model'); } public function listSources($data = null) { return array('test_source'); } public function create(Model $model, $fields = null, $values = null) { return compact('model', 'fields', 'values'); } ...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Model/Datasource/Test2OtherSource.php
PHP
gpl3
683
<?php class Test2Source extends DataSource { public function describe($model) { return compact('model'); } public function listSources($data = null) { return array('test_source'); } public function create(Model $model, $fields = null, $values = null) { return compact('model', 'fields', 'values'); } pub...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Model/Datasource/Test2Source.php
PHP
gpl3
678
<?php /** * Test App Comment Model * * * * PHP 5 * * CakePHP : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistribut...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Model/PersisterTwo.php
PHP
gpl3
951
<?php class TestAppsExceptionRenderer extends ExceptionRenderer { protected function _getController($exception) { App::uses('TestAppsErrorController', 'Controller'); if (!$request = Router::getRequest(true)) { $request = new CakeRequest(); } $response = new CakeResponse(); try { $controller = new Tes...
100-percent-breakthrough
trunk/lib/Cake/Test/test_app/Error/TestAppsExceptionRenderer.php
PHP
gpl3
548
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/MyProductFixture.php
PHP
gpl3
1,301
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/TranslateTableFixture.php
PHP
gpl3
1,848
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/UuidTagFixture.php
PHP
gpl3
1,384
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/MyUserFixture.php
PHP
gpl3
1,304
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/PrimaryModelFixture.php
PHP
gpl3
1,288
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/JoinBFixture.php
PHP
gpl3
1,636
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/UnderscoreFieldFixture.php
PHP
gpl3
1,929
<?php /** * BakeArticleFixture * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redi...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/BakeArticleFixture.php
PHP
gpl3
1,411
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/CacheTestModelFixture.php
PHP
gpl3
1,272
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/StoryFixture.php
PHP
gpl3
1,282
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/MessageFixture.php
PHP
gpl3
1,455
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/SecondaryModelFixture.php
PHP
gpl3
1,300
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/ArosAcoTwoFixture.php
PHP
gpl3
3,897
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/FilmFileFixture.php
PHP
gpl3
1,290
<?php /** * Short description for file. * * Long description for file * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license inform...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/TranslateWithPrefixFixture.php
PHP
gpl3
4,130
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/PersonFixture.php
PHP
gpl3
2,067
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/ArticleFeaturedsTagsFixture.php
PHP
gpl3
1,311
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/JoinCFixture.php
PHP
gpl3
1,636
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/PortfolioFixture.php
PHP
gpl3
1,437
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/JoinACFixture.php
PHP
gpl3
1,956
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/FeaturedFixture.php
PHP
gpl3
1,831
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/ArticlesTagFixture.php
PHP
gpl3
1,509
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/SomethingElseFixture.php
PHP
gpl3
1,917
<?php /** * Counter Cache Test Fixtures * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/CounterCachePostFixture.php
PHP
gpl3
1,471
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/ArosAcoFixture.php
PHP
gpl3
1,596
<?php /** * Fixture to test be tested exclusively with InnoDB tables * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/InnoFixture.php
PHP
gpl3
1,321
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/JoinThingFixture.php
PHP
gpl3
1,930
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistri...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/DatatypeFixture.php
PHP
gpl3
1,466
<?php /** * Short description for after_tree_fixture.php * * Long description for after_tree_fixture.php * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions o...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/AfterTreeFixture.php
PHP
gpl3
1,759
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/TranslateArticleFixture.php
PHP
gpl3
3,893
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/UuiditemsUuidportfolioNumericidFixture.php
PHP
gpl3
1,920
<?php /** * Tree behavior class test fixture. * * Enables a model object to act as a node-based tree. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For f...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/FlagTreeFixture.php
PHP
gpl3
1,492
<?php /** * Short description for ad_fixture.php * * Long description for ad_fixture.php * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must ret...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/AdFixture.php
PHP
gpl3
1,934
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/GuildFixture.php
PHP
gpl3
1,293
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/ItemsPortfolioFixture.php
PHP
gpl3
1,579
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/SyfileFixture.php
PHP
gpl3
1,623
<?php /** * Short description for file. * * PHP versions 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The Open Group Test Suite License * Redistributions of files must retain the...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/DomainsSiteFixture.php
PHP
gpl3
2,291
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/AdvertisementFixture.php
PHP
gpl3
1,495
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/NumericArticleFixture.php
PHP
gpl3
1,505
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/TranslatedArticleFixture.php
PHP
gpl3
1,759
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/BiddingMessageFixture.php
PHP
gpl3
1,462
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/TestPluginArticleFixture.php
PHP
gpl3
2,014
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/ThePaperMonkiesFixture.php
PHP
gpl3
1,275
<?php /** * Short description for file. * * PHP versions 4 and 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The Open Group Test Suite License * Redistributions of files must reta...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/PrefixTestFixture.php
PHP
gpl3
1,090
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/FruitFixture.php
PHP
gpl3
1,552
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/AuthorFixture.php
PHP
gpl3
1,932
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/CdFixture.php
PHP
gpl3
1,436
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/MyCategoriesMyUsersFixture.php
PHP
gpl3
1,437
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/AcoTwoFixture.php
PHP
gpl3
2,732
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/AroTwoFixture.php
PHP
gpl3
2,772
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/BookFixture.php
PHP
gpl3
1,537
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/AccountFixture.php
PHP
gpl3
1,416
<?php /** * Short description for file. * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.tx...
100-percent-breakthrough
trunk/lib/Cake/Test/Fixture/CallbackFixture.php
PHP
gpl3
1,781