comparison cake/tests/test_app/plugins/test_plugin/models/test_plugin_auth_user.php @ 0:261e66bd5a0c

hg init
author Shoshi TAMAKI <shoshi@cr.ie.u-ryukyu.ac.jp>
date Sun, 24 Jul 2011 21:08:31 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:261e66bd5a0c
1 <?php
2 /**
3 * Test Plugin Auth User Model
4 *
5 *
6 *
7 * PHP versions 4 and 5
8 *
9 * CakePHP : Rapid Development Framework (http://cakephp.org)
10 * Copyright 2006-2010, Cake Software Foundation, Inc.
11 *
12 * Licensed under The MIT License
13 * Redistributions of files must retain the above copyright notice.
14 *
15 * @copyright Copyright 2006-2010, Cake Software Foundation, Inc.
16 * @link http://cakephp.org CakePHP Project
17 * @package cake
18 * @subpackage cake.cake.tests.test_app.plugins.test_plugin
19 * @since CakePHP v 1.2.0.4487
20 * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
21 */
22
23 class TestPluginAuthUser extends TestPluginAppModel {
24
25 /**
26 * Name property
27 *
28 * @var string
29 */
30 var $name = 'TestPluginAuthUser';
31
32 /**
33 * useTable property
34 *
35 * @var string
36 */
37 var $useTable = 'auth_users';
38
39 /**
40 * useDbConfig property
41 *
42 * @var string 'test_suite'
43 * @access public
44 */
45 var $useDbConfig = 'test_suite';
46 }