<?php
/*
* Copyright 2008 Blandware (http://www.blandware.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Table Definition for permission
*
* @package AtleapLite
* @author Roman Puchkovskiy
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
*/
/**
*/
require_once 'dbdo_ext.php';
/**
* Permission which may be assigned to some role.
*
* @package AtleapLite
*/
class DataObjects_Permission extends DB_DataObject_Base
{
###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */
var $__table = 'permission'; // table name
var $id; // int(11) not_null primary_key
var $identifier; // string(120) not_null unique_key
var $title; // string(765) not_null
/* ZE2 compatibility trick*/
function __clone() { return $this;}
/* Static get */
function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('DataObjects_Permission',$k,$v); }
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE
}