<?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.DirectoryResourceSet.php 81 2008-01-17 23:08:21Z yannromefort $
*/
//-----------------------------------------------------------------------------
// namespace
if (!defined("DefDirectoryResourceSet")) {
//-------------------------------------------------------------------------
// Define
define("DefResourcesDirectory", "1");
//-------------------------------------------------------------------------
// Include
@require_once (FRAMEWORK_DIR . DATASETOBJECT);
//-------------------------------------------------------------------------
// Class
class DirectoryResourceSet extends DataSet {
//---------------------------------------------------------------------
// Constructor
/**
*
* @param integer Directory pkid fkid $DIRECTOPKID
* @param integer DirectoryResource Type fkid $DIRRESTPKID
*
*/
function DirectoryResourceSet($DIRECTOPKID = 0, $DIRRESTPKID = 0) {
//
$this->m_tableSet[PRIMARYKEY] = "tbl_directory_resource";
//
$this->m_indexSet[PRIMARYKEY] = "DIRRESOPKID";
$this->m_indexSet[FOREIGNKEY] = array(
"DIRECTOPKID",
"DIRRESTPKID"
);
$this->m_indexSet[NATURALKEY] = "DIRRESONAME";
//
$this->m_querySet["DIRECTOPKID"] = $DIRECTOPKID;
$this->m_querySet["DIRRESTPKID"] = $DIRRESTPKID;
}
/*
*
* @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_directory_resource as t1
* ON
* DIRECTOPKID & DIRRESTPKID
*
*/
//
$index1 = $this->m_querySet["DIRECTOPKID"];
$index2 = $this->m_querySet["DIRRESTPKID"];
//
if (($index1 != 0) && ($index2 != 0)) {
//
$selectSQL = "SELECT
t1.DIRRESOPKID,
t1.DIRRESTPKID,
t1.DIRRESONAME
FROM
tbl_directory_resource as t1
WHERE
t1.DIRECTOPKID=$index1
AND
t1.DIRRESTPKID=$index2
AND
t1.DIRRESOSTAT>0";
//
switch ($orderType) {
case PRIMARYKEY:
return ($selectSQL . " ORDER BY t1.DIRRESOPKID $orderMode");
case NATURALKEY:
return ($selectSQL . " ORDER BY t1.DIRRESONAME $orderMode");
default:
return ($selectSQL . " ORDER BY t1.DIRRESONAME");
}
}
//
break;
}
//
return ("");
}
};
//-------------------------------------------------------------------------
}
// namespace
//-----------------------------------------------------------------------------
?>