<?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 field
*
* @package AtleapLite
* @author Roman Puchkovskiy
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
*/
/**
*/
require_once 'dbdo_ext.php';
/**
* Represents a field which belongs to a page. Has identifier and some text.
*
* @package AtleapLite
*/
class DataObjects_Field extends DB_DataObject_Base
{
###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */
var $__table = 'field'; // table name
var $id; // int(11) not_null primary_key auto_increment
var $identifier; // string(120) not_null
var $page_id; // int(11) not_null multiple_key
var $data; // blob(65535) blob
/* ZE2 compatibility trick*/
function __clone() { return $this;}
/* Static get */
function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('DataObjects_Field',$k,$v); }
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE
/**
* Finds a field by page ID and field identifier.
*
* @param int $pageID ID of page
* @param string $identifier identifier of field
* @return object field
*/
function findByPageIdAndIdentifier($pageId, $identifier) {
$this->page_id = $pageId;
$this->identifier = $identifier;
return $this->find(true);
}
}