cakephp2-php8/lib/Cake/Console/templates/default/classes/fixture.ctp

42 lines
1.2 KiB
Text
Raw Normal View History

<?php
/**
* Fixture Template file
*
* Fixture Template used when baking fixtures with bake
*
2010-10-03 16:38:58 +00:00
* PHP 5
*
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
2010-10-24 20:58:22 +00:00
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
2010-10-24 20:58:22 +00:00
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
2010-01-26 22:03:03 +00:00
* @link http://cakephp.org CakePHP(tm) Project
* @package cake
* @subpackage cake.
* @since CakePHP(tm) v 1.3
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
?>
<?php echo '<?php' . "\n"; ?>
/* <?php echo $model; ?> Fixture generated on: <?php echo date('Y-m-d H:m:s') . " : ". time(); ?> */
class <?php echo $model; ?>Fixture extends CakeTestFixture {
public $name = '<?php echo $model; ?>';
<?php if ($table): ?>
public $table = '<?php echo $table; ?>';
<?php endif; ?>
<?php if ($import): ?>
public $import = <?php echo $import; ?>;
2009-07-17 20:00:44 +00:00
<?php endif; ?>
<?php if ($schema): ?>
public $fields = <?php echo $schema; ?>;
<?php endif;?>
<?php if ($records): ?>
public $records = <?php echo $records; ?>;
<?php endif;?>
}