2010-01-18 17:35:30 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Test App Comment Model
|
|
|
|
*
|
2010-10-03 16:31:21 +00:00
|
|
|
* PHP 5
|
2010-01-18 17:35:30 +00:00
|
|
|
*
|
2010-01-26 22:15:15 +00:00
|
|
|
* CakePHP : Rapid Development Framework (http://cakephp.org)
|
2012-03-13 02:46:07 +00:00
|
|
|
* Copyright 2005-2012, Cake Software Foundation, Inc.
|
2010-01-18 17:35:30 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2012-03-13 02:46:07 +00:00
|
|
|
* @copyright Copyright 2005-2012, Cake Software Foundation, Inc.
|
2010-01-26 19:18:20 +00:00
|
|
|
* @link http://cakefoundation.org/projects/info/cakephp CakePHP Project
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.test_app.Plugin.TestPlugin.Model
|
2010-01-18 17:35:30 +00:00
|
|
|
* @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 {
|
2012-03-18 03:53:13 +00:00
|
|
|
|
2010-04-04 07:14:00 +00:00
|
|
|
public $useTable = 'test_plugin_comments';
|
2012-03-18 03:53:13 +00:00
|
|
|
|
2010-04-04 07:14:00 +00:00
|
|
|
public $name = 'TestPluginComment';
|
2012-03-18 03:53:13 +00:00
|
|
|
|
2010-01-18 17:35:30 +00:00
|
|
|
}
|