<?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: data.ObjectoryResourceSet.php 81 2008-01-17 23:08:21Z yannromefort $
*/
//-----------------------------------------------------------------------------
// namespace
if (!defined("DefObjectoryResourceSet")) {
//-------------------------------------------------------------------------
// Define
define("DefResourcesDirectory", "1");
DEFINE(DATARESOURCE, 1);
DEFINE(HOSTRESOURCE, 2);
//-------------------------------------------------------------------------
// Include
@require_once (FRAMEWORK_DIR . DATASETOBJECT);
//-------------------------------------------------------------------------
// Class
class ObjectoryResourceSet extends DataSet {
//---------------------------------------------------------------------
// Constructor
/**
*
* @param integer DirectoryProject $DIRPROJPKID foreign key
* @param integer DirectoryResource Type $DIRRESTPKID foreign key
*
*/
function ObjectoryResourceSet($DIRPROJPKID = 0, $DIRRESTPKID = 0) {
//
$this->m_tableSet[PRIMARYKEY] = "tbl_directory_resource";
//
$this->m_indexSet[PRIMARYKEY] = "OBJRESOPKID";
$this->m_indexSet[NATURALKEY] = "DIRRESONAME";
//
$this->m_querySet["DIRPROJPKID"] = $DIRPROJPKID;
$this->m_querySet["DIRRESTPKID"] = $DIRRESTPKID;
}
//---------------------------------------------------------------------
// Methods
/*
*
* @access protected
*
* @param integer index type
* @param integer order type
* @param string order mode
*
*/
function getSelectQuery($indexType = FOREIGNKEY, $orderType = NATURALKEY, $orderMode = "") {
//
switch ($indexType) {
case FOREIGNKEY:
/*
*
* SELECT
* tbl_objectory_resource as t1
* <-> tbl_directory_resource as t2
* ON DIRPROJPKID & DIRRESTPKID
*
*/
//
$index1 = $this->m_querySet["DIRPROJPKID"];
$index2 = $this->m_querySet["DIRRESTPKID"];
if (($index1 != 0) && ($index2 != 0)) {
//
$selectSQL = "SELECT
t1.OBJRESOPKID,
t1.OBJRESONAME,
t1.OBJRURLNAME,
t2.DIRRESOPKID,
t2.DIRRESTPKID,
t2.DIRRESONAME
FROM
tbl_objectory_resource as t1,
tbl_directory_resource as t2
WHERE
t1.DIRPROJPKID=$index1
AND
t1.OBJRESOSTAT>0
AND
t1.DIRRESOPKID=t2.DIRRESOPKID
AND
t2.DIRRESTPKID=$index2
AND
t2.DIRRESOSTAT>0";
//
switch ($orderType) {
case PRIMARYKEY:
return ($selectSQL . " ORDER BY t2.DIRRESOPKID $orderMode");
case NATURALKEY:
return ($selectSQL . " ORDER BY t2.DIRRESONAME $orderMode");
default:
return ($selectSQL . " ORDER BY t2.DIRRESONAME");
}
}
//
break;
}
//
return ("");
}
};
//-------------------------------------------------------------------------
}
// namespace
//-----------------------------------------------------------------------------
?>