<?php
/**
* Entier Studio
*
* LICENSE
*
* Copyright 2006 Entier Studio team.
*
* 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.
*
* @package entier.studio
* @copyright Copyright (c) 2006 Entier Studio team. All rights reserved.
* @version $Id: html.ApplicationCodificationDDL.php 85 2008-01-21 20:43:08Z yannromefort $
*/
//-----------------------------------------------------------------------------
// namespace
if (!defined("DefApplicationCodificationDDL")) {
//-------------------------------------------------------------------------
// Define
define("DefApplicationCodificationDDL", "1");
//-------------------------------------------------------------------------
// Include
@require_once (FRAMEWORK_DIR . "htmldropdownlist.php");
@include_once (COMPONENTS_DATA . "data.ApplicationCodificationSet.php");
//-------------------------------------------------------------------------
// Class
class ApplicationCodificationDDL extends HTMLDropdownList {
//---------------------------------------------------------------------
// Attributes
/**
*
* @var array
* @see
*/
var $m_ElemType = 0;
//---------------------------------------------------------------------
// Constructor
/**
*
*/
function ApplicationCodificationDDL($layout, $class, $type, $default = false) {
//
$this->m_layoutName = $layout;
$this->m_className = $class;
$this->m_ElemType = $type;
$this->m_defaultItem = $default;
}
//---------------------------------------------------------------------
// Methods
/**
*
* @access public
*
* @param object DataSource object
* @param object DataObject object
* @param integer selected item value
* @return string
*/
function renderObject(&$datasource, &$dataobject, $value = 0) {
//
if (is_null($dataobject)) {
//
@include_once (COMPONENTS_DATA . "data.ApplicationCodificationSet.php");
//
$dataobject = new ApplicationCodificationSet($this->m_ElemType);
if ($dataobject->selectSet($datasource) == false) return ("");
}
//
return (parent::renderObject($datasource, $dataobject, $value));
}
};
// Class
//-----------------------------------------------------------------------------
}
// namespace
//--------------------------------------------------------------------------
?>