2008-11-08 02:58:37 +00:00
|
|
|
<?php
|
2008-09-09 18:51:28 +00:00
|
|
|
/**
|
|
|
|
* Short description for campaign_fixture.php
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2008-09-09 18:51:28 +00:00
|
|
|
* Long description for campaign_fixture.php
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2010-10-03 16:31:21 +00:00
|
|
|
* PHP 5
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2008-09-09 18:51:28 +00:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* @copyright CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2008-10-30 17:30:26 +00:00
|
|
|
* @link http://www.cakephp.org
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Fixture
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since 1.2
|
2009-11-06 06:51:51 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-09-09 18:51:28 +00:00
|
|
|
*/
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-09-09 18:51:28 +00:00
|
|
|
/**
|
|
|
|
* CampaignFixture class
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Fixture
|
2008-09-09 18:51:28 +00:00
|
|
|
*/
|
|
|
|
class CampaignFixture extends CakeTestFixture {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-09-09 18:51:28 +00:00
|
|
|
/**
|
|
|
|
* name property
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2008-09-09 18:51:28 +00:00
|
|
|
* @var string 'Campaign'
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $name = 'Campaign';
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-09-09 18:51:28 +00:00
|
|
|
/**
|
|
|
|
* fields property
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2008-09-09 18:51:28 +00:00
|
|
|
* @var array
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $fields = array(
|
2008-09-09 18:51:28 +00:00
|
|
|
'id' => array('type' => 'integer', 'key' => 'primary'),
|
|
|
|
'name' => array('type' => 'string', 'length' => 255, 'null' => false),
|
2008-11-08 02:58:37 +00:00
|
|
|
);
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-09-09 18:51:28 +00:00
|
|
|
/**
|
|
|
|
* records property
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2008-09-09 18:51:28 +00:00
|
|
|
* @var array
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $records = array(
|
2008-09-09 18:51:28 +00:00
|
|
|
array('name' => 'Hurtigruten'),
|
|
|
|
array('name' => 'Colorline'),
|
|
|
|
array('name' => 'Queen of Scandinavia')
|
|
|
|
);
|
|
|
|
}
|