comparison cake/tests/test_app/plugins/test_plugin/models/test_plugin_comment.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 /* SVN FILE: $Id$ */
3 /**
4 * Test App Comment Model
5 *
6 *
7 *
8 * PHP versions 4 and 5
9 *
10 * CakePHP : Rapid Development Framework (http://cakephp.org)
11 * Copyright 2006-2008, Cake Software Foundation, Inc.
12 *
13 * Licensed under The MIT License
14 * Redistributions of files must retain the above copyright notice.
15 *
16 * @copyright Copyright 2006-2008, Cake Software Foundation, Inc.
17 * @link http://cakefoundation.org/projects/info/cakephp CakePHP Project
18 * @package cake
19 * @subpackage cake.cake.libs.
20 * @since CakePHP v 1.2.0.7726
21 * @version $Revision$
22 * @modifiedby $LastChangedBy$
23 * @lastmodified $Date$
24 * @license http://www.opensource.org/licenses/mit-license.php The MIT License
25 */
26 class TestPluginComment extends TestPluginAppModel {
27 var $useTable = 'test_plugin_comments';
28 var $name = 'TestPluginComment';
29 }