comparison cake/tests/test_app/plugins/test_plugin/models/test_plugin_post.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 Post 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 class TestPluginPost extends TestPluginAppModel {
23
24 /**
25 * Name property
26 *
27 * @var string
28 */
29 var $name = 'Post';
30
31 /**
32 * useTable property
33 *
34 * @var string
35 */
36 var $useTable = 'posts';
37 }