18 lines
377 B
PHP
18 lines
377 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* @copyright Copyright (C) 2005-2009 Keyboard Monkeys Ltd. http://www.kb-m.com
|
||
|
* @license http://creativecommons.org/licenses/BSD/ BSD License
|
||
|
* @author Keyboard Monkey Ltd
|
||
|
* @since CommunityID 0.9
|
||
|
* @package CommunityID
|
||
|
* @packager Keyboard Monkeys
|
||
|
*/
|
||
|
|
||
|
|
||
|
class History extends Zend_Db_Table_Row_Abstract
|
||
|
{
|
||
|
const DENIED = 0;
|
||
|
const AUTHORIZED = 1;
|
||
|
}
|