/models/log.php
https://bitbucket.org/cakephp/cakebot · PHP · 46 lines · 5 code · 1 blank · 40 comment · 0 complexity · e795be7dfb424ab2a90a70f3b6f42f58 MD5 · raw file
- <?php
- /* SVN FILE: $Id$ */
- /**
- * Short description for log.php
- *
- * Long description for log.php
- *
- * PHP versions 4 and 5
- *
- * CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @filesource
- * @copyright CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
- * @link http://www.cakephp.org
- * @package cakebot
- * @subpackage cakebot.models
- * @since 1.0
- * @version $Revision$
- * @modifiedby $LastChangedBy$
- * @lastmodified $Date$
- * @license http://www.opensource.org/licenses/mit-license.php The MIT License
- */
- /**
- * Log class
- *
- * @package cakebot
- * @subpackage cakebot.models
- */
- class Log extends AppModel {
- /**
- * name property
- *
- * @var string 'Log'
- * @access public
- */
- var $name = 'Log';
- /*var $validate = array(
- 'channel' => array('alphaNumeric'),
- 'username' => array('alphaNumeric')
- );*/
- }
- ?>