TestPluginComment.php 869 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /* SVN FILE: $Id$ */
  3. /**
  4. * Test App Comment Model
  5. *
  6. *
  7. *
  8. * PHP 5
  9. *
  10. * CakePHP : Rapid Development Framework (http://cakephp.org)
  11. * Copyright 2005-2011, 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 2005-2011, Cake Software Foundation, Inc.
  17. * @link http://cakefoundation.org/projects/info/cakephp CakePHP Project
  18. * @package Cake.Test.test_app.Plugin.TestPlugin.Model
  19. * @since CakePHP v 1.2.0.7726
  20. * @version $Revision$
  21. * @modifiedby $LastChangedBy$
  22. * @lastmodified $Date$
  23. * @license http://www.opensource.org/licenses/mit-license.php The MIT License
  24. */
  25. class TestPluginComment extends TestPluginAppModel {
  26. public $useTable = 'test_plugin_comments';
  27. public $name = 'TestPluginComment';
  28. }