2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
2008-06-02 19:22:55 +00:00
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
|
|
* Short description for campaign_fixture.php
|
|
|
|
*
|
|
|
|
* Long description for campaign_fixture.php
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @filesource
|
|
|
|
* @copyright CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
|
|
|
* @link http://www.cakephp.org
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.fixtures
|
|
|
|
* @since 1.2
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedBy $LastChangedBy$
|
|
|
|
* @lastModified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* CampaignFixture class
|
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.fixtures
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
class CampaignFixture extends CakeTestFixture {
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* name property
|
|
|
|
*
|
|
|
|
* @var string 'Campaign'
|
|
|
|
* @access public
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
var $name = 'Campaign';
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
2008-06-02 19:22:55 +00:00
|
|
|
* fields property
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access public
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
var $fields = array(
|
|
|
|
'id' => array('type' => 'integer', 'key' => 'primary'),
|
|
|
|
'name' => array('type' => 'string', 'length' => 255, 'null' => false),
|
|
|
|
);
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* records property
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access public
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
var $records = array(
|
|
|
|
array( 'id' => 1 , 'name' => 'Hurtigruten' ),
|
|
|
|
array( 'id' => 2 , 'name' => 'Colorline' ),
|
|
|
|
array( 'id' => 3 , 'name' => 'Queen of Scandinavia' )
|
|
|
|
);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
?>
|