2009-03-19 20:10:10 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
|
|
* Test App Comment Model
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework (http://www.cakephp.org)
|
2010-01-14 04:47:14 +00:00
|
|
|
* Copyright 2006-2010, Cake Software Foundation, Inc.
|
2009-03-19 20:10:10 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @filesource
|
2010-01-14 04:47:14 +00:00
|
|
|
* @copyright Copyright 2006-2010, Cake Software Foundation, Inc.
|
2009-03-19 20:10:10 +00:00
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.test_app.models
|
|
|
|
* @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 PersisterTwo extends AppModel {
|
|
|
|
var $useTable = 'posts';
|
|
|
|
var $name = 'PersisterTwo';
|
|
|
|
|
2010-01-18 17:35:30 +00:00
|
|
|
var $actsAs = array('PersisterOneBehavior', 'TestPlugin.TestPluginPersisterOne');
|
2009-03-19 20:10:10 +00:00
|
|
|
|
2010-01-18 17:35:30 +00:00
|
|
|
var $hasMany = array('Comment', 'TestPlugin.TestPluginComment');
|
2009-03-19 20:10:10 +00:00
|
|
|
}
|
|
|
|
?>
|