mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-07 03:52:41 +00:00
Moving recently created files into the new folders
This commit is contained in:
parent
22581516db
commit
5efa201b9b
8 changed files with 0 additions and 0 deletions
26
lib/Cake/tests/test_app/config/routes.php
Normal file
26
lib/Cake/tests/test_app/config/routes.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Routes file
|
||||
*
|
||||
* Routes for test app
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* CakePHP : Rapid Development Framework (http://cakephp.org)
|
||||
* Copyright 2006-2010, Cake Software Foundation, Inc.
|
||||
*
|
||||
* Licensed under The MIT License
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @copyright Copyright 2006-2010, Cake Software Foundation, Inc.
|
||||
* @link http://cakephp.org CakePHP Project
|
||||
* @package cake
|
||||
* @subpackage cake.tests.test_app.config
|
||||
* @since CakePHP v 2.0
|
||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||
*/
|
||||
|
||||
Router::parseExtensions('json');
|
||||
Router::connect('/some_alias', array('controller' => 'tests_apps', 'action' => 'some_method'));
|
||||
Router::redirect('/redirect_me_now', 'http://cakephp.org');
|
||||
Router::redirect('/redirect_me', array('controller' => 'tests_apps', 'action' => 'some_method'));
|
|
@ -0,0 +1 @@
|
|||
test_plugin add/edit scaffold view
|
|
@ -0,0 +1,3 @@
|
|||
Before the element.
|
||||
<?php echo $this->element('html_call'); ?>
|
||||
After the element.
|
3
lib/Cake/tests/test_app/views/elements/html_call.ctp
Normal file
3
lib/Cake/tests/test_app/views/elements/html_call.ctp
Normal file
|
@ -0,0 +1,3 @@
|
|||
<?php
|
||||
echo $this->Html->link('Test', 'http://example.com');
|
||||
?>
|
1
lib/Cake/tests/test_app/views/elements/type_check.ctp
Normal file
1
lib/Cake/tests/test_app/views/elements/type_check.ctp
Normal file
|
@ -0,0 +1 @@
|
|||
<?php echo gettype($form); ?>
|
1
lib/Cake/tests/test_app/views/layouts/json/default.ctp
Normal file
1
lib/Cake/tests/test_app/views/layouts/json/default.ctp
Normal file
|
@ -0,0 +1 @@
|
|||
<?php echo $content_for_layout; ?>
|
1
lib/Cake/tests/test_app/views/posts/scaffold.form.ctp
Normal file
1
lib/Cake/tests/test_app/views/posts/scaffold.form.ctp
Normal file
|
@ -0,0 +1 @@
|
|||
test_app posts add/edit scaffold view
|
1
lib/Cake/tests/test_app/views/tests_apps/json/index.ctp
Normal file
1
lib/Cake/tests/test_app/views/tests_apps/json/index.ctp
Normal file
|
@ -0,0 +1 @@
|
|||
{"cakephp":"cool"}
|
Loading…
Add table
Add a link
Reference in a new issue