2019-11-04 15:12:11 +00:00
|
|
|
<?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();
|
|
|
|
}
|
|
|
|
|
2021-05-06 11:32:45 +00:00
|
|
|
$this->tpl->set('s', "CATEGORY", i18n("Category", "cl-content-allocation"));
|
2019-11-04 15:12:11 +00:00
|
|
|
|
|
|
|
if ($return === true) {
|
|
|
|
return $this->tpl->generate($this->template, true);
|
|
|
|
} else {
|
|
|
|
$this->tpl->generate($this->template);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|