<?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.DirectoryExplorer.php 90 2008-01-31 22:02:05Z yannromefort $
*/
//-----------------------------------------------------------------------------
// namespace
if (!defined("DefDirectoryExplorer")) {
//-------------------------------------------------------------------------
// Define
define("DefDirectoryExplorer", "1");
//-------------------------------------------------------------------------
// Include
@require_once (FRAMEWORK_DIR . VIEWHELPER);
//-------------------------------------------------------------------------
// Class
class DirectoryExplorer extends ViewObject {
//---------------------------------------------------------------------
// Constructor
/**
*
* @param integer Directory pkid // primary key
*
*/
function DirectoryExplorer($DIRECTOPKID = 0) {
//
$this->m_fieldSet["DIRECTOPKID"] = $DIRECTOPKID;
}
//---------------------------------------------------------------------
// Methods
/*
*
* @access public
*
* @param object DataSource object
* @param object ViewTemplate object
* @param string layout name is a template file name or a layer name in a template file
* @param string block name in layout
* @param integer view type { ITEMVIEW, LISTVIEW, TREEVIEW }
* @param integer outputmode
*
*/
function renderView(&$datasource, &$template, $layout, $block, $view = NULL, $mode = OUTPUT) {
//
if (!is_object($template)) {
//
$this->m_errorSet[VIEW_SYSTEM_ERROR] = true;
//
return (false);
}
//
if (!empty($layout) && ($template->define($layout) == false)) {
//
$this->m_errorSet[VIEW_LAYOUT_ERROR] = $layout;
//
return (false);
}
//
switch ($view) {
case ITEMVIEW:
//
break;
case TREEVIEW:
/*
* * @see view.DirectoryProjectExplorer.php on DirectoryProjectExplorer.renderView
*/
//
$repDList = "rep-res-dlist";
$repFList = "rep-res-flist";
$repHList = "rep-res-hlist";
//
/*
* 1- Directory
*/
//
@include_once (COMPONENTS_DATA . "data.Directory.php");
//
$directory = new CurrentDirectory($this->m_fieldSet["DIRECTOPKID"]);
if ($directory->selectRow($datasource) == false) {
//
$this->m_errorSet[VIEW_OBJECT_ERROR] = true;
return (false);
}
//
$template->assign($directory->fieldSet());
//
/*
* DIRECTORY
*
*/
//
/*
* 2 DirectoryResourceExplorer Tree view
*/
//
@include_once (COMPONENTS_VIEW . "view.DirectoryResourceExplorer.php");
//
// 2-1 Data sources
$DRD_Explorer = new DirectoryResourceExplorer();
$DRD_Explorer->set_field_value("DIRRESTPKID", DATARESOURCE);
$DRD_Explorer->set_field_value("DIRECTOPKID", $this->m_fieldSet["DIRECTOPKID"]);
$DRD_Explorer->renderView($datasource, $template, "", $repDList, TREEVIEW, RENDER);
unset($DRD_Explorer);
//
/* 2-2 File servers
$DRF_Explorer = new DirectoryResourceExplorer();
$DRF_Explorer->set_field_value("DIRRESTPKID", FILERESOURCE);
$DRF_Explorer->set_field_value("DIRECTOPKID", $this->m_fieldSet["DIRECTOPKID"]);
$DRF_Explorer->renderView($datasource, $template, "", $repFList, TREEVIEW, RENDER);
unset($DRF_Explorer);
*/
//
// 2-3 Host servers
$DRH_Explorer = new DirectoryResourceExplorer();
$DRH_Explorer->set_field_value("DIRRESTPKID", HOSTRESOURCE);
$DRH_Explorer->set_field_value("DIRECTOPKID", $this->m_fieldSet["DIRECTOPKID"]);
$DRH_Explorer->renderView($datasource, $template, "", $repHList, TREEVIEW, RENDER);
unset($DRH_Explorer);
//
break;
}
//
$template->output($mode);
//
return (true);
}
};
// Class
//-------------------------------------------------------------------------
}
// namespace
//-----------------------------------------------------------------------------
?>