<?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.ObjectoryCoreElementSet.php 81 2008-01-17 23:08:21Z yannromefort $
*/
//-----------------------------------------------------------------------------
// namespace
if (!defined("DefObjectoryCoreElementSet")) {
//-------------------------------------------------------------------------
// Define
define("DefObjectoryCoreElementSet", "1");
//-------------------------------------------------------------------------
// Include
@require_once (FRAMEWORK_DIR . DATASETOBJECT);
//-------------------------------------------------------------------------
// Class
class ObjectoryCoreElementSet extends DataSet {
//---------------------------------------------------------------------
// Constructor
/**
*
* @see RepositoryModelElementExporter.RendeView in view.RepositoryModelElementExporter.php
*
* @param integer ObjectoryElement id $OBJELEMPKID
* @param integer Repository id $REPOSITPKID
*
*/
function ObjectoryCoreElementSet($OBJELEMPKID = 0, $REPOSITPKID = 0) {
//
$this->m_tableSet[PRIMARYKEY] = "tbl_repository_model_element";
//
$this->m_querySet["OBJELEMPKID"] = $OBJELEMPKID;
$this->m_querySet["REPOSITPKID"] = $REPOSITPKID;
}
//---------------------------------------------------------------------
// Methods
/**
*
* @param integer index type
* @param integer order type
* @param integer order mode
* @return string
*/
function getSelectQuery($indexType = FOREIGNKEY, $orderType = NATURALKEY, $orderMode = "") {
//
switch ($indexType) {
case FOREIGNKEY:
/*
*
* SELECT
* tbl_objectory_element as t1
* <-> tbl_objectory_element_type as t2
* <-> tbl_repository_core_element as t3
* <-> tbl_repository_model_element as t4
* ON index = OBJELEMPKID
*/
//
$index1 = $this->m_querySet["OBJELEMPKID"];
$index2 = $this->m_querySet["REPOSITPKID"];
//
if (($index1 != 0) && ($index2 != 0)) {
//
$selectSQL = "SELECT
t2.OBJETYPCODE,
t3.REPCELTPKID,
t4.REPMELEPKID,
t4.REPMELENAME
FROM
tbl_objectory_element as t1,
tbl_objectory_element_type as t2,
tbl_repository_core_element as t3,
tbl_repository_model_element as t4
WHERE
t1.OBJELEMPKID=$index1
AND
t1.OBJETYPPKID=t2.OBJETYPPKID
AND
t2.REPCELTPKID=t3.REPCELTPKID
AND
t3.REPOSITPKID=$index2
AND
t3.REPCELESTAT>0
AND
t3.REPCELEPKID=t4.REPCELEPKID
AND
t4.REPMELELINK IS NULL
AND
t4.REPMELESTAT>0";
//
switch ($orderType) {
case PRIMARYKEY:
return ($selectSQL . " ORDER BY t4.REPMELEPKID $orderMode");
case NATURALKEY:
return ($selectSQL . " ORDER BY t4.REPMELENAME $orderMode");
default:
return ($selectSQL . " ORDER BY t4.REPMELENAME");
}
}
//
break;
}
//
return ("");
}
};
//-------------------------------------------------------------------------
}
// namespace
//-----------------------------------------------------------------------------
?>