<?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.DictionaryPropertySet.php 97 2008-02-05 21:08:53Z yannromefort $
*/
//-----------------------------------------------------------------------------
// namespace
if (!defined("DefDictionaryPropertySet")) {
//-------------------------------------------------------------------------
// Define
define("DefDictionaryPropertySet", "1");
//-------------------------------------------------------------------------
// Include
@require_once (FRAMEWORK_DIR . DATASETOBJECT);
//-------------------------------------------------------------------------
// Class
class DictionaryPropertySet extends DataSet {
//---------------------------------------------------------------------
// Constructor
/**
*
* @param integer Repository $REPOSITPKID foreign key
* @param integer DictionaryPropertyType DICPTYPPKID // foreign key
*/
function DictionaryPropertySet($REPOSITPKID = 0, $DICPTYPPKID = 0) {
//
$this->m_tableSet[PRIMARYKEY] = "tbl_dictionary_property";
$this->m_tableSet[FOREIGNKEY] = array(
"tbl_dictionary_property_type",
"tbl_repository"
);
//
$this->m_indexSet[PRIMARYKEY] = "DICPROPPKID";
$this->m_indexSet[NATURALKEY] = "DICPROPNAME";
$this->m_indexSet[FOREIGNKEY] = array(
"DICPTYPPKID",
"REPOSITPKID"
);
//
$this->m_querySet["REPOSITPKID"] = $REPOSITPKID;
$this->m_querySet["DICPTYPPKID"] = $DICPTYPPKID;
}
//-------------------------------------------------------------------------
// 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_repository as t1
* <-> tbl_dictionary_property_type as t2
* <-> tbl_dictionary_property as t3
* ON
* DICPTYPPKID & DIRECTOPKID
*/
//
$index1 = $this->m_querySet["REPOSITPKID"];
$index2 = $this->m_querySet["DICPTYPPKID"];
//
if (($index1 != 0) && ($index2 != 0)) {
//
$selectSQL = "SELECT
t1.REPTYPEPKID,
t2.DICPTYPNAME,
t3.DICPROPPKID,
t3.DICPTYPPKID,
t3.DICPROPNAME,
t3.DICPROPCODE,
t3.DICPROPTYPE,
t3.DICPROPSTAT
FROM
tbl_repository as t1,
tbl_dictionary_property_type as t2,
tbl_dictionary_property as t3
WHERE
t1.REPOSITPKID=$index1
AND
t1.REPOSITSTAT>0
AND
t1.REPTYPEPKID=t2.REPTYPEPKID
AND
t2.DICPTYPPKID=$index2
AND
t2.DICPTYPPKID=t3.DICPTYPPKID
AND
t3.DICPROPSTAT>0";
//
switch ($orderType) {
case PRIMARYKEY:
return ($selectSQL . " ORDER BY t3.DICPROPPKID $orderMode");
case NATURALKEY:
return ($selectSQL . " ORDER BY t3.DICPROPNAME $orderMode");
default:
return ($selectSQL . " ORDER BY t3.DICPROPNAME");
}
}
//
break;
}
//
return ("");
}
};
// Class
//-------------------------------------------------------------------------
}
// namespace
//-----------------------------------------------------------------------------
?>