<?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: view.DictionaryPropertyModelScopeManager.php 81 2008-01-17 23:08:21Z yannromefort $
*/
//-----------------------------------------------------------------------------
// namespace
if (!defined("DefDictionaryPropertyModelScopeManager")) {
//-------------------------------------------------------------------------
// Define
define("DefDictionaryPropertyModelScopeManager", "1");
//-------------------------------------------------------------------------
// Include
@require_once (FRAMEWORK_DIR . VIEWHELPER);
//-------------------------------------------------------------------------
// Class
/*
* View Helper
* association DictionaryProperty<->RepositoryModelElementProperty on DICPROPPKID
*/
class DictionaryPropertyModelScopeManager extends ViewObject {
//---------------------------------------------------------------------
// Constructor
/**
*
*/
function DictionaryPropertyModelScopeManager() {
//
}
//---------------------------------------------------------------------
// Methods
/*
*
* @access public
*
* @param object data source
* @param object view template
* @param string layout name is a html template file name or a layer name
* @param string block name in layout
* @param integer query type { INSERT, SELECT }
* @param integer output_mode
*
*/
function renderView(&$datasource, &$template, $layout, $block, $view = NULL, $mode = OUTPUT) {
//
if (!is_object($template)) {
//
$this->m_errorSet[VIEW_SYSTEM_ERROR] = true;
//
return (false);
}
//
if ($template->define($layout) == false) {
//
$this->m_errorSet[VIEW_LAYOUT_ERROR] = $layout;
//
return (false);
}
//
/*
* *- Error management
*/
//
if ($this->get_error_count() > 0) {
//
@include_once (FRAMEWORK_VIEW . "view.ErrorMessage.php");
//
$errorMessage = new ErrorMessage($this->errorSet());
if ($errorMessage->renderView($template, $block, $view) == false) {
//
$this->m_errorSet[VIEW_RENDER_ERROR] = true;
//
return (false);
}
}
//
switch ($view) {
case ITEMVIEW:
/*
* 1- RepositoryModelElementProperty
* 2- ApplicationCodificationSet
*/
//
/*
* 1- DictionaryProperty
*/
//
@include_once (COMPONENTS_DATA . "data.RepositoryModelElementProperty.php");
//
$property = new RepositoryModelElementProperty($this->m_fieldSet["REPMEPRPKID"]);
if ($property->selectRow($datasource) == false) {
//
$this->m_errorSet[VIEW_OBJECT_ERROR] = true;
//
return (false);
}
//
$template->assign($property->fieldSet());
//
/*
* 2- ApplicationCodificationSet Dropdownlist
*/
//
@include_once (COMPONENTS_HTML . "html.ApplicationCodificationDDL.php");
//
$codificationSet = NULL;
$codificationSetDDL = new ApplicationCodificationDDL("stat", "formInput", 1);
$this->m_blockSet["REPSTATLIST"] = $codificationSetDDL->renderObject($datasource, $codificationSet, $property->get_field_value("REPMEPRSTAT"));
//
$template->assign($this->m_blockSet);
//
break;
case LISTVIEW:
/*
* DictionaryModelElementPropertySet
*/
//
@include_once (COMPONENTS_DATA . "data.DictionaryModelElementPropertySet.php");
//
$propertySet = new DictionaryModelElementPropertySet($this->m_fieldSet["DICPROPPKID"]);
if ($propertySet->selectSet($datasource, FOREIGNKEY) == true) {
//
$template->assign($this->fieldSet());
//
for ($i = 0;$i < $propertySet->rowCount();$i++) {
// select next row
if ($propertySet->fetchCursorRow($datasource) == false) return (false);
//
$template->select("list");
$template->assign($propertySet->fieldSet());
$template->render("list");
}
}
//
break;
}
//
$template->output($mode);
//
return (true);
}
};
// Class
//-------------------------------------------------------------------------
}
// namespace
//-----------------------------------------------------------------------------
?>