TestPluginAuthUser.php 907 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * Test Plugin Auth User Model
  4. *
  5. *
  6. *
  7. * PHP 5
  8. *
  9. * CakePHP : Rapid Development Framework (http://cakephp.org)
  10. * Copyright 2005-2011, Cake Software Foundation, Inc.
  11. *
  12. * Licensed under The MIT License
  13. * Redistributions of files must retain the above copyright notice.
  14. *
  15. * @copyright Copyright 2005-2011, Cake Software Foundation, Inc.
  16. * @link http://cakephp.org CakePHP Project
  17. * @package Cake.Test.test_app.Plugin.TestPlugin.Model
  18. * @since CakePHP v 1.2.0.4487
  19. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  20. */
  21. class TestPluginAuthUser extends TestPluginAppModel {
  22. /**
  23. * Name property
  24. *
  25. * @var string
  26. */
  27. public $name = 'TestPluginAuthUser';
  28. /**
  29. * useTable property
  30. *
  31. * @var string
  32. */
  33. public $useTable = 'auth_users';
  34. /**
  35. * useDbConfig property
  36. *
  37. * @var string 'test'
  38. */
  39. public $useDbConfig = 'test';
  40. }