PageRenderTime 52ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 0ms

/models/log.php

https://bitbucket.org/cakephp/cakebot
PHP | 46 lines | 5 code | 1 blank | 40 comment | 0 complexity | e795be7dfb424ab2a90a70f3b6f42f58 MD5 | raw file
  1. <?php
  2. /* SVN FILE: $Id$ */
  3. /**
  4. * Short description for log.php
  5. *
  6. * Long description for log.php
  7. *
  8. * PHP versions 4 and 5
  9. *
  10. * CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
  11. *
  12. * Licensed under The MIT License
  13. * Redistributions of files must retain the above copyright notice.
  14. *
  15. * @filesource
  16. * @copyright CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
  17. * @link http://www.cakephp.org
  18. * @package cakebot
  19. * @subpackage cakebot.models
  20. * @since 1.0
  21. * @version $Revision$
  22. * @modifiedby $LastChangedBy$
  23. * @lastmodified $Date$
  24. * @license http://www.opensource.org/licenses/mit-license.php The MIT License
  25. */
  26. /**
  27. * Log class
  28. *
  29. * @package cakebot
  30. * @subpackage cakebot.models
  31. */
  32. class Log extends AppModel {
  33. /**
  34. * name property
  35. *
  36. * @var string 'Log'
  37. * @access public
  38. */
  39. var $name = 'Log';
  40. /*var $validate = array(
  41. 'channel' => array('alphaNumeric'),
  42. 'username' => array('alphaNumeric')
  43. );*/
  44. }
  45. ?>