| 12345678910111213141516171819202122232425262728 |
- <?php
- /* SVN FILE: $Id$ */
- /**
- * Test App Comment Model
- *
- *
- *
- * PHP 5
- *
- * CakePHP : Rapid Development Framework (http://cakephp.org)
- * Copyright 2005-2011, Cake Software Foundation, Inc.
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright 2005-2011, Cake Software Foundation, Inc.
- * @link http://cakefoundation.org/projects/info/cakephp CakePHP Project
- * @package Cake.Test.test_app.Plugin.TestPlugin.Model
- * @since CakePHP v 1.2.0.7726
- * @version $Revision$
- * @modifiedby $LastChangedBy$
- * @lastmodified $Date$
- * @license http://www.opensource.org/licenses/mit-license.php The MIT License
- */
- class TestPluginComment extends TestPluginAppModel {
- public $useTable = 'test_plugin_comments';
- public $name = 'TestPluginComment';
- }
|