統計
| ブランチ: | リビジョン:

pictcode / lib / Cake / Test / Fixture / FlagTreeFixture.php @ 635eef61

履歴 | 表示 | アノテート | ダウンロード (1.367 KB)

1
<?php
2
/**
3
 * Tree behavior class test fixture.
4
 *
5
 * Enables a model object to act as a node-based tree.
6
 *
7
 * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
8
 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
9
 *
10
 * Licensed under The MIT License
11
 * For full copyright and license information, please see the LICENSE.txt
12
 * Redistributions of files must retain the above copyright notice
13
 *
14
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
15
 * @link          http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
16
 * @package       Cake.Test.Fixture
17
 * @since         CakePHP(tm) v 1.2.0.5331
18
 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
19
 */
20

    
21
/**
22
 * Flag Tree Test Fixture
23
 *
24
 * Like Number Tree, but uses a flag for testing scope parameters
25
 *
26
 * @package       Cake.Test.Fixture
27
 */
28
class FlagTreeFixture extends CakeTestFixture {
29

    
30
/**
31
 * fields property
32
 *
33
 * @var array
34
 */
35
        public $fields = array(
36
                'id' => array('type' => 'integer', 'key' => 'primary'),
37
                'name' => array('type' => 'string', 'null' => false),
38
                'parent_id' => 'integer',
39
                'lft' => array('type' => 'integer', 'null' => false),
40
                'rght' => array('type' => 'integer', 'null' => false),
41
                'flag' => array('type' => 'integer', 'null' => false, 'length' => 1, 'default' => 0)
42
        );
43
}