init files
Dieser Commit ist enthalten in:
Ursprung
46f679b77f
Commit
691c2ffaf0
29 geänderte Dateien mit 2654 neuen und 0 gelöschten Zeilen
400
classes/class.content_allocation.php
Normale Datei
400
classes/class.content_allocation.php
Normale Datei
|
|
@ -0,0 +1,400 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Project:
|
||||
* Contenido Content Management System
|
||||
*
|
||||
* Description:
|
||||
* Search articles by content allocation
|
||||
*
|
||||
* Requirements:
|
||||
* @con_php_req 5.0
|
||||
*
|
||||
*
|
||||
* @package Contenido Backend plugins
|
||||
* @version 0.7.8
|
||||
* @author Marco Jahn
|
||||
* @copyright four for business AG <www.4fb.de>
|
||||
* @license http://www.contenido.org/license/LIZENZ.txt
|
||||
* @link http://www.4fb.de
|
||||
* @link http://www.contenido.org
|
||||
* @since file available since contenido release <= 4.6
|
||||
*
|
||||
* {@internal
|
||||
* created 2005
|
||||
* modified 2005-10-27, Willi Man, debug option
|
||||
* modified 2005-11-16, Willi Man, new method findMatchingContentByContentAllocationByCategories
|
||||
* modified 2005-11-21, Willi Man, new method findMarchingCOntentByContentAllocation_OR_Categories
|
||||
* modified 2008-04-06, Holger Librenz, direct mysql_* calls remoced, using DB_ConLite:: methods instead
|
||||
* modified 2008-07-02, Frederic Schneider, add security fix
|
||||
*
|
||||
* $Id: class.content_allocation.php 131 2019-07-07 18:14:22Z oldperl $:
|
||||
* }}
|
||||
*
|
||||
*/
|
||||
if (!defined('CON_FRAMEWORK')) {
|
||||
die('Illegal call');
|
||||
}
|
||||
|
||||
plugin_include('repository', 'custom/FrontendNavigation.php');
|
||||
|
||||
class pApiContentAllocation {
|
||||
|
||||
/**
|
||||
* References database object
|
||||
*
|
||||
* @var DB_ConLite
|
||||
*/
|
||||
var $db = null;
|
||||
var $table = null;
|
||||
var $lang = null;
|
||||
var $client = null;
|
||||
var $treeObj = null;
|
||||
|
||||
/**
|
||||
*
|
||||
* @modified 27.10.2005 new class variable $this->bDebug (if true print debug information)
|
||||
*/
|
||||
public function __construct() {
|
||||
global $db, $cfg, $lang, $client;
|
||||
|
||||
$this->db = new DB_ConLite;
|
||||
$this->table = $cfg['tab'];
|
||||
$this->lang = $lang;
|
||||
$this->client = $client;
|
||||
|
||||
# use this option carefully and only temporary.
|
||||
# the hidden debug output as html-comments can cause display problems.
|
||||
$this->bDebug = false;
|
||||
|
||||
$this->treeObj = new pApiTree('f31a4384-e5c1-4ede-b1bb-f43657ec73a5');
|
||||
}
|
||||
|
||||
function storeAllocations($idartlang, $allocations) {
|
||||
// empty before insert
|
||||
$this->deleteAllocationsByIdartlang($idartlang);
|
||||
|
||||
if (is_array($allocations)) {
|
||||
foreach ($allocations as $value) {
|
||||
$sql = "INSERT INTO " . $this->table['pica_alloc_con'] . " (idpica_alloc, idartlang) VALUES (" . Contenido_Security::toInteger($value) . ", " . Contenido_Security::toInteger($idartlang) . ")";
|
||||
$this->db->query($sql);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function deleteAllocations($idpica_alloc) {
|
||||
$sql = "DELETE FROM " . $this->table['pica_alloc_con'] . " WHERE idpica_alloc = " . Contenido_Security::toInteger($idpica_alloc);
|
||||
$this->db->query($sql);
|
||||
}
|
||||
|
||||
function deleteAllocationsByIdartlang($idartlang) {
|
||||
$sql = "DELETE FROM " . $this->table['pica_alloc_con'] . " WHERE idartlang = " . Contenido_Security::toInteger($idartlang);
|
||||
$this->db->query($sql);
|
||||
}
|
||||
|
||||
function loadAllocations($idartlang) {
|
||||
//$sql = "SELECT idpica_alloc FROM " . $this->table['pica_alloc_con'] . " WHERE idartlang = " . Contenido_Security::toInteger($idartlang);
|
||||
$this->db->query("-- pApiContentAllocation->loadAllocations()
|
||||
SELECT
|
||||
a.idpica_alloc
|
||||
FROM
|
||||
`{$this->table['pica_alloc']}` AS a
|
||||
, `{$this->table['pica_alloc_con']}` AS b
|
||||
WHERE
|
||||
idartlang = $idartlang
|
||||
AND a.idpica_alloc=b.idpica_alloc
|
||||
;");
|
||||
|
||||
$items = array();
|
||||
|
||||
while ($this->db->next_record()) {
|
||||
$items[] = $this->db->f('idpica_alloc');
|
||||
}
|
||||
return $items;
|
||||
}
|
||||
|
||||
function loadAllocationsWithNames($idartlang, $parent, $firstonly = false) {
|
||||
|
||||
global $cfg;
|
||||
|
||||
$sql = "SELECT " . $cfg['tab']['pica_alloc'] . ".idpica_alloc FROM " . $cfg['tab']['pica_alloc'] . "
|
||||
INNER JOIN " . $cfg['tab']['pica_alloc_con'] . " ON
|
||||
" . $cfg['tab']['pica_alloc'] . ".idpica_alloc = " . $cfg['tab']['pica_alloc_con'] . ".idpica_alloc
|
||||
WHERE (" . $cfg['tab']['pica_alloc'] . ".parentid = " . Contenido_Security::toInteger($parent) . ") AND (" . $cfg['tab']['pica_alloc_con'] . ".idartlang=" . Contenido_Security::toInteger($idartlang) . ")
|
||||
ORDER BY " . $cfg['tab']['pica_alloc'] . ".sortorder";
|
||||
|
||||
$this->db->query($sql);
|
||||
|
||||
while ($this->db->next_record()) {
|
||||
$tmp[$this->db->f("idpica_alloc")] = $this->treeObj->_fetchItemNameLang($this->db->f("idpica_alloc"));
|
||||
|
||||
if ($firstonly) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return $tmp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Build query to find matching content by content allocation
|
||||
* @param array $restrictions
|
||||
* @return string SQL
|
||||
* @modified 17.11.2005 by Willi Man
|
||||
*/
|
||||
function findMatchingContent($restrictions = null, $max = 0) {
|
||||
if (!is_array($restrictions)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
global $aCategoriesToExclude; # @see config.local.php!
|
||||
$sql = $this->_buildQuery($restrictions, $aCategoriesToExclude, $max);
|
||||
|
||||
return $sql;
|
||||
}
|
||||
|
||||
/**
|
||||
* Build query to find matching content by content allocation
|
||||
* @param array $restrictions
|
||||
* @return string SQL
|
||||
*/
|
||||
function _buildQuery($restrictions, $aCategoriesToExclude, $max) {
|
||||
|
||||
global $cfg;
|
||||
|
||||
$size = sizeof($restrictions);
|
||||
|
||||
if ($size == 0) {
|
||||
return '';
|
||||
}
|
||||
|
||||
$sql_concat = unserialize('a:78:{i:0;s:2:"aa";i:1;s:2:"ab";i:2;s:2:"ac";i:3;s:2:"ad";i:4;s:2:"ae";i:5;s:2:"af";i:6;s:2:"ag";i:7;s:2:"ah";i:8;s:2:"ai";i:9;s:2:"aj";i:10;s:2:"ak";i:11;s:2:"al";i:12;s:2:"am";i:13;s:2:"an";i:14;s:2:"ao";i:15;s:2:"ap";i:16;s:2:"aq";i:17;s:2:"ar";i:18;s:2:"as";i:19;s:2:"at";i:20;s:2:"au";i:21;s:2:"av";i:22;s:2:"aw";i:23;s:2:"ax";i:24;s:2:"ay";i:25;s:2:"az";i:26;s:2:"ca";i:27;s:2:"cb";i:28;s:2:"cc";i:29;s:2:"cd";i:30;s:2:"ce";i:31;s:2:"cf";i:32;s:2:"cg";i:33;s:2:"ch";i:34;s:2:"ci";i:35;s:2:"cj";i:36;s:2:"ck";i:37;s:2:"cl";i:38;s:2:"cm";i:39;s:2:"cn";i:40;s:2:"co";i:41;s:2:"cp";i:42;s:2:"cq";i:43;s:2:"cr";i:44;s:2:"cs";i:45;s:2:"ct";i:46;s:2:"cu";i:47;s:2:"cv";i:48;s:2:"cw";i:49;s:2:"cx";i:50;s:2:"cy";i:51;s:2:"cz";i:52;s:1:"a";i:53;s:1:"b";i:54;s:1:"c";i:55;s:1:"d";i:56;s:1:"e";i:57;s:1:"f";i:58;s:1:"g";i:59;s:1:"h";i:60;s:1:"i";i:61;s:1:"j";i:62;s:1:"k";i:63;s:1:"l";i:64;s:1:"m";i:65;s:1:"n";i:66;s:1:"o";i:67;s:1:"p";i:68;s:1:"q";i:69;s:1:"r";i:70;s:1:"s";i:71;s:1:"t";i:72;s:1:"u";i:73;s:1:"v";i:74;s:1:"w";i:75;s:1:"x";i:76;s:1:"y";i:77;s:1:"z";}');
|
||||
|
||||
$sqlTemplate = "SELECT cal.idart, cal.online, aa.idartlang, cat.idcat FROM {TABLES} WHERE {WHERE} ";
|
||||
|
||||
$tables = array();
|
||||
$where = array();
|
||||
|
||||
for ($i = 0; $i < $size; $i++) {
|
||||
if ($i == 0) { // first
|
||||
$tables[] = " " . $cfg['tab']['pica_alloc_con'] . " AS " . $sql_concat[$i];
|
||||
} else {
|
||||
$tables[] = " LEFT JOIN " . $cfg['tab']['pica_alloc_con'] . " AS " . $sql_concat[$i] . " USING (idartlang)";
|
||||
}
|
||||
if (is_int((int) $restrictions[$i]) AND $restrictions[$i] > 0) {
|
||||
$where[] = $sql_concat[$i] . ".idpica_alloc = " . $restrictions[$i];
|
||||
}
|
||||
}
|
||||
|
||||
# fetch only articles which are online
|
||||
$where[] = 'cal.online = 1';
|
||||
|
||||
# fetch only articles which are not in following categories
|
||||
if (count($aCategoriesToExclude) > 0) {
|
||||
$where[] = "cat.idcat NOT IN (" . implode(',', $aCategoriesToExclude) . ")";
|
||||
}
|
||||
|
||||
// join art_lang for idart
|
||||
$tables[] = " LEFT JOIN " . $this->table['art_lang'] . " AS cal USING (idartlang)";
|
||||
$tables[] = " LEFT JOIN " . $this->table['cat_art'] . " AS cart USING (idart)";
|
||||
$tables[] = " LEFT JOIN " . $this->table['cat'] . " as cat USING (idcat)";
|
||||
|
||||
$tables = implode('', $tables);
|
||||
$where = implode(' AND ', $where);
|
||||
|
||||
$sql = str_replace('{TABLES}', $tables, $sqlTemplate);
|
||||
$sql = str_replace('{WHERE}', $where, $sql);
|
||||
|
||||
$sql .= " ORDER BY cal.published DESC";
|
||||
|
||||
if ($max != 0 && is_integer($max)) {
|
||||
$sql .= " LIMIT " . $max;
|
||||
}
|
||||
|
||||
if ($this->bDebug) {
|
||||
print "<!-- ";
|
||||
print $sql;
|
||||
print " -->";
|
||||
} # @modified 27.10.2005
|
||||
|
||||
return $sql;
|
||||
}
|
||||
|
||||
/**
|
||||
* Search articles by content allocation and catgories
|
||||
* @param array $aContentAllocation
|
||||
* @param array $aCategories
|
||||
*
|
||||
* @return array of articles
|
||||
*/
|
||||
function findMatchingContentByContentAllocationByCategories($aContentAllocation, $aCategories = array(), $iOffset = 0, $iNumOfRows = 0) {
|
||||
if (!is_array($aContentAllocation)) {
|
||||
return array();
|
||||
}
|
||||
|
||||
for ($i = 0; $i < count($aContentAllocation); $i++) {
|
||||
if (!is_int((int) $aContentAllocation[$i]) OR ! $aContentAllocation[$i] > 0) {
|
||||
return array();
|
||||
}
|
||||
}
|
||||
|
||||
for ($i = 0; $i < count($aCategories); $i++) {
|
||||
if (!is_int((int) $aCategories[$i]) OR ! $aCategories[$i] > 0) {
|
||||
return array();
|
||||
}
|
||||
}
|
||||
|
||||
$sql = $this->_buildQuery_MatchingContentByContentAllocationByCategories($aContentAllocation, $aCategories, $iOffset, $iNumOfRows);
|
||||
|
||||
$this->db->query($sql);
|
||||
|
||||
$aResult = array();
|
||||
while ($oRow = $this->db->getResultObject()) {
|
||||
$aResult[] = $oRow;
|
||||
}
|
||||
return $aResult;
|
||||
}
|
||||
|
||||
/**
|
||||
* build SQL query to find articles by content allocation and catgories
|
||||
*
|
||||
*/
|
||||
function _buildQuery_MatchingContentByContentAllocationByCategories($aContentAllocation, $aCategories, $iOffset, $iNumOfRows) {
|
||||
|
||||
global $cfg;
|
||||
|
||||
$size = sizeof($aContentAllocation);
|
||||
|
||||
$sql_concat = unserialize('a:78:{i:0;s:2:"aa";i:1;s:2:"ab";i:2;s:2:"ac";i:3;s:2:"ad";i:4;s:2:"ae";i:5;s:2:"af";i:6;s:2:"ag";i:7;s:2:"ah";i:8;s:2:"ai";i:9;s:2:"aj";i:10;s:2:"ak";i:11;s:2:"al";i:12;s:2:"am";i:13;s:2:"an";i:14;s:2:"ao";i:15;s:2:"ap";i:16;s:2:"aq";i:17;s:2:"ar";i:18;s:2:"as";i:19;s:2:"at";i:20;s:2:"au";i:21;s:2:"av";i:22;s:2:"aw";i:23;s:2:"ax";i:24;s:2:"ay";i:25;s:2:"az";i:26;s:2:"ca";i:27;s:2:"cb";i:28;s:2:"cc";i:29;s:2:"cd";i:30;s:2:"ce";i:31;s:2:"cf";i:32;s:2:"cg";i:33;s:2:"ch";i:34;s:2:"ci";i:35;s:2:"cj";i:36;s:2:"ck";i:37;s:2:"cl";i:38;s:2:"cm";i:39;s:2:"cn";i:40;s:2:"co";i:41;s:2:"cp";i:42;s:2:"cq";i:43;s:2:"cr";i:44;s:2:"cs";i:45;s:2:"ct";i:46;s:2:"cu";i:47;s:2:"cv";i:48;s:2:"cw";i:49;s:2:"cx";i:50;s:2:"cy";i:51;s:2:"cz";i:52;s:1:"a";i:53;s:1:"b";i:54;s:1:"c";i:55;s:1:"d";i:56;s:1:"e";i:57;s:1:"f";i:58;s:1:"g";i:59;s:1:"h";i:60;s:1:"i";i:61;s:1:"j";i:62;s:1:"k";i:63;s:1:"l";i:64;s:1:"m";i:65;s:1:"n";i:66;s:1:"o";i:67;s:1:"p";i:68;s:1:"q";i:69;s:1:"r";i:70;s:1:"s";i:71;s:1:"t";i:72;s:1:"u";i:73;s:1:"v";i:74;s:1:"w";i:75;s:1:"x";i:76;s:1:"y";i:77;s:1:"z";}');
|
||||
|
||||
$sqlTemplate = "SELECT cal.idart, cal.online, aa.idartlang, cat.idcat, aa.idpica_alloc FROM {TABLES} WHERE {WHERE} ";
|
||||
|
||||
$tables = array();
|
||||
$where = array();
|
||||
|
||||
for ($i = 0; $i < $size; $i++) {
|
||||
if ($i == 0) { // first
|
||||
$tables[] = " " . $cfg['tab']['pica_alloc_con'] . " AS " . $sql_concat[$i];
|
||||
} else {
|
||||
$tables[] = " LEFT JOIN " . $cfg['tab']['pica_alloc_con'] . " AS " . $sql_concat[$i] . " USING (idartlang)";
|
||||
}
|
||||
if (is_int((int) $aContentAllocation[$i]) AND $aContentAllocation[$i] > 0) {
|
||||
$where[] = $sql_concat[$i] . ".idpica_alloc = " . $aContentAllocation[$i];
|
||||
}
|
||||
}
|
||||
|
||||
# fetch only articles which are online
|
||||
$where[] = 'cal.online = 1';
|
||||
|
||||
# fetch only articles in following categories
|
||||
if (count($aCategories) > 0) {
|
||||
$where[] = "cat.idcat IN (" . implode(',', $aCategories) . ")";
|
||||
}
|
||||
|
||||
// join art_lang for idart
|
||||
$tables[] = " LEFT JOIN " . $this->table['art_lang'] . " AS cal USING (idartlang)";
|
||||
$tables[] = " LEFT JOIN " . $this->table['cat_art'] . " AS cart USING (idart)";
|
||||
$tables[] = " LEFT JOIN " . $this->table['cat'] . " as cat USING (idcat)";
|
||||
|
||||
$tables = implode('', $tables);
|
||||
$where = implode(' AND ', $where);
|
||||
|
||||
$sql = str_replace('{TABLES}', $tables, $sqlTemplate);
|
||||
$sql = str_replace('{WHERE}', $where, $sql);
|
||||
|
||||
$sql .= " ORDER BY cal.published DESC";
|
||||
|
||||
if (is_integer($iNumOfRows) AND $iNumOfRows > 0) {
|
||||
$sql .= " LIMIT " . $iOffset . ", " . $iNumOfRows;
|
||||
}
|
||||
|
||||
if ($this->bDebug) {
|
||||
print "<!-- ";
|
||||
print $sql;
|
||||
print " -->";
|
||||
} # @modified 27.10.2005
|
||||
|
||||
return $sql;
|
||||
}
|
||||
|
||||
/**
|
||||
* Search articles by catgories without start articles
|
||||
* @param array $aCategories
|
||||
* @param int $iOffset
|
||||
* @param int $iNumOfRows
|
||||
* @param string $sResultType element of {article_id, object}
|
||||
*
|
||||
* @return array of articles
|
||||
*/
|
||||
function findMatchingContentByCategories($aCategories = array(), $iOffset = 0, $iNumOfRows = 0, $sResultType = '') {
|
||||
|
||||
for ($i = 0; $i < count($aCategories); $i++) {
|
||||
if (!is_int((int) $aCategories[$i]) OR ! $aCategories[$i] > 0) {
|
||||
return array();
|
||||
}
|
||||
}
|
||||
|
||||
$sql = $this->_buildQuery_MatchingContentByCategories($aCategories, $iOffset, $iNumOfRows);
|
||||
|
||||
$this->db->query($sql);
|
||||
|
||||
$aResult = array();
|
||||
|
||||
while ($oRow = $this->db->getResultObject()) {
|
||||
if ($sResultType == 'article_language_id') {
|
||||
$aResult[] = $oRow->idartlang;
|
||||
} else {
|
||||
$aResult[] = $oRow;
|
||||
}
|
||||
}
|
||||
return $aResult;
|
||||
}
|
||||
|
||||
/**
|
||||
* build SQL query to find articles by catgories
|
||||
*
|
||||
*/
|
||||
function _buildQuery_MatchingContentByCategories($aCategories, $iOffset, $iNumOfRows) {
|
||||
|
||||
if (count($aCategories) > 0) {
|
||||
$sWHERE_Category_IN = " c.idcat IN (" . implode(',', $aCategories) . ") AND ";
|
||||
} else {
|
||||
$sWHERE_Category_IN = '';
|
||||
}
|
||||
if (is_integer($iNumOfRows) AND $iNumOfRows > 0) {
|
||||
$sLimit = " LIMIT " . Contenido_Security::toInteger($iOffset) . ", " . Contenido_Security::toInteger($iNumOfRows);
|
||||
} else {
|
||||
$sLimit = '';
|
||||
}
|
||||
|
||||
$sql = '
|
||||
SELECT
|
||||
a.idart, a.online, a.idartlang, c.idcat
|
||||
FROM
|
||||
' . $this->table['art_lang'] . ' AS a,
|
||||
' . $this->table['art'] . ' AS b,
|
||||
' . $this->table['cat_art'] . ' AS c,
|
||||
' . $this->table['cat_lang'] . ' AS d
|
||||
WHERE
|
||||
' . $sWHERE_Category_IN . '
|
||||
b.idclient = ' . Contenido_Security::toInteger($this->client) . ' AND
|
||||
a.idlang = ' . Contenido_Security::toInteger($this->lang) . ' AND
|
||||
a.idartlang != d.startidartlang AND
|
||||
a.online = 1 AND
|
||||
c.idcat = d.idcat AND
|
||||
b.idart = c.idart AND
|
||||
a.idart = b.idart
|
||||
' . $sLimit . ' ';
|
||||
|
||||
if ($this->bDebug) {
|
||||
print "<!-- ";
|
||||
print $sql;
|
||||
print " -->";
|
||||
}
|
||||
|
||||
return $sql;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
117
classes/class.content_allocation_article.php
Normale Datei
117
classes/class.content_allocation_article.php
Normale Datei
|
|
@ -0,0 +1,117 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Project:
|
||||
* Contenido Content Management System
|
||||
*
|
||||
* Description:
|
||||
* Content Allocation article
|
||||
*
|
||||
* Requirements:
|
||||
* @con_php_req 5.0
|
||||
*
|
||||
*
|
||||
* @package Contenido Backend plugins
|
||||
* @version 0.2.1
|
||||
* @author Marco Jahn
|
||||
* @copyright four for business AG <www.4fb.de>
|
||||
* @license http://www.contenido.org/license/LIZENZ.txt
|
||||
* @link http://www.4fb.de
|
||||
* @link http://www.contenido.org
|
||||
* @since file available since contenido release <= 4.6
|
||||
*
|
||||
* {@internal
|
||||
* created unknown
|
||||
* modified 2008-07-02, Frederic Schneider, add security fix
|
||||
*
|
||||
* $Id: class.content_allocation_article.php 128 2019-07-03 11:58:28Z oldperl $:
|
||||
* }}
|
||||
*
|
||||
*/
|
||||
if (!defined('CON_FRAMEWORK')) {
|
||||
die('Illegal call');
|
||||
}
|
||||
|
||||
class pApiContentAllocationArticle extends pApiTree {
|
||||
|
||||
var $tpl = null;
|
||||
var $template = '';
|
||||
var $load = array();
|
||||
|
||||
public function __construct($uuid) {
|
||||
global $cfg;
|
||||
|
||||
parent::pApiTree($uuid);
|
||||
$this->tpl = new Template;
|
||||
$this->template = $cfg['pica']['treetemplate_article'];
|
||||
}
|
||||
|
||||
function _buildRenderTree($tree) {
|
||||
global $action, $frame, $area, $sess, $idart;
|
||||
|
||||
$result = array();
|
||||
foreach ($tree as $item_tmp) {
|
||||
$item = array();
|
||||
|
||||
$expandCollapseImg = 'images/spacer.gif';
|
||||
$expandCollapse = '<img src="' . $expandCollapseImg . '" border="0" style="vertical-align: middle;" width="11" height="11">';
|
||||
|
||||
$item['ITEMNAME'] = $expandCollapse . ' ' . $item_tmp['name'];
|
||||
|
||||
$item['ITEMINDENT'] = $item_tmp['level'] * 15 + 3;
|
||||
|
||||
// set checked!
|
||||
$checked = '';
|
||||
if (in_array($item_tmp['idpica_alloc'], $this->load)) {
|
||||
$checked = ' checked="checked"';
|
||||
}
|
||||
$item['CHECKBOX'] = '<input type="checkbox" name="allocation[]" value="' . $item_tmp['idpica_alloc'] . '" ' . $checked . ' />';
|
||||
|
||||
array_push($result, $item);
|
||||
|
||||
if ($item_tmp['children']) {
|
||||
$children = $this->_buildRenderTree($item_tmp['children']);
|
||||
$result = array_merge($result, $children);
|
||||
}
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
function setChecked($load) {
|
||||
$this->load = $load;
|
||||
}
|
||||
|
||||
function renderTree($return = true) {
|
||||
$this->tpl->reset();
|
||||
|
||||
$tree = $this->fetchTree();
|
||||
if ($tree === false) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$tree = $this->_buildRenderTree($tree);
|
||||
|
||||
$even = true;
|
||||
foreach ($tree as $item) {
|
||||
$even = !$even;
|
||||
$bgcolor = ($even) ? '#FFFFFF' : '#F1F1F1';
|
||||
$this->tpl->set('d', 'BACKGROUND_COLOR', $bgcolor);
|
||||
foreach ($item as $key => $value) {
|
||||
$this->tpl->set('d', $key, $value);
|
||||
}
|
||||
$this->tpl->next();
|
||||
}
|
||||
|
||||
$this->tpl->set('s', "CATEGORY", i18n("Category", "content_allocation"));
|
||||
|
||||
if ($return === true) {
|
||||
return $this->tpl->generate($this->template, true);
|
||||
} else {
|
||||
$this->tpl->generate($this->template);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
114
classes/class.content_allocation_complexlist.php
Normale Datei
114
classes/class.content_allocation_complexlist.php
Normale Datei
|
|
@ -0,0 +1,114 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Project:
|
||||
* Contenido Content Management System
|
||||
*
|
||||
* Description:
|
||||
* Content Allocation
|
||||
*
|
||||
* Requirements:
|
||||
* @con_php_req 5.0
|
||||
*
|
||||
*
|
||||
* @package Contenido Backend plugins
|
||||
* @version 0.2.1
|
||||
* @author Marco Jahn
|
||||
* @copyright four for business AG <www.4fb.de>
|
||||
* @license http://www.contenido.org/license/LIZENZ.txt
|
||||
* @link http://www.4fb.de
|
||||
* @link http://www.contenido.org
|
||||
* @since file available since contenido release <= 4.6
|
||||
*
|
||||
* {@internal
|
||||
* created unknown
|
||||
* modified 2008-07-02, Frederic Schneider, add security fix
|
||||
*
|
||||
* $Id: class.content_allocation_complexlist.php 128 2019-07-03 11:58:28Z oldperl $:
|
||||
* }}
|
||||
*
|
||||
*/
|
||||
if (!defined('CON_FRAMEWORK')) {
|
||||
die('Illegal call');
|
||||
}
|
||||
|
||||
class pApiContentAllocationComplexList extends pApiTree {
|
||||
|
||||
var $idSetter = true;
|
||||
var $load = array();
|
||||
|
||||
public function __construct($uuid) {
|
||||
global $cfg;
|
||||
parent::__construct($uuid);
|
||||
}
|
||||
|
||||
public function _buildRenderTree($tree) {
|
||||
global $action, $frame, $area, $sess, $idart;
|
||||
|
||||
$oldIdSetter = $this->idSetter;
|
||||
$this->idSetter = false;
|
||||
|
||||
$result = '';
|
||||
|
||||
$even = true;
|
||||
|
||||
$levelElms = sizeof($tree);
|
||||
$cnt = 1;
|
||||
foreach ($tree as $item_tmp) {
|
||||
$item = '';
|
||||
$checked = '';
|
||||
if (in_array($item_tmp['idpica_alloc'], $this->load)) {
|
||||
$checked = ' checked="checked"';
|
||||
}
|
||||
|
||||
$li_closeElm = '';
|
||||
if ($cnt == $levelElms) {
|
||||
$li_closeElm = 'style="border-bottom: 0;"';
|
||||
}
|
||||
$cnt++;
|
||||
|
||||
$even = !$even;
|
||||
$bgcolor = ($even) ? 'bright' : 'dark';
|
||||
|
||||
// for wrapping purposes
|
||||
$item_tmp['name'] = str_replace('-', '- ', $item_tmp['name']);
|
||||
|
||||
$checkbox = '<input type="checkbox" name="allocation[]" onClick="addToList(this);" ' . $checked . '" id="e' . $item_tmp['idpica_alloc'] . '" value="' . $item_tmp['idpica_alloc'] . '" />';
|
||||
$item = "\n<li style=\"border-bottom: 1px solid #B3B3B3\" baseClass=\"" . $bgcolor . "\" " . $li_closeElm . ">" . $checkbox . " " . $item_tmp['name'];
|
||||
|
||||
$result .= $item;
|
||||
|
||||
if ($item_tmp['children']) {
|
||||
$children = $this->_buildRenderTree($item_tmp['children']);
|
||||
$result .= "\n<ul>" . $children . "</li>";
|
||||
} else {
|
||||
$result .= "\n</li>";
|
||||
}
|
||||
}
|
||||
|
||||
if ($oldIdSetter === true) {
|
||||
return "\n<ul id=\"finder\">" . $result . "\n</ul>";
|
||||
} else {
|
||||
return $result . "\n</ul>";
|
||||
}
|
||||
}
|
||||
|
||||
public function setChecked($load) {
|
||||
$this->load = $load;
|
||||
}
|
||||
|
||||
public function renderTree($return = true) {
|
||||
$tree = $this->fetchTree();
|
||||
if ($tree === false) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$tree = $this->_buildRenderTree($tree);
|
||||
if ($return === true) {
|
||||
return $tree;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
87
classes/class.content_allocation_selectbox.php
Normale Datei
87
classes/class.content_allocation_selectbox.php
Normale Datei
|
|
@ -0,0 +1,87 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Project:
|
||||
* Contenido Content Management System
|
||||
*
|
||||
* @package Contenido Backend plugins
|
||||
* @version 0.2.1
|
||||
* @author Marco Jahn
|
||||
* @copyright four for business AG <www.4fb.de>
|
||||
* @license http://www.contenido.org/license/LIZENZ.txt
|
||||
* @link http://www.4fb.de
|
||||
* @link http://www.contenido.org
|
||||
* @since file available since contenido release <= 4.6
|
||||
*
|
||||
* $Id: class.content_allocation_selectbox.php 128 2019-07-03 11:58:28Z oldperl $:
|
||||
*/
|
||||
if (!defined('CON_FRAMEWORK')) {
|
||||
die('Illegal call');
|
||||
}
|
||||
|
||||
class pApiContentAllocationSelectBox extends pApiTree {
|
||||
|
||||
var $idSetter = true;
|
||||
var $load = array();
|
||||
|
||||
public function __construct($uuid) {
|
||||
global $cfg;
|
||||
|
||||
parent::__construct($uuid);
|
||||
}
|
||||
|
||||
public function _buildRenderTree($tree) {
|
||||
global $action, $frame, $area, $sess, $idart;
|
||||
|
||||
$oldIdSetter = $this->idSetter;
|
||||
$this->idSetter = false;
|
||||
|
||||
$result = '';
|
||||
|
||||
$levelElms = sizeof($tree);
|
||||
$cnt = 1;
|
||||
foreach ($tree as $item_tmp) {
|
||||
$item = '';
|
||||
|
||||
$spacer = '|-';
|
||||
$spacer = str_pad($spacer, (($item_tmp['level'] + 1) * 2), "--", STR_PAD_RIGHT);
|
||||
|
||||
$result .= '<option value="' . $item_tmp['idpica_alloc'] . '_' . $item_tmp['level'] . '">' . $spacer . $item_tmp['name'] . '</option>';
|
||||
|
||||
if ($item_tmp['children']) {
|
||||
$children = $this->_buildRenderTree($item_tmp['children']);
|
||||
$result .= $children;
|
||||
}
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
public function setChecked($load) {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @modified 27.10.2005 $bUseTreeStatus = false (content allocation tree in selectbox is always expanded)
|
||||
*/
|
||||
public function renderTree($return = true, $parentId = false, $bUseTreeStatus = false) {
|
||||
|
||||
$tree = $this->fetchTree($parentId, 0, $bUseTreeStatus);
|
||||
|
||||
if ($tree === false) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$tree = $this->_buildRenderTree($tree);
|
||||
|
||||
if ($return === true) {
|
||||
return $tree;
|
||||
} else {
|
||||
echo $tree;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
558
classes/class.content_allocation_tree.php
Normale Datei
558
classes/class.content_allocation_tree.php
Normale Datei
|
|
@ -0,0 +1,558 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Project:
|
||||
* Contenido Content Management System
|
||||
*
|
||||
* Description:
|
||||
* Stores and handles content allocation management
|
||||
*
|
||||
* Requirements:
|
||||
* @con_php_req 5.0
|
||||
*
|
||||
*
|
||||
* @package Contenido Backend plugins
|
||||
* @version 0.10.1
|
||||
* @author Marco Jahn
|
||||
* @copyright four for business AG <www.4fb.de>
|
||||
* @license http://www.contenido.org/license/LIZENZ.txt
|
||||
* @link http://www.4fb.de
|
||||
* @link http://www.contenido.org
|
||||
* @since file available since contenido release <= 4.6
|
||||
*
|
||||
* {@internal
|
||||
* created unknown
|
||||
* modified 2008-07-02, Frederic Schneider, add security fix
|
||||
*
|
||||
* $Id: class.content_allocation_tree.php 128 2019-07-03 11:58:28Z oldperl $:
|
||||
* }}
|
||||
*
|
||||
*/
|
||||
if (!defined('CON_FRAMEWORK')) {
|
||||
die('Illegal call');
|
||||
}
|
||||
|
||||
/**
|
||||
* Todo
|
||||
* addslashes to all string db inserts
|
||||
* check if default language exists if new entry is added (otherwise)
|
||||
*/
|
||||
class pApiTree {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
var $db = null;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
var $table = null;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
var $lang = 1;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
var $client = 1;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
var $defaultLang = 1;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
var $logger = null;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
var $user = null;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
var $treeStatus = array();
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
var $uuid = null;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
var $_arrInFilters = array('urlencode', 'clHtmlSpecialChars', 'addslashes');
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
var $_arrOutFilters = array('stripslashes', 'htmldecode', 'urldecode');
|
||||
|
||||
public function __construct($uuid) {
|
||||
global $db, $cfg, $lang, $client, $auth;
|
||||
|
||||
$this->db = new DB_ConLite;
|
||||
$this->table = $cfg['tab'];
|
||||
$this->lang = $lang;
|
||||
$this->client = $client;
|
||||
$this->bDebug = false;
|
||||
|
||||
$this->uuid = $uuid;
|
||||
|
||||
$this->user = new cApiUser($auth->auth["uid"]);
|
||||
$this->loadTreeStatus();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param mixed $parentId
|
||||
* @param int $level
|
||||
* @param boolean $bUseTreeStatus (if true use expand/collapsed status of the tree, otherwise not)
|
||||
* @modified 27.10.2005 Willi Man
|
||||
*/
|
||||
function fetchTree($parentId = false, $level = 0, $bUseTreeStatus = true) {
|
||||
|
||||
// fetch current lang category
|
||||
$sql = "SELECT
|
||||
tree.idpica_alloc, tree.parentid, tree.sortorder
|
||||
FROM
|
||||
" . $this->table['pica_alloc'] . " as tree";
|
||||
|
||||
if ($parentId === false) { // fetch from root node
|
||||
$sql .= " WHERE tree.parentid = '0'";
|
||||
} else { // fetch by given id
|
||||
$sql .= " WHERE tree.parentid = " . Contenido_Security::toInteger($parentId);
|
||||
}
|
||||
|
||||
$sql .= " ORDER BY sortorder ASC";
|
||||
|
||||
$this->db->query($sql);
|
||||
|
||||
$result_tmp = array(); // tmp result array
|
||||
while ($this->db->next_record()) { // walk resultset
|
||||
$item = $this->_fetchItemNameLang($this->db->f('idpica_alloc'));
|
||||
|
||||
$itemStatus = 'expanded';
|
||||
|
||||
if ($bUseTreeStatus) { # modified 27.10.2005
|
||||
if (is_array($this->treeStatus) && array_key_exists($this->db->f('idpica_alloc'), $this->treeStatus)) {
|
||||
$itemStatus = 'collapsed';
|
||||
}
|
||||
}
|
||||
|
||||
$rs = array(
|
||||
'idpica_alloc' => $this->db->f('idpica_alloc'),
|
||||
'parentid' => ($this->db->f('parentid') == NULL) ? false : $this->db->f('parentid'),
|
||||
'sortorder' => $this->db->f('sortorder'),
|
||||
'name' => $this->_outFilter($item['name']),
|
||||
'idlang' => $item['idlang'],
|
||||
'level' => $level,
|
||||
'status' => $itemStatus,
|
||||
'online' => $item['online']
|
||||
);
|
||||
|
||||
array_push($result_tmp, $rs); // append recordset
|
||||
}
|
||||
|
||||
if (count($result_tmp) > 0) {
|
||||
$result = array(); // result array
|
||||
foreach ($result_tmp as $rs) { // run results
|
||||
$children = $this->fetchTree($rs['idpica_alloc'], $level + 1, $bUseTreeStatus);
|
||||
if ($children !== false && $rs['status'] == 'expanded') {
|
||||
$rs['children'] = $children;
|
||||
}
|
||||
array_push($result, $rs);
|
||||
}
|
||||
return $result;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch content allocation tree
|
||||
* Consider offline/online status
|
||||
*
|
||||
* @created 21.11.2005 Willi Man
|
||||
*
|
||||
* @param mixed $parentId
|
||||
* @param int $level
|
||||
* @return array with content allocation id's
|
||||
*/
|
||||
function fetchTreeIds($parentId = false, $level = 0, $showOffline = false) {
|
||||
|
||||
// fetch current lang category
|
||||
$sql = "SELECT
|
||||
tree.idpica_alloc, tree.parentid, tree.sortorder
|
||||
FROM
|
||||
" . $this->table['pica_alloc'] . " as tree";
|
||||
|
||||
if ($parentId === false) { // fetch from root node
|
||||
$sql .= " WHERE tree.parentid IS NULL";
|
||||
} else { // fetch by given id
|
||||
$sql .= " WHERE tree.parentid = " . Contenido_Security::toInteger($parentId);
|
||||
}
|
||||
|
||||
$sql .= " ORDER BY sortorder ASC";
|
||||
|
||||
if ($this->bDebug) {
|
||||
print "<!-- ";
|
||||
print $sql;
|
||||
print " -->";
|
||||
}
|
||||
|
||||
$this->db->query($sql);
|
||||
|
||||
$result_tmp = array(); // tmp result array
|
||||
while ($this->db->next_record()) { // walk resultset
|
||||
$item = $this->_fetchItemNameLang($this->db->f('idpica_alloc'));
|
||||
|
||||
if ($this->bDebug) {
|
||||
print "<!-- ";
|
||||
print_r($item);
|
||||
print " -->";
|
||||
}
|
||||
|
||||
if ($showOffline OR $item['online'] == 1) {
|
||||
$rs = array(
|
||||
'idpica_alloc' => $this->db->f('idpica_alloc')
|
||||
);
|
||||
|
||||
array_push($result_tmp, $rs); // append recordset
|
||||
}
|
||||
}
|
||||
|
||||
if (count($result_tmp) > 0) {
|
||||
$result = array(); // result array
|
||||
foreach ($result_tmp as $rs) { // run results
|
||||
$children = $this->fetchTreeIds($rs['idpica_alloc'], $level + 1, $bUseTreeStatus);
|
||||
if ($children !== false) {
|
||||
$rs['children'] = $children;
|
||||
}
|
||||
array_push($result, $rs);
|
||||
}
|
||||
return $result;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function setTreeStatus($idpica_alloc) {
|
||||
if (is_array($this->treeStatus) && array_key_exists($idpica_alloc, $this->treeStatus)) { // expand
|
||||
unset($this->treeStatus[$idpica_alloc]);
|
||||
} else { // collapse
|
||||
$this->treeStatus[$idpica_alloc] = true;
|
||||
}
|
||||
$this->user->setProperty("expandstate", $this->_uuid, serialize($this->treeStatus));
|
||||
}
|
||||
|
||||
function loadTreeStatus() {
|
||||
$status = $this->user->getProperty("expandstate", $this->_uuid);
|
||||
if ($status !== false) {
|
||||
$this->treeStatus = unserialize($status);
|
||||
}
|
||||
}
|
||||
|
||||
function fetchParent($idpica_alloc) {
|
||||
$sql = "SELECT idpica_alloc FROM " . $this->table['pica_alloc'] . " WHERE parentId = " . Contenido_Security::toInteger($idpica_alloc);
|
||||
$this->db->query($sql);
|
||||
|
||||
if ($this->db->next_record()) {
|
||||
return $this->fetchItem($this->db->f('idpica_alloc'));
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function fetchParents() {
|
||||
|
||||
}
|
||||
|
||||
function fetchLevel($parentId = false, $showOffline = false) {
|
||||
// fetch current lang category
|
||||
$sql = "SELECT
|
||||
tree.idpica_alloc, tree.parentid, tree.sortorder
|
||||
FROM
|
||||
" . $this->table['pica_alloc'] . " as tree
|
||||
LEFT JOIN " . $this->table['pica_lang'] . " as treelang USING (idpica_alloc)";
|
||||
|
||||
if ($parentId === false) { // fetch from root node
|
||||
$sql .= " WHERE tree.parentid IS NULL";
|
||||
} else { // fetch by given id
|
||||
$sql .= " WHERE tree.parentid = " . Contenido_Security::toInteger($parentId);
|
||||
}
|
||||
|
||||
if ($showOffline === false) {
|
||||
$sql .= " AND treelang.online = 1";
|
||||
}
|
||||
|
||||
$sql .= " ORDER BY sortorder ASC";
|
||||
|
||||
$this->db->query($sql);
|
||||
|
||||
$result_tmp = array(); // tmp result array
|
||||
while ($this->db->next_record()) { // walk resultset
|
||||
$item = $this->_fetchItemNameLang($this->db->f('idpica_alloc'));
|
||||
|
||||
$itemStatus = 'expanded';
|
||||
if (is_array($this->treeStatus) && array_key_exists($this->db->f('idpica_alloc'), $this->treeStatus)) {
|
||||
$itemStatus = 'collapsed';
|
||||
}
|
||||
|
||||
$rs = array(
|
||||
'idpica_alloc' => $this->db->f('idpica_alloc'),
|
||||
'parentid' => ($this->db->f('parentid') == NULL) ? false : $this->db->f('parentid'),
|
||||
'sortorder' => $this->db->f('sortorder'),
|
||||
'name' => $this->_outFilter($item['name']),
|
||||
'idlang' => $item['idlang'],
|
||||
'level' => 0,
|
||||
'status' => $itemStatus,
|
||||
'online' => $item['online']
|
||||
);
|
||||
|
||||
array_push($result_tmp, $rs); // append recordset
|
||||
}
|
||||
|
||||
return $result_tmp;
|
||||
}
|
||||
|
||||
function storeItem($treeItem) {
|
||||
|
||||
if (!$treeItem['idpica_alloc']) { // insert
|
||||
$treeItem['idpica_alloc'] = $this->db->nextid($this->table['pica_alloc']);
|
||||
$treeItem['sortorder'] = $this->_fetchMaxOrder($treeItem['parentid']) + 1;
|
||||
|
||||
if ($treeItem['parentid'] == 'root') {
|
||||
$treeItem['parentid'] = 'NULL';
|
||||
}
|
||||
|
||||
$treeItem['name'] = $this->_inFilter($treeItem['name']);
|
||||
|
||||
$sql = "INSERT INTO " . $this->table['pica_alloc'] . "
|
||||
(idpica_alloc, parentid, sortorder)
|
||||
VALUES
|
||||
(" . Contenido_Security::toInteger($treeItem['idpica_alloc']) . ", " . Contenido_Security::toInteger($treeItem['parentid']) . ", " . Contenido_Security::toInteger($treeItem['sortorder']) . ")";
|
||||
$this->db->query($sql);
|
||||
|
||||
$sql = "INSERT INTO " . $this->table['pica_lang'] . "
|
||||
(idpica_alloc, idlang, name)
|
||||
VALUES
|
||||
(" . Contenido_Security::toInteger($treeItem['idpica_alloc']) . ", " . Contenido_Security::toInteger($this->lang) . ", '" . Contenido_Security::escapeDB($treeItem['name'], $this->db) . "')";
|
||||
$this->db->query($sql);
|
||||
} else { // update
|
||||
$treeItem['name'] = $this->_inFilter($treeItem['name']);
|
||||
|
||||
$sql = "SELECT * FROM " . $this->table['pica_lang'] . " WHERE idpica_alloc = " . Contenido_Security::toInteger($treeItem['idpica_alloc']) . " AND idlang = " . Contenido_Security::toInteger($this->lang);
|
||||
$this->db->query($sql);
|
||||
|
||||
if ($this->db->num_rows() > 0) {
|
||||
#Update existing translation
|
||||
$sql = "UPDATE " . $this->table['pica_lang'] . " SET name = '" . Contenido_Security::escapeDB($treeItem['name'], $this->db) . "' WHERE idpica_alloc = " . Contenido_Security::toInteger($treeItem['idpica_alloc']) . "
|
||||
AND idlang = " . Contenido_Security::toInteger($this->lang);
|
||||
} else {
|
||||
#Get current online status for item
|
||||
$sql = "SELECT * FROM " . $this->table['pica_lang'] . " WHERE idpica_alloc = " . $treeItem['idpica_alloc'] . " ORDER BY idlang";
|
||||
$this->db->query($sql);
|
||||
|
||||
if ($this->db->next_record()) {
|
||||
$online_status = $this->db->f('online');
|
||||
} else {
|
||||
$online_status = 0;
|
||||
}
|
||||
|
||||
#Insert new translation
|
||||
$sql = "INSERT INTO " . $this->table['pica_lang'] . "(idpica_alloc, idlang, name, online) VALUES ( " . Contenido_Security::toInteger($treeItem['idpica_alloc']) . ", " . Contenido_Security::toInteger($this->lang) . ",
|
||||
'" . Contenido_Security::escapeDB($treeItem['name'], $this->db) . "', " . Contenido_Security::toInteger($online_status) . ")";
|
||||
}
|
||||
|
||||
$this->db->query($sql);
|
||||
}
|
||||
|
||||
return $treeItem;
|
||||
}
|
||||
|
||||
function setOnline($idpica_alloc) {
|
||||
$this->_switchOnOffline($idpica_alloc, 1);
|
||||
}
|
||||
|
||||
function setOffline($idpica_alloc) {
|
||||
$this->_switchOnOffline($idpica_alloc, 0);
|
||||
}
|
||||
|
||||
function _switchOnOffline($idpica_alloc, $status) {
|
||||
$sql = "UPDATE " . $this->table['pica_lang'] . " SET online = " . Contenido_Security::toInteger($status) . " WHERE idpica_alloc = " . Contenido_Security::toInteger($idpica_alloc) . "
|
||||
AND idlang = " . Contenido_Security::toInteger($this->lang);
|
||||
$this->db->query($sql);
|
||||
}
|
||||
|
||||
function itemMoveUp($idpica_alloc) {
|
||||
$treeItem = $this->fetchItem($idpica_alloc);
|
||||
$treeItem_old = $treeItem;
|
||||
$treeItem['sortorder'] --;
|
||||
|
||||
if ($treeItem['sortorder'] < $treeItem_old['sortorder']) {
|
||||
if ($treeItem['sortorder'] >= 1) {
|
||||
$this->_decreaseOrder($treeItem['parentid'], $treeItem_old['sortorder']);
|
||||
$this->_increaseOrder($treeItem['parentid'], $treeItem['sortorder']);
|
||||
} else {
|
||||
$treeItem['sortorder'] = $treeItem_old['sortorder'];
|
||||
}
|
||||
}
|
||||
|
||||
$sql = "UPDATE " . $this->table['pica_alloc'] . " SET sortorder = " . $treeItem['sortorder'] . " WHERE idpica_alloc = " . Contenido_Security::toInteger($idpica_alloc);
|
||||
$this->db->query($sql);
|
||||
}
|
||||
|
||||
function itemMoveDown() {
|
||||
|
||||
}
|
||||
|
||||
function deleteItem($idpica_alloc) {
|
||||
$sql = "DELETE FROM " . $this->table['pica_alloc'] . " WHERE idpica_alloc = " . Contenido_Security::toInteger($idpica_alloc);
|
||||
$this->db->query($sql);
|
||||
|
||||
$sql = "DELETE FROM " . $this->table['pica_lang'] . " WHERE idpica_alloc = " . Contenido_Security::toInteger($idpica_alloc);
|
||||
$this->db->query($sql);
|
||||
|
||||
$sql = "DELETE FROM " . $this->table['pica_alloc_con'] . " WHERE idpica_alloc = " . Contenido_Security::toInteger($idpica_alloc);
|
||||
$this->db->query($sql);
|
||||
}
|
||||
|
||||
function fetchItem($idpica_alloc) {
|
||||
$sql = "SELECT parentid, sortorder FROM " . $this->table['pica_alloc'] . " WHERE idpica_alloc = " . $idpica_alloc;
|
||||
$this->db->query($sql);
|
||||
|
||||
$item = $this->_fetchItemNameLang($idpica_alloc);
|
||||
|
||||
if ($this->db->next_record()) {
|
||||
$row = array(
|
||||
'idpica_alloc' => $idpica_alloc,
|
||||
'parentid' => ($this->db->f('parentid') == NULL) ? false : $this->db->f('parentid'),
|
||||
'sortorder' => $this->db->f('sortorder'),
|
||||
'name' => $item['name'],
|
||||
'idlang' => $item['idlang'],
|
||||
'online' => $item['online']
|
||||
);
|
||||
return $row;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function _fetchItemNameLang($idpica_alloc) {
|
||||
$oDB = new DB_ConLite; // temp instance
|
||||
|
||||
$sSQL = "SELECT name, idlang, online FROM " . $this->table['pica_lang'] . " WHERE idpica_alloc = " . Contenido_Security::toInteger($idpica_alloc) . " AND idlang = " . Contenido_Security::toInteger($this->lang);
|
||||
$oDB->query($sSQL);
|
||||
|
||||
$aResult = array();
|
||||
if ($oDB->next_record()) { // item found for this language
|
||||
$aResult['name'] = $this->_outFilter($oDB->f('name'));
|
||||
$aResult['idlang'] = $oDB->f('idlang');
|
||||
$aResult['online'] = $oDB->f('online');
|
||||
} else { // no item in this language found
|
||||
// fetch alternative language name
|
||||
// HerrB, 2008-04-21: Get all translations, try to use defaultLang translation, use
|
||||
// first available, otherwise. Only using defaultLang results in "ghost" elements, if
|
||||
// created in a non-default language. See CON-110 for details.
|
||||
$sSQL = "SELECT name, idlang, online FROM " . $this->table['pica_lang'] . " WHERE idpica_alloc = " . Contenido_Security::toInteger($idpica_alloc) . " ORDER BY idlang";
|
||||
$oDB->query($sSQL);
|
||||
|
||||
$aNames = array();
|
||||
while ($oDB->next_record()) {
|
||||
$sKey = "k" . $oDB->f('idlang');
|
||||
|
||||
$aNames[$sKey] = array();
|
||||
$aNames[$sKey]['name'] = $this->_outFilter($oDB->f('name'));
|
||||
$aNames[$sKey]['idlang'] = $oDB->f('idlang');
|
||||
$aNames[$sKey]['online'] = $oDB->f('online');
|
||||
}
|
||||
|
||||
if ($aNames["k" . $this->defaultLang]) {
|
||||
// defaultLang translation available
|
||||
$aResult = $aNames["k" . $this->defaultLang];
|
||||
} else {
|
||||
// no defaultLang translation available, use first in line (reset returns first element)
|
||||
$aResult = reset($aNames);
|
||||
}
|
||||
}
|
||||
unset($oDB);
|
||||
unset($aNames);
|
||||
|
||||
return $aResult;
|
||||
}
|
||||
|
||||
function _fetchMaxOrder($parentId = false) {
|
||||
|
||||
if ($parentId == 'root') {
|
||||
$parentId = false;
|
||||
}
|
||||
|
||||
$sql = "SELECT MAX(sortorder) as max FROM " . $this->table['pica_alloc'];
|
||||
if ($parentId === false) {
|
||||
$sql .= " WHERE parentid = 0";
|
||||
} else {
|
||||
$sql .= " WHERE parentid = " . Contenido_Security::toInteger($parentId);
|
||||
}
|
||||
$this->db->query($sql);
|
||||
if ($this->db->next_record()) {
|
||||
return $this->db->f('max');
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
function _decreaseOrder($parentId = false, $fromOrder) {
|
||||
$sql = "UPDATE " . $this->table['pica_alloc'] . " SET sortorder = sortorder - 1 WHERE sortorder >= " . Contenido_Security::toInteger($fromOrder);
|
||||
if ($parentId === false) {
|
||||
$sql .= " AND parentid IS NULL";
|
||||
} else {
|
||||
$sql .= " AND parentid = " . Contenido_Security::toInteger($parentId);
|
||||
}
|
||||
$this->db->query($sql);
|
||||
}
|
||||
|
||||
function _increaseOrder($parentId = false, $fromOrder) {
|
||||
$sql = "UPDATE " . $this->table['pica_alloc'] . " SET sortorder = sortorder + 1 WHERE sortorder >= " . Contenido_Security::toInteger($fromOrder);
|
||||
if ($parentId === false) {
|
||||
$sql .= " AND parentid IS NULL";
|
||||
} else {
|
||||
$sql .= " AND parentid = " . Contenido_Security::toInteger($parentId);
|
||||
}
|
||||
$this->db->query($sql);
|
||||
}
|
||||
|
||||
function setFilters($arrInFilters = array(), $arrOutFilters = array()) {
|
||||
$this->_arrInFilters = $arrInFilters;
|
||||
$this->_arrOutFilters = $arrOutFilters;
|
||||
}
|
||||
|
||||
function _inFilter($data) {
|
||||
foreach ($this->_arrInFilters as $_function) {
|
||||
if (function_exists($_function)) {
|
||||
$data = $_function($data);
|
||||
}
|
||||
}
|
||||
|
||||
return $data;
|
||||
}
|
||||
|
||||
function _outFilter($data) {
|
||||
foreach ($this->_arrOutFilters as $_function) {
|
||||
if (function_exists($_function)) {
|
||||
$data = $_function($data);
|
||||
}
|
||||
}
|
||||
|
||||
return $data;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
234
classes/class.content_allocation_treeview.php
Normale Datei
234
classes/class.content_allocation_treeview.php
Normale Datei
|
|
@ -0,0 +1,234 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Project:
|
||||
* Contenido Content Management System
|
||||
*
|
||||
* Description:
|
||||
* Stores and handles content allocation management
|
||||
*
|
||||
* Requirements:
|
||||
* @con_php_req 5.0
|
||||
*
|
||||
*
|
||||
* @package Contenido Backend plugins
|
||||
* @version 0.2.3
|
||||
* @author Marco Jahn
|
||||
* @copyright four for business AG <www.4fb.de>
|
||||
* @license http://www.contenido.org/license/LIZENZ.txt
|
||||
* @link http://www.4fb.de
|
||||
* @link http://www.contenido.org
|
||||
* @since file available since contenido release <= 4.6
|
||||
*
|
||||
* {@internal
|
||||
* created unknown
|
||||
* modified 2008-06-26, Timo Trautmann, changed post var from treeItem to treeItemPost (security issue)
|
||||
* modified 2008-07-02, Frederic Schneider, add security fix
|
||||
*
|
||||
* $Id: class.content_allocation_treeview.php 128 2019-07-03 11:58:28Z oldperl $:
|
||||
* }}
|
||||
*
|
||||
*/
|
||||
if (!defined('CON_FRAMEWORK')) {
|
||||
die('Illegal call');
|
||||
}
|
||||
|
||||
/**
|
||||
* Todo
|
||||
* - generalize this and papitree !!!!
|
||||
* - Comments!
|
||||
*/
|
||||
class pApiContentAllocationTreeView extends pApiTree {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
var $tpl = null;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
var $template = '';
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public function __construct($uuid) {
|
||||
global $cfg;
|
||||
|
||||
parent::__construct($uuid);
|
||||
$this->tpl = new Template;
|
||||
$this->template = $cfg['pica']['treetemplate'];
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
function _buildRenderTree($tree) {
|
||||
global $action, $frame, $area, $sess;
|
||||
$result = array();
|
||||
foreach ($tree as $item_tmp) {
|
||||
$item = array();
|
||||
|
||||
// update item
|
||||
if ($_GET['step'] == 'rename' && $item_tmp['idpica_alloc'] == $_GET['idpica_alloc']) {
|
||||
$item = array();
|
||||
|
||||
$item['ITEMNAME'] = '
|
||||
<table cellspacing="0" cellpaddin="0" border="0">
|
||||
<form name="rename" action="main.php" method="POST" onsubmit="return fieldCheck();">
|
||||
<input type="hidden" name="action" value="' . $action . '" />
|
||||
<input type="hidden" name="frame" value="' . $frame . '" />
|
||||
<input type="hidden" name="contenido" value="' . $sess->id . '" />
|
||||
<input type="hidden" name="area" value="' . $area . '" />
|
||||
<input type="hidden" name="step" value="storeRename" />
|
||||
<input type="hidden" name="treeItemPost[idpica_alloc]" value="' . $item_tmp['idpica_alloc'] . '" />
|
||||
<tr>
|
||||
<td class="text_medium"><input id="itemname" class="text_medium" type="text" name="treeItemPost[name]" value="' . $item_tmp['name'] . '"></td>
|
||||
<td>
|
||||
<a href="main.php?action=' . $action . '&frame=' . $frame . '&area=' . $area . '&contenido=' . $sess->id . '"><img src="images/but_cancel.gif" border="0" /></a>
|
||||
<input type="image" src="images/but_ok.gif" />
|
||||
</td></tr>
|
||||
</form>
|
||||
</table>
|
||||
<script language="JavaScript">
|
||||
controller = document.getElementById("itemname");
|
||||
controller.focus();
|
||||
function fieldCheck() {
|
||||
if (controller.value == "") {
|
||||
alert("' . i18n("Please enter a category name", "content_allocation") . '");
|
||||
controller.focus();
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
</script>';
|
||||
} else {
|
||||
if ($item_tmp['children'] || $item_tmp['status'] == 'collapsed') {
|
||||
$expandCollapseImg = 'images/close_all.gif';
|
||||
if ($item_tmp['status'] == 'collapsed') {
|
||||
$expandCollapseImg = 'images/open_all.gif';
|
||||
}
|
||||
|
||||
$expandCollapse = '<a href="main.php?contenido=' . $sess->id . '&idart=' . $idart . '&action=' . $action . '&frame=' . $frame . '&area=' . $area . '&step=collapse&idpica_alloc=' . $item_tmp['idpica_alloc'] . '"><img src="' . $expandCollapseImg . '" border="0" style="vertical-align: middle; padding:4px;" width="7" height="7"></a>';
|
||||
} else {
|
||||
$expandCollapseImg = 'images/spacer.gif';
|
||||
$expandCollapse = '<img src="' . $expandCollapseImg . '" border="0" style="vertical-align: middle;" width="11" height="11">';
|
||||
}
|
||||
|
||||
$item['ITEMNAME'] = $expandCollapse . ' ' . $item_tmp['name'];
|
||||
}
|
||||
|
||||
$item['ITEMINDENT'] = $item_tmp['level'] * 15 + 3;
|
||||
$item['ACTION_CREATE'] = '<a href="main.php?contenido=' . $sess->id . '&action=' . $action . '&frame=' . $frame . '&area=' . $area . '&step=add&parentid=' . $item_tmp['idpica_alloc'] . '"><img src="images/folder_new.gif" border="0" title="' . i18n("New category", "content_allocation") . '" alt="' . i18n("New category", "content_allocation") . '" /></a>';
|
||||
|
||||
$item['ACTION_RENAME'] = '<a href="main.php?contenido=' . $sess->id . '&action=' . $action . '&frame=' . $frame . '&area=' . $area . '&step=rename&idpica_alloc=' . $item_tmp['idpica_alloc'] . '"><img src="images/but_todo.gif" width="16" height="16" border="0" alt="' . i18n("Rename category", "content_allocation") . '" title="' . i18n("Rename category", "content_allocation") . '" /></a>';
|
||||
$item['ACTION_MOVE_UP'] = (count($result) >= 1) ? '<a href="main.php?contenido=' . $sess->id . '&action=' . $action . '&frame=' . $frame . '&area=' . $area . '&step=moveup&idpica_alloc=' . $item_tmp['idpica_alloc'] . '"><img src="images/folder_moveup.gif" border="0" alt="' . i18n("Move category up", "content_allocation") . '" title="' . i18n("Move category up", "content_allocation") . '" /></a>' : '<img src="images/spacer.gif" width="16" height="16" /></a>';
|
||||
$item['ACTION_MOVE_DOWN'] = (count($result) >= 1) ? '<img src="images/folder_movedown.gif" border="0" alt="' . i18n("Move category down", "content_allocation") . '" title="' . i18n("Move category down", "content_allocation") . '" />' : '<img src="images/spacer.gif" width="16" height="16" />';
|
||||
$item['ACTION_MOVE_DOWN'] = '';
|
||||
|
||||
if ($item_tmp['online'] == 1) { // set offline
|
||||
$item['ACTION_ONOFFLINE'] = '<a href="main.php?contenido=' . $sess->id . '&action=' . $action . '&frame=' . $frame . '&area=' . $area . '&step=offline&idpica_alloc=' . $item_tmp['idpica_alloc'] . '""><img src="images/online.gif" alt="' . i18n("Set category offline", "content_allocation") . '" title="' . i18n("Set category offline", "content_allocation") . '"></a>';
|
||||
} else {
|
||||
$item['ACTION_ONOFFLINE'] = '<a href="main.php?contenido=' . $sess->id . '&action=' . $action . '&frame=' . $frame . '&area=' . $area . '&step=online&idpica_alloc=' . $item_tmp['idpica_alloc'] . '""><img src="images/offline.gif" alt="' . i18n("Set category online", "content_allocation") . '" title="' . i18n("Set category online", "content_allocation") . '"></a>';
|
||||
}
|
||||
|
||||
if ($item_tmp['children']) {
|
||||
$item['ACTION_DELETE'] = '<img src="images/delete_inact.gif" border="0" alt="' . i18n("One or more subcategories exist, unable to delete", "content_allocation") . '" title="' . i18n("One or more subcategories exist, unable to delete", "content_allocation") . '">';
|
||||
} else {
|
||||
$item['ACTION_DELETE'] = '<a href="javascript://" onclick="box.confirm("' . i18n("Delete category", "content_allocation") . '", "' . i18n("Are you sure to delete the following category", "content_allocation") . ':<br><br><b>' . str_replace("'", "\'", $item_tmp['name']) . '</b>","deleteCategory(' . $item_tmp['idpica_alloc'] . ')");"><img src="images/delete.gif" border="0" alt="' . i18n("Delete category", "content_allocation") . '" title="' . i18n("Delete category", "content_allocation") . '"></a>';
|
||||
}
|
||||
|
||||
array_push($result, $item);
|
||||
|
||||
if ($item_tmp['children']) {
|
||||
$children = $this->_buildRenderTree($item_tmp['children']);
|
||||
$result = array_merge($result, $children);
|
||||
}
|
||||
|
||||
// add new item -> show formular
|
||||
if ($_GET['step'] == 'add' && $item_tmp['idpica_alloc'] == $_GET['parentid']) {
|
||||
$item = array();
|
||||
|
||||
$item['ITEMNAME'] = '
|
||||
<table cellspacing="0" cellpaddin="0" border="0">
|
||||
<form name="create" action="main.php" method="POST" onsubmit="return fieldCheck();">
|
||||
<input type="hidden" name="action" value="' . $action . '" />
|
||||
<input type="hidden" name="frame" value="' . $frame . '" />
|
||||
<input type="hidden" name="contenido" value="' . $sess->id . '" />
|
||||
<input type="hidden" name="area" value="' . $area . '" />
|
||||
<input type="hidden" name="step" value="store" />
|
||||
<input type="hidden" name="treeItemPost[parentid]" value="' . $_GET['parentid'] . '" />
|
||||
<tr>
|
||||
<td class="text_medium"><input id="itemname" class="text_medium" type="text" name="treeItemPost[name]" value=""></td>
|
||||
<td>
|
||||
<a href="main.php?action=' . $action . '&frame=' . $frame . '&area=' . $area . '&contenido=' . $sess->id . '"><img src="images/but_cancel.gif" border="0" /></a>
|
||||
<input type="image" src="images/but_ok.gif" />
|
||||
</td></tr>
|
||||
</form>
|
||||
</table>
|
||||
<script language="JavaScript">
|
||||
controller = document.getElementById("itemname");
|
||||
controller.focus();
|
||||
function fieldCheck() {
|
||||
if (controller.value == "") {
|
||||
alert("' . i18n("Please enter a category name", "content_allocation") . '");
|
||||
controller.focus();
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
</script>';
|
||||
$item['ITEMINDENT'] = ($item_tmp['level'] + 1) * 15;
|
||||
$item['ACTION_CREATE'] = '<img src="images/spacer.gif" width="15" height="13" />';
|
||||
$item['ACTION_RENAME'] = '<img src="images/spacer.gif" width="23" height="14" />';
|
||||
$item['ACTION_MOVE_UP'] = '<img src="images/spacer.gif" width="15" height="13" />';
|
||||
$item['ACTION_MOVE_DOWN'] = '<img src="images/spacer.gif" width="15" height="13" />';
|
||||
$item['ACTION_MOVE_DOWN'] = '';
|
||||
$item['ACTION_DELETE'] = '<img src="images/spacer.gif" width="14" height="13" />';
|
||||
$item['ACTION_ONOFFLINE'] = '<img src="images/spacer.gif" width="11" height="12" />';
|
||||
|
||||
array_push($result, $item);
|
||||
}
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
function renderTree($return = true) {
|
||||
$this->tpl->reset();
|
||||
|
||||
$tree = $this->fetchTree(false, 0, true); # modified 27.10.2005
|
||||
|
||||
if ($tree === false) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$tree = $this->_buildRenderTree($tree);
|
||||
|
||||
$even = true;
|
||||
foreach ($tree as $item) {
|
||||
$even = !$even;
|
||||
$bgcolor = ($even) ? '#FFFFFF' : '#F1F1F1';
|
||||
$this->tpl->set('d', 'BACKGROUND_COLOR', $bgcolor);
|
||||
foreach ($item as $key => $value) {
|
||||
$this->tpl->set('d', $key, $value);
|
||||
}
|
||||
$this->tpl->next();
|
||||
}
|
||||
|
||||
$this->tpl->set('s', 'CATEGORY', i18n("Category", "content_allocation"));
|
||||
$this->tpl->set('s', 'ACTIONS', i18n("Actions", "content_allocation"));
|
||||
|
||||
if ($return === true) {
|
||||
return $this->tpl->generate($this->template, true);
|
||||
} else {
|
||||
$this->tpl->generate($this->template);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
Laden …
Tabelle hinzufügen
Einen Link hinzufügen
In neuem Issue referenzieren