~tsep-dev/tsep/0.9-beta

« back to all changes in this revision

Viewing changes to branches/symfony/cake/tests/test_app/plugins/test_plugin/models/test_plugin_comment.php

  • Committer: geoffreyfishing
  • Date: 2011-01-11 23:46:12 UTC
  • Revision ID: svn-v4:ae0de26e-ed09-4cbe-9a20-e40b4c60ac6c::125
Created a symfony branch for future migration to symfony

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
}