<?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.TemporaryContainerElementSet.php 81 2008-01-17 23:08:21Z yannromefort $
*/
//-----------------------------------------------------------------------------
// namespace
if (!defined("DefTemporaryContainerElementSet")) {
//-------------------------------------------------------------------------
// Define
define("DefTemporaryContainerElementSet", "1");
//-------------------------------------------------------------------------
// Include
@require_once (FRAMEWORK_DIR . DATASETOBJECT);
//-------------------------------------------------------------------------
// Class
//
class TemporaryContainerElementSet extends DataSet {
//---------------------------------------------------------------------
// Constructor
/**
*
* @param integer TemporaryElement $TMPELEMLINK reflect key
* @param integer ObjectoryElement $OBJELEMPKID foreign key
* @param integer ObjectoryElementType $OBJETYPPKID foreign key
*
*/
function TemporaryContainerElementSet($TMPELEMLINK = 0, $OBJELEMPKID = 0, $OBJETYPPKID = 0) {
//
$this->m_tableSet[PRIMARYKEY] = "tbl_temporary_element";
//
$this->m_indexSet[PRIMARYKEY] = "TMPELEMPKID";
$this->m_indexSet[FOREIGNKEY] = array(
"OBJETYPPKID",
"OBJELEMPKID"
);
$this->m_indexSet[NATURALKEY] = "TMPELEMNAME";
$this->m_indexSet[REFLECTKEY] = "TMPELEMLINK";
//
$this->m_querySet["TMPELEMLINK"] = $TMPELEMLINK;
$this->m_querySet["OBJELEMPKID"] = $OBJELEMPKID;
$this->m_querySet["OBJETYPPKID"] = $OBJETYPPKID;
}
//---------------------------------------------------------------------
// Methods: SQL
/*
*
* @access public
*
* @param object data source
* @param object view template
* @param string layout name is a html template file name or a layer name
* @param string block nale in layout
* @param query additional params
* @param integer output_mode
*
* @see class view.ObjectoryElementExplorer.php.renderView
*
*/
function getSelectQuery($indexType = FOREIGNKEY, $orderType = NATURALKEY, $orderMode = "") {
//
switch ($indexType) {
case FOREIGNKEY:
/*
*
* SELECT
* tbl_temporary_element
* <-> tbl_objectory_element_type
* ON
* (TMPELEMLINK | OBJELEMPKID) & OBJETYPPKID
*/
//
$index1 = $this->m_querySet["TMPELEMLINK"];
$index2 = $this->m_querySet["OBJELEMPKID"];
$index3 = $this->m_querySet["OBJETYPPKID"];
//
if ($index3 != 0) // check target type
{
if ($index1 != 0) {
//
$selectSQL = "SELECT
t1.TMPELEMPKID
FROM
tbl_temporary_element as t1
WHERE
t1.TMPELEMLINK=$index1
AND
t1.TMPELEMSTAT>0
AND
t1.OBJETYPPKID=$index3";
} else {
//
$selectSQL = "SELECT
t1.TMPELEMPKID
FROM
tbl_temporary_element as t1
WHERE
t1.TMPELEMLINK IS NULL
AND
t1.OBJELEMPKID=$index2
AND
t1.TMPELEMSTAT>0
AND
t1.OBJETYPPKID=$index3";
}
//
switch ($orderType) {
case PRIMARYKEY:
return ($selectSQL . " ORDER BY t1.TMPELEMPKID $orderMode");
case NATURALKEY:
return ($selectSQL . " ORDER BY t1.TMPELEMNAME $orderMode");
default:
return ($selectSQL . " ORDER BY t1.OBJETYPPKID, t1.TMPELEMRANK, t1.TMPELEMNAME");
}
}
//
break;
}
//
return ("");
}
};
// Class
//-------------------------------------------------------------------------
}
// namespace
//-----------------------------------------------------------------------------
?>