work until 08.03.17

Dieser Commit ist enthalten in:
Oldperl 2017-03-09 13:52:17 +00:00
Ursprung 792f05c0c7
Commit 2a0869c016
7 geänderte Dateien mit 621 neuen und 540 gelöschten Zeilen

Datei anzeigen

@ -0,0 +1,31 @@
<?php
/**
*
* @package Core
* @subpackage cApiClasses
*
* $Id$
*/
// security check
if (!defined('CON_FRAMEWORK')) {
die('Illegal call');
}
class cApiNavMainCollection extends ItemCollection {
public function __construct() {
global $cfg;
parent::__construct(cRegistry::getConfigValue('tab', 'nav_main'), 'idnavm');
$this->_setItemClass("cApiNavMain");
}
}
class cApiNavMain extends Item {
public function __construct($mId = false) {
global $cfg;
parent::__construct(cRegistry::getConfigValue('tab', 'nav_main'), 'idnavm');
if ($mId !== false) {
$this->loadByPrimaryKey($mId);
}
}
}

Datei anzeigen

@ -0,0 +1,31 @@
<?php
/**
*
* @package Core
* @subpackage cApiClasses
*
* $Id$
*/
// security check
if (!defined('CON_FRAMEWORK')) {
die('Illegal call');
}
class cApiNavSubCollection extends ItemCollection {
public function __construct() {
global $cfg;
parent::__construct(cRegistry::getConfigValue('tab', 'nav_sub'), 'idnavs');
$this->_setItemClass("cApiNavSub");
}
}
class cApiNavSub extends Item {
public function __construct($mId = false) {
global $cfg;
parent::__construct(cRegistry::getConfigValue('tab', 'nav_sub'), 'idnavs');
if ($mId !== false) {
$this->loadByPrimaryKey($mId);
}
}
}

Datei anzeigen

@ -1,4 +1,5 @@
<?php
/**
* Project:
* Contenido Content Management System
@ -32,41 +33,39 @@
* }}
*
*/
if(!defined('CON_FRAMEWORK')) {
if (!defined('CON_FRAMEWORK')) {
die('Illegal call');
}
$debug = false;
$debug = true;
$tmp_area = "str";
if ($action == "str_duplicate" &&
($perm->have_perm_area_action("str", "str_duplicate") ||
$perm->have_perm_area_action_item("str", "str_duplicate", $idcat)))
{
$perm->have_perm_area_action_item("str", "str_duplicate", $idcat))) {
strCopyTree($idcat, $parentid);
}
//Everybody is allowed to update aliases, if there is no Permission to update category names, this block updates category alias only
if(isset($_POST['newcategoryalias']) && isset($_POST['action']) && $_POST['action'] == 'str_renamecat') {
if (isset($_POST['newcategoryalias']) && isset($_POST['action']) && $_POST['action'] == 'str_renamecat') {
$iIdCat = (int) $_POST['idcat'];
if(!($perm->have_perm_area_action($tmp_area, "str_renamecat") || $perm->have_perm_area_action_item($tmp_area, "str_renamecat", $iIdCat)) ) {
if (!($perm->have_perm_area_action($tmp_area, "str_renamecat") || $perm->have_perm_area_action_item($tmp_area, "str_renamecat", $iIdCat))) {
if (trim($_POST['newcategoryalias']) != '') {
$sUrlName = capiStrCleanURLCharacters($_POST['newcategoryalias']);
$sql = "UPDATE {$cfg['tab']['cat_lang']} SET urlname = '". Contenido_Security::escapeDB($sUrlName, $db) ."' WHERE idcat = '".Contenido_Security::toInteger($iIdCat)."' AND idlang = '".Contenido_Security::toInteger($lang)."'";
$sql = "UPDATE {$cfg['tab']['cat_lang']} SET urlname = '" . Contenido_Security::escapeDB($sUrlName, $db) . "' WHERE idcat = '" . Contenido_Security::toInteger($iIdCat) . "' AND idlang = '" . Contenido_Security::toInteger($lang) . "'";
$db->query($sql);
} else {
//Use categoryname as default -> get it escape it save it as urlname
$sql = "SELECT name from {$cfg['tab']['cat_lang']} WHERE idcat = '".Contenido_Security::toInteger($iIdCat)."' AND idlang = '".Contenido_Security::toInteger($lang)."'";
$sql = "SELECT name from {$cfg['tab']['cat_lang']} WHERE idcat = '" . Contenido_Security::toInteger($iIdCat) . "' AND idlang = '" . Contenido_Security::toInteger($lang) . "'";
$db->query($sql);
if ($db->next_record()) {
$sUrlName = capiStrCleanURLCharacters($db->f('name'));
$sql = "UPDATE {$cfg['tab']['cat_lang']} SET urlname = '". $sUrlName ."' WHERE idcat = '".Contenido_Security::toInteger($iIdCat)."' AND idlang = '".Contenido_Security::toInteger($lang)."'";
$sql = "UPDATE {$cfg['tab']['cat_lang']} SET urlname = '" . $sUrlName . "' WHERE idcat = '" . Contenido_Security::toInteger($iIdCat) . "' AND idlang = '" . Contenido_Security::toInteger($lang) . "'";
$db->query($sql);
$lang = Contenido_Security::escapeDB($lang, null);
@unlink($cfgClient[$client]["path"]["frontend"]."cache/locationstring-url-cache-$lang.txt");
@unlink($cfgClient[$client]["path"]["frontend"] . "cache/locationstring-url-cache-$lang.txt");
}
}
}
@ -85,24 +84,23 @@ function buildCategorySelectRights() {
$db = new DB_ConLite();
$oHtmlSelect = new cHTMLSelectElement ('idcat', "", "new_idcat");
$oHtmlSelect = new cHTMLSelectElement('idcat', "", "new_idcat");
$oHtmlSelectOption = new cHTMLOptionElement(i18n("Please choose"), '', true);
$oHtmlSelect->addOptionElement(0, $oHtmlSelectOption);
$sql = "SELECT a.idcat AS idcat, b.name AS name, c.level FROM
".$cfg["tab"]["cat"]." AS a, ".$cfg["tab"]["cat_lang"]." AS b,
".$cfg["tab"]["cat_tree"]." AS c WHERE a.idclient = '".Contenido_Security::toInteger($client)."'
AND b.idlang = '".Contenido_Security::toInteger($lang)."' AND b.idcat = a.idcat AND c.idcat = a.idcat
" . $cfg["tab"]["cat"] . " AS a, " . $cfg["tab"]["cat_lang"] . " AS b,
" . $cfg["tab"]["cat_tree"] . " AS c WHERE a.idclient = '" . Contenido_Security::toInteger($client) . "'
AND b.idlang = '" . Contenido_Security::toInteger($lang) . "' AND b.idcat = a.idcat AND c.idcat = a.idcat
ORDER BY c.idtree";
$db->query($sql);
$categories = array ();
$categories = array();
while ($db->next_record())
{
while ($db->next_record()) {
$categories[$db->f("idcat")]["name"] = $db->f("name");
$categories[$db->f("idcat")]["idcat"] = $db->f("idcat");
@ -131,18 +129,16 @@ function buildCategorySelectRights() {
}
$j = 1;
foreach ($categories as $tmpidcat => $props)
{
foreach ($categories as $tmpidcat => $props) {
$spaces = "&nbsp;&nbsp;";
for ($i = 0; $i < $props["level"]; $i ++)
{
for ($i = 0; $i < $props["level"]; $i ++) {
$spaces .= "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";
}
$sCategoryname = clHtmlSpecialChars($props["name"]);
$sCategoryname = capiStrTrimHard($sCategoryname, 30);
$oHtmlSelectOption = new cHTMLOptionElement($spaces.">".$sCategoryname, $tmpidcat, false, !$props["perm"]);
$oHtmlSelectOption = new cHTMLOptionElement($spaces . ">" . $sCategoryname, $tmpidcat, false, !$props["perm"]);
$oHtmlSelect->addOptionElement($j, $oHtmlSelectOption);
$j++;
}
@ -150,51 +146,48 @@ function buildCategorySelectRights() {
return $oHtmlSelect->toHtml();
}
function getExpandCollapseButton ($item, $catName)
{
function getExpandCollapseButton($item, $catName) {
global $sess, $PHP_SELF, $frame, $area;
$selflink = "main.php";
$img = new cHTMLImage;
$img->updateAttributes(array ("style" => "padding:4px;"));
$img->updateAttributes(array("style" => "padding:4px;"));
if (count($item->subitems) > 0)
{
if ($item->collapsed == true)
{
$expandlink = $sess->url($selflink . "?area=$area&frame=$frame&expand=". $item->id);
if (count($item->subitems) > 0) {
if ($item->collapsed == true) {
$expandlink = $sess->url($selflink . "?area=$area&frame=$frame&expand=" . $item->id);
$img->setSrc($item->collapsed_icon);
$img->setAlt(i18n("Open category"));
return ('<a href="'.$expandlink.'">'.$img->render().'</a>&nbsp;'.'<a href="'.$expandlink.'">'.$catName.'</a>');
return ('<a href="' . $expandlink . '">' . $img->render() . '</a>&nbsp;' . '<a href="' . $expandlink . '">' . $catName . '</a>');
} else {
$collapselink = $sess->url($selflink . "?area=$area&frame=$frame&collapse=". $item->id);
$collapselink = $sess->url($selflink . "?area=$area&frame=$frame&collapse=" . $item->id);
$img->setSrc($item->expanded_icon);
$img->setAlt(i18n("Close category"));
return('<a href="'.$collapselink.'">'.$img->render().'</a>&nbsp;'.'<a href="'.$collapselink.'">'.$catName.'</a>');
return('<a href="' . $collapselink . '">' . $img->render() . '</a>&nbsp;' . '<a href="' . $collapselink . '">' . $catName . '</a>');
}
} else {
return '<img src="images/spacer.gif" style="padding:4px;" width="7" height="7">&nbsp;'.$catName;
return '<img src="images/spacer.gif" style="padding:4px;" width="7" height="7">&nbsp;' . $catName;
}
}
function getTemplateSelect() {
global $client, $cfg, $db;
$oHtmlSelect = new cHTMLSelectElement ('cat_template_select', "", "cat_template_select");
$oHtmlSelect = new cHTMLSelectElement('cat_template_select', "", "cat_template_select");
$oHtmlSelectOption = new cHTMLOptionElement('--- '.i18n("none"). ' ---', 0, false);
$oHtmlSelectOption = new cHTMLOptionElement('--- ' . i18n("none") . ' ---', 0, false);
$oHtmlSelect->addOptionElement(0, $oHtmlSelectOption);
$sql = "SELECT
idtpl,
name, defaulttemplate
FROM
".$cfg['tab']['tpl']."
" . $cfg['tab']['tpl'] . "
WHERE
idclient = '".$client."'
idclient = '" . $client . "'
ORDER BY
name";
@ -223,14 +216,12 @@ if (isset($force) && $force == 1) {
$remakeStrTable = true;
}
if ($StrTableClient != $client)
{
if ($StrTableClient != $client) {
unset($expandedList);
$remakeStrTable = true;
}
if ($StrTableLang != $lang)
{
if ($StrTableLang != $lang) {
unset($expandedList);
$remakeStrTable = true;
}
@ -238,31 +229,53 @@ if ($StrTableLang != $lang)
$StrTableClient = $client;
$StrTableLang = $lang;
if (!isset($idcat) ) $idcat = 0;
if (!isset($action) ) $action = 0;
if (!isset($idcat))
$idcat = 0;
if (!isset($action))
$action = 0;
function buildTree (&$rootItem, &$items)
{
function buildTree(&$rootItem, &$items) {
global $nextItem, $perm, $tmp_area;
while ($item_list = each($items))
{
while ($item_list = each($items)) {
list($key, $item) = $item_list;
unset($newItem);
$bCheck = false;
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_newtree"); }
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_newcat"); }
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_makevisible");}
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_makepublic");}
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_deletecat");}
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_moveupcat");}
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_movedowncat");}
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_movesubtree");}
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_renamecat");}
if (!$bCheck) { $bCheck = $perm->have_perm_area_action("str_tplcfg", "str_tplcfg");}
if (!$bCheck) { $bCheck = $perm->have_perm_item($tmp_area, $item['idcat']);}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_newtree");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_newcat");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_makevisible");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_makepublic");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_deletecat");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_moveupcat");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_movedowncat");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_movesubtree");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_renamecat");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action("str_tplcfg", "str_tplcfg");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_item($tmp_area, $item['idcat']);
}
if ($bCheck) {
$newItem = new TreeItem($item['name'], $item['idcat'], true);
@ -284,65 +297,58 @@ function buildTree (&$rootItem, &$items)
$newItem->custom['idtplcfg'] = $item['idtplcfg'];
$newItem->custom['public'] = $item['public'];
if ($perm->have_perm_item("str", $item['idcat']))
{
if ($perm->have_perm_item("str", $item['idcat'])) {
$newItem->custom['forcedisplay'] = 1;
}
if (array_key_exists($key+1, $items))
{
$nextItem = $items[$key+1];
if (array_key_exists($key + 1, $items)) {
$nextItem = $items[$key + 1];
} else {
$nextItem = 0;
}
if (array_key_exists($key-1, $items))
{
$lastItem = $items[$key-1];
if (array_key_exists($key - 1, $items)) {
$lastItem = $items[$key - 1];
} else {
$lastItem = 0;
}
$rootItem->addItem($newItem);
if ($nextItem['level'] > $item['level'])
{
if ($nextItem['level'] > $item['level']) {
$oldRoot = $rootItem;
buildTree($newItem, $items);
$rootItem = $oldRoot;
}
if ($nextItem['level'] < $item['level'])
{
if ($nextItem['level'] < $item['level']) {
return;
}
}
}
if ( $perm->have_perm_area_action($area) ) {
if ($perm->have_perm_area_action($area)) {
$sql = "SELECT
idtree, A.idcat, level, name, parentid, preid, postid, visible, public, idtplcfg, C.urlname as alias
FROM
".$cfg["tab"]["cat_tree"]." AS A,
".$cfg["tab"]["cat"]." AS B,
".$cfg["tab"]["cat_lang"]." AS C
" . $cfg["tab"]["cat_tree"] . " AS A,
" . $cfg["tab"]["cat"] . " AS B,
" . $cfg["tab"]["cat_lang"] . " AS C
WHERE
A.idcat = B.idcat AND
B.idcat = C.idcat AND
C.idlang = '".Contenido_Security::toInteger($lang)."' AND
B.idclient = '".Contenido_Security::toInteger($client)."'
C.idlang = '" . Contenido_Security::toInteger($lang) . "' AND
B.idclient = '" . Contenido_Security::toInteger($client) . "'
ORDER BY
idtree";
# Debug info
if ( $debug ) {
if ($debug) {
echo "<pre>";
echo $sql;
echo "</pre>";
}
$db->query($sql);
@ -351,8 +357,7 @@ if ( $perm->have_perm_area_action($area) ) {
$iIgnoreLevel = 0;
$items = array();
while ($db->next_record())
{
while ($db->next_record()) {
$bSkip = false;
if ($bIgnore == true && $iIgnoreLevel >= $db->f("level")) {
@ -392,41 +397,35 @@ if ( $perm->have_perm_area_action($area) ) {
}
}
$rootStrItem = new TreeItem("root",-1);
$rootStrItem = new TreeItem("root", -1);
$rootStrItem->collapsed_icon = 'images/open_all.gif';
$rootStrItem->expanded_icon = 'images/close_all.gif';
buildTree($rootStrItem, $items);
$expandedList = unserialize($currentuser->getUserProperty("system","cat_expandstate"));
$expandedList = unserialize($currentuser->getUserProperty("system", "cat_expandstate"));
if (is_array($expandedList))
{
if (is_array($expandedList)) {
$rootStrItem->markExpanded($expandedList);
}
if (isset($collapse) && is_numeric($collapse))
{
if (isset($collapse) && is_numeric($collapse)) {
$rootStrItem->markCollapsed($collapse);
}
if (isset($expand) && is_numeric($expand))
{
if (isset($expand) && is_numeric($expand)) {
$rootStrItem->markExpanded($expand);
}
if (isset($expand) && $expand == "all")
{
if (isset($expand) && $expand == "all") {
$rootStrItem->expandAll(-1);
}
if (isset($collapse) && $collapse == "all")
{
if (isset($collapse) && $collapse == "all") {
$rootStrItem->collapseAll(-1);
}
if ($action === "str_newcat")
{
if ($action === "str_newcat") {
$rootStrItem->markExpanded($idcat);
}
@ -436,7 +435,7 @@ if ( $perm->have_perm_area_action($area) ) {
$rootStrItem->traverse($objects);
$rootStrItem->getExpandedList($expandedList);
$currentuser->setUserProperty("system","cat_expandstate", serialize($expandedList));
$currentuser->setUserProperty("system", "cat_expandstate", serialize($expandedList));
# Reset Template
$tpl->reset();
@ -447,24 +446,20 @@ if ( $perm->have_perm_area_action($area) ) {
$_cecIterator = $_cecRegistry->getIterator("Contenido.CategoryList.Columns");
$listColumns = array();
if ($_cecIterator->count() > 0)
{
if ($_cecIterator->count() > 0) {
while ($chainEntry = $_cecIterator->next())
{
while ($chainEntry = $_cecIterator->next()) {
$tmplistColumns = $chainEntry->execute(array());
if (is_array($tmplistColumns))
{
if (is_array($tmplistColumns)) {
$listColumns = array_merge($listColumns, $tmplistColumns);
}
}
foreach ($listColumns as $content)
{
foreach ($listColumns as $content) {
// Header for additional columns
$additionalheaders[] = '<td class="header" nowrap="nowrap">'.$content.'</td>';
$additionalheaders[] = '<td class="header" nowrap="nowrap">' . $content . '</td>';
}
$additionalheader = implode("", $additionalheaders);
@ -480,19 +475,17 @@ if ( $perm->have_perm_area_action($area) ) {
$selflink = "main.php";
$expandlink = $sess->url($selflink . "?area=$area&frame=$frame&expand=all&syncoptions=$syncoptions");
$collapselink = $sess->url($selflink . "?area=$area&frame=$frame&collapse=all&syncoptions=$syncoptions");
$collapseimg =
'<a class="black" href="'.
$collapselink.
'" alt="'.i18n("Close all categories").
'" title="'.i18n("Close all categories").'">
<img src="images/close_all.gif">&nbsp;'.i18n("Close all categories").
$collapseimg = '<a class="black" href="' .
$collapselink .
'" alt="' . i18n("Close all categories") .
'" title="' . i18n("Close all categories") . '">
<img src="images/close_all.gif">&nbsp;' . i18n("Close all categories") .
'</a>';
$expandimg =
'<a class="black" href="'.
$expandlink.
'" alt="'.i18n("Open all categories").
'" title="'.i18n("Open all categories").'">
<img src="images/open_all.gif">&nbsp;'.i18n("Open all categories").
$expandimg = '<a class="black" href="' .
$expandlink .
'" alt="' . i18n("Open all categories") .
'" title="' . i18n("Open all categories") . '">
<img src="images/open_all.gif">&nbsp;' . i18n("Open all categories") .
'</a>';
@ -501,10 +494,10 @@ if ( $perm->have_perm_area_action($area) ) {
$sMouseover = 'onmouseover="str.over(this)" onmouseout="str.out(this)" onclick="str.click(this)"';
//Fill inline edit table row
$tpl->set('s', 'SUM_COLUMNS_EDIT', 14+count($listColumns));
$tpl->set('s', 'SUM_COLUMNS_EDIT', 14 + count($listColumns));
$tpl->set('s', 'ACTION_EDIT_URL', $sess->url("main.php?frame=$frame"));
$tpl->set('s', 'SRC_CANCEL', $cfg["path"]["contenido_fullhtml"].$cfg["path"]["images"].'but_cancel.gif');
$tpl->set('s', 'SRC_OK', $cfg["path"]["contenido_fullhtml"].$cfg["path"]["images"].'but_ok.gif');
$tpl->set('s', 'SRC_CANCEL', $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["images"] . 'but_cancel.gif');
$tpl->set('s', 'SRC_OK', $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["images"] . 'but_ok.gif');
$tpl->set('s', 'HREF_CANCEL', "javascript:handleInlineEdit(0)");
$tpl->set('s', 'LABEL_ALIAS_NAME', i18n('Alias'));
$tpl->set('s', 'TEMPLATE_URL', $sess->url("main.php?area=str_tplcfg&frame=$frame"));
@ -519,7 +512,7 @@ if ( $perm->have_perm_area_action($area) ) {
$sql = "SELECT
idtplcfg, idtpl
FROM
".$cfg["tab"]["tpl_conf"];
" . $cfg["tab"]["tpl_conf"];
$db->query($sql);
$aTplconfigs = array();
while ($db->next_record()) {
@ -529,7 +522,7 @@ if ( $perm->have_perm_area_action($area) ) {
$sql = "SELECT
name, description, idtpl
FROM
".$cfg["tab"]["tpl"];
" . $cfg["tab"]["tpl"];
$db->query($sql);
$aTemplates = array();
@ -540,26 +533,50 @@ if ( $perm->have_perm_area_action($area) ) {
);
}
foreach ($objects as $key=>$value) {
foreach ($objects as $key => $value) {
// check if there area any permission for this $idcat in the mainarea 6 (=str) and there subareas
$bCheck = false;
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_newtree"); }
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_newcat") ; }
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_makevisible"); }
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_makepublic") ; }
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_deletecat") ; }
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_moveupcat") ; }
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_movedowncat") ; }
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_movesubtree") ; }
if (!$bCheck) { $bCheck = $perm->have_perm_area_action($tmp_area, "str_renamecat") ; }
if (!$bCheck) { $bCheck = $perm->have_perm_area_action("str_tplcfg", "str_tplcfg") ; }
if (!$bCheck) { $bCheck = $perm->have_perm_item($tmp_area, $value->id) ; }
if (!$bCheck) { $bCheck = $value->isCustomAttributeSet("forcedisplay") ; }
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_newtree");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_newcat");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_makevisible");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_makepublic");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_deletecat");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_moveupcat");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_movedowncat");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_movesubtree");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action($tmp_area, "str_renamecat");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_area_action("str_tplcfg", "str_tplcfg");
}
if (!$bCheck) {
$bCheck = $perm->have_perm_item($tmp_area, $value->id);
}
if (!$bCheck) {
$bCheck = $value->isCustomAttributeSet("forcedisplay");
}
if ($bCheck) {
//Insert empty row
if ( $value->custom['level'] == 0 && $value->custom['preid'] != 0 ) {
if ($value->custom['level'] == 0 && $value->custom['preid'] != 0) {
$tpl->set('d', 'BGCOLOR', '#FFFFFF');
$tpl->set('d', 'BGCOLOR_EDIT', '#F1F1F1');
@ -582,7 +599,7 @@ if ( $perm->have_perm_area_action($area) ) {
$tpl->set('d', 'DUPLICATEBUTTON', '&nbsp;');
$tpl->set('d', 'TEMPLATEBUTTON', '&nbsp;');
$tpl->set('d', 'MOUSEOVER', '');
$tpl->set('d', 'SUM_COLUMNS_EDIT', 14+count($listColumns));
$tpl->set('d', 'SUM_COLUMNS_EDIT', 14 + count($listColumns));
$tpl->set('d', 'CATID', '');
$tpl->set('d', 'ACTION_EDIT_URL', '');
$tpl->set('d', 'INPUT_CATEGORY', '');
@ -597,8 +614,7 @@ if ( $perm->have_perm_area_action($area) ) {
$additionalColumns = array();
foreach ($listColumns as $content)
{
foreach ($listColumns as $content) {
// Content rows
$additionalColumns[] = '<td style="border: 0px; border-bottom:1px; border-right: 1px; border-color: #B3B3B3; border-style: solid;" nowrap="nowrap">&nbsp;</td>';
}
@ -624,7 +640,7 @@ if ( $perm->have_perm_area_action($area) ) {
//$tpl->set('d', 'CATEGORY', $sCategoryname);
if (strlen($value->name) > 30) {
$tpl->set('d', 'SHOW_MOUSEOVER_CATEGORY', 'onmouseover="Tip(\''.$value->name.'\', BALLOON, true, ABOVE, true);"');
$tpl->set('d', 'SHOW_MOUSEOVER_CATEGORY', 'onmouseover="Tip(\'' . $value->name . '\', BALLOON, true, ABOVE, true);"');
} else {
$tpl->set('d', 'SHOW_MOUSEOVER_CATEGORY', '');
}
@ -637,7 +653,7 @@ if ( $perm->have_perm_area_action($area) ) {
}
$tpl->set('d', 'ALIAS', $sCategoryalias);
if (strlen($value->custom['alias']) > 30) {
$tpl->set('d', 'SHOW_MOUSEOVER_ALIAS', 'onmouseover="Tip(\''.$value->custom['alias'].'\', BALLOON, true, ABOVE, true);"');
$tpl->set('d', 'SHOW_MOUSEOVER_ALIAS', 'onmouseover="Tip(\'' . $value->custom['alias'] . '\', BALLOON, true, ABOVE, true);"');
} else {
$tpl->set('d', 'SHOW_MOUSEOVER_ALIAS', '');
}
@ -651,17 +667,15 @@ if ( $perm->have_perm_area_action($area) ) {
$descString = '';
if ($template == "")
{
$template = '--- '.i18n("none").' ---';
if ($template == "") {
$template = '--- ' . i18n("none") . ' ---';
}
// Description for hover effect
$descString = '<b>'.$template.'</b>';
$descString = '<b>' . $template . '</b>';
if( sizeof($templateDescription)>0 )
{
$descString .= '<br>'.$templateDescription;
if (sizeof($templateDescription) > 0) {
$descString .= '<br>' . $templateDescription;
}
$sTemplatename = $template;
@ -672,14 +686,13 @@ if ( $perm->have_perm_area_action($area) ) {
$tpl->set('d', 'TPLNAME', $sTemplatename);
$tpl->set('d', 'TPLDESC', $descString);
if($perm->have_perm_area_action($tmp_area, "str_renamecat") || $perm->have_perm_area_action_item($tmp_area, "str_renamecat", $value->id)) {
if ($perm->have_perm_area_action($tmp_area, "str_renamecat") || $perm->have_perm_area_action_item($tmp_area, "str_renamecat", $value->id)) {
$bPermRename = 1;
}else{
} else {
$bPermRename = 0;
}
if ($perm->have_perm_area_action("str_tplcfg", "str_tplcfg") || $perm->have_perm_area_action_item("str_tplcfg","str_tplcfg",$value->id))
{
if ($perm->have_perm_area_action("str_tplcfg", "str_tplcfg") || $perm->have_perm_area_action_item("str_tplcfg", "str_tplcfg", $value->id)) {
$bPermTplcfg = 1;
} else {
$bPermTplcfg = 0;
@ -696,36 +709,36 @@ if ( $perm->have_perm_area_action($area) ) {
$aRecord['pTplcfg'] = $bPermTplcfg;
$aInlineEditData[$value->id] = $aRecord;
$tpl->set('d', 'RENAMEBUTTON', "<a class=\"action\" href=\"javascript:handleInlineEdit(".$value->id.");\"><img src=\"".$cfg["path"]["images"]."but_todo.gif\" id=\"cat_".$value->id."_image\"></a>");
$tpl->set('d', 'RENAMEBUTTON', "<a class=\"action\" href=\"javascript:handleInlineEdit(" . $value->id . ");\"><img src=\"" . $cfg["path"]["images"] . "but_todo.gif\" id=\"cat_" . $value->id . "_image\"></a>");
$tpl->set('d', 'CATID', $value->id);
if (strlen($template) > 20) {
$tpl->set('d', 'SHOW_MOUSEOVER', 'onmouseover="Tip(\''.$descString.'\', BALLOON, true, ABOVE, true);"');
$tpl->set('d', 'SHOW_MOUSEOVER', 'onmouseover="Tip(\'' . $descString . '\', BALLOON, true, ABOVE, true);"');
} else {
$tpl->set('d', 'SHOW_MOUSEOVER', '');
}
$tpl->set('d', 'MOUSEOVER', $sMouseover);
if($perm->have_perm_area_action($tmp_area, "str_newcat") || $perm->have_perm_area_action_item($tmp_area, "str_newcat", $value->id)) {
if ($perm->have_perm_area_action($tmp_area, "str_newcat") || $perm->have_perm_area_action_item($tmp_area, "str_newcat", $value->id)) {
$bAreaAddNewCategory = true;
}
if($perm->have_perm_area_action($tmp_area, "str_makevisible") || $perm->have_perm_area_action_item($tmp_area,"str_makevisible",$value->id)) {
if ($perm->have_perm_area_action($tmp_area, "str_makevisible") || $perm->have_perm_area_action_item($tmp_area, "str_makevisible", $value->id)) {
if ($value->custom['visible'] == 1) {
$tpl->set('d', 'VISIBLEBUTTON', "<a href=\"".$sess->url("main.php?area=$area&action=str_makevisible&frame=$frame&idcat=".$value->id."&visible=".$value->custom['visible'])."#clickedhere\"><img src=\"images/online.gif\"></a>");
$tpl->set('d', 'VISIBLEBUTTON', "<a href=\"" . $sess->url("main.php?area=$area&action=str_makevisible&frame=$frame&idcat=" . $value->id . "&visible=" . $value->custom['visible']) . "#clickedhere\"><img src=\"images/online.gif\"></a>");
} else {
$tpl->set('d', 'VISIBLEBUTTON', "<a href=\"".$sess->url("main.php?area=$area&action=str_makevisible&frame=$frame&idcat=".$value->id."&visible=".$value->custom['visible'])."#clickedhere\"><img src=\"images/offline.gif\"></a>");
$tpl->set('d', 'VISIBLEBUTTON', "<a href=\"" . $sess->url("main.php?area=$area&action=str_makevisible&frame=$frame&idcat=" . $value->id . "&visible=" . $value->custom['visible']) . "#clickedhere\"><img src=\"images/offline.gif\"></a>");
}
} else {
$tpl->set('d', 'VISIBLEBUTTON', '&nbsp;');
}
if($perm->have_perm_area_action($tmp_area, "str_makepublic") || $perm->have_perm_area_action_item($tmp_area,"str_makepublic",$value->id)) {
if ($perm->have_perm_area_action($tmp_area, "str_makepublic") || $perm->have_perm_area_action_item($tmp_area, "str_makepublic", $value->id)) {
if ($value->custom['public'] == 1) {
$tpl->set('d', 'PUBLICBUTTON', "<a href=\"".$sess->url("main.php?area=$area&action=str_makepublic&frame=$frame&idcat=".$value->id."&public=".$value->custom['public'])."#clickedhere\"><img src=\"images/folder_delock.gif\"></a>");
$tpl->set('d', 'PUBLICBUTTON', "<a href=\"" . $sess->url("main.php?area=$area&action=str_makepublic&frame=$frame&idcat=" . $value->id . "&public=" . $value->custom['public']) . "#clickedhere\"><img src=\"images/folder_delock.gif\"></a>");
} else {
$tpl->set('d', 'PUBLICBUTTON', "<a href=\"".$sess->url("main.php?area=$area&action=str_makepublic&frame=$frame&idcat=".$value->id."&public=".$value->custom['public'])."#clickedhere\"><img src=\"images/folder_lock.gif\"></a>");
$tpl->set('d', 'PUBLICBUTTON', "<a href=\"" . $sess->url("main.php?area=$area&action=str_makepublic&frame=$frame&idcat=" . $value->id . "&public=" . $value->custom['public']) . "#clickedhere\"><img src=\"images/folder_lock.gif\"></a>");
}
} else {
$tpl->set('d', 'PUBLICBUTTON', '&nbsp;');
@ -733,40 +746,37 @@ if ( $perm->have_perm_area_action($area) ) {
$hasChildren = strNextDeeper($value->id);
$hasArticles = strHasArticles($value->id);
if(($hasChildren == 0) && ($hasArticles == false) &&($perm->have_perm_area_action($tmp_area, "str_deletecat") || $perm->have_perm_area_action_item($tmp_area,"str_deletecat",$value->id))) {
if (($hasChildren == 0) && ($hasArticles == false) && ($perm->have_perm_area_action($tmp_area, "str_deletecat") || $perm->have_perm_area_action_item($tmp_area, "str_deletecat", $value->id))) {
$delete = '<a href="javascript://" onclick="confDel('.$value->id.','.$value->custom['parentid'].', \''.clHtmlSpecialChars($value->name).'\')">'."<img src=\"".$cfg["path"]["images"]."delete.gif\"></a>";
$delete = '<a href="javascript://" onclick="confDel(' . $value->id . ',' . $value->custom['parentid'] . ', \'' . clHtmlSpecialChars($value->name) . '\')">' . "<img src=\"" . $cfg["path"]["images"] . "delete.gif\"></a>";
$tpl->set('d', 'DELETEBUTTON', $delete);
} else {
$message = i18n("No permission");
if ($hasChildren)
{
if ($hasChildren) {
$button = 'delete_inact_h.gif';
}
if ($hasArticles)
{
if ($hasArticles) {
$button = 'delete_inact_g.gif';
}
if ($hasChildren && $hasArticles)
{
if ($hasChildren && $hasArticles) {
$button = 'delete_inact.gif';
}
$tpl->set('d', 'DELETEBUTTON', '<img src="'.$cfg["path"]["images"].$button.'">');
$tpl->set('d', 'DELETEBUTTON', '<img src="' . $cfg["path"]["images"] . $button . '">');
}
if($perm->have_perm_area_action($tmp_area, "str_moveupcat") || $perm->have_perm_area_action_item($tmp_area,"str_moveupcat",$value->id)) {
if ($perm->have_perm_area_action($tmp_area, "str_moveupcat") || $perm->have_perm_area_action_item($tmp_area, "str_moveupcat", $value->id)) {
$rand = rand();
if ($value->custom['parentid']==0 && $value->custom['preid']==0) {
if ($value->custom['parentid'] == 0 && $value->custom['preid'] == 0) {
$tpl->set('d', 'UPBUTTON', "<img src=\"images/folder_moveup_inact.gif\">");
} else {
if ($value->custom['preid']!=0) {
$tpl->set('d', 'UPBUTTON', "<a href=\"".$sess->url("main.php?area=$area&action=str_moveupcat&frame=$frame&idcat=".$value->id."&rand=$rand")."#clickedhere\"><img src=\"images/folder_moveup.gif\"></a>");
if ($value->custom['preid'] != 0) {
$tpl->set('d', 'UPBUTTON', "<a href=\"" . $sess->url("main.php?area=$area&action=str_moveupcat&frame=$frame&idcat=" . $value->id . "&rand=$rand") . "#clickedhere\"><img src=\"images/folder_moveup.gif\"></a>");
} else {
$tpl->set('d', 'UPBUTTON', "<img src=\"images/folder_moveup_inact.gif\">");
}
@ -775,31 +785,27 @@ if ( $perm->have_perm_area_action($area) ) {
$tpl->set('d', 'UPBUTTON', "<img src=\"images/folder_moveup_inact.gif\">");
}
if($perm->have_perm_area_action($tmp_area, "str_movedowncat") || $perm->have_perm_area_action_item($tmp_area,"str_movedowncat",$value->id)) {
if ($perm->have_perm_area_action($tmp_area, "str_movedowncat") || $perm->have_perm_area_action_item($tmp_area, "str_movedowncat", $value->id)) {
$rand = rand();
if ($value->custom['postid']==0) {
if ($value->custom['postid'] == 0) {
$tpl->set('d', 'DOWNBUTTON', "<img src=\"images/folder_movedown_inact.gif\">");
} else {
$tpl->set('d', 'DOWNBUTTON', "<a href=\"".$sess->url("main.php?area=$area&action=str_movedowncat&frame=$frame&idcat=".$value->id."&rand=$rand")."#clickedhere\"><img src=\"images/folder_movedown.gif\"></a>");
$tpl->set('d', 'DOWNBUTTON', "<a href=\"" . $sess->url("main.php?area=$area&action=str_movedowncat&frame=$frame&idcat=" . $value->id . "&rand=$rand") . "#clickedhere\"><img src=\"images/folder_movedown.gif\"></a>");
}
} else {
$tpl->set('d', 'DOWNBUTTON', "<img src=\"images/folder_movedown_inact.gif\">");
}
if (($action === "str_movesubtree") && (!isset($parentid_new)))
{
if($perm->have_perm_area_action($tmp_area, "str_movesubtree") || $perm->have_perm_area_action_item($tmp_area,"str_movesubtree",$value->id))
{
if ($value->id == $idcat)
{
$tpl->set('d', 'MOVEBUTTON', "<a name=#movesubtreehere><a href=\"".$sess->url("main.php?area=$area&action=str_movesubtree&frame=$frame&idcat=$idcat&parentid_new=0")."\"><img src=\"".$cfg["path"]["images"]."but_move_subtree_main.gif\"></a>");
if (($action === "str_movesubtree") && (!isset($parentid_new))) {
if ($perm->have_perm_area_action($tmp_area, "str_movesubtree") || $perm->have_perm_area_action_item($tmp_area, "str_movesubtree", $value->id)) {
if ($value->id == $idcat) {
$tpl->set('d', 'MOVEBUTTON', "<a name=#movesubtreehere><a href=\"" . $sess->url("main.php?area=$area&action=str_movesubtree&frame=$frame&idcat=$idcat&parentid_new=0") . "\"><img src=\"" . $cfg["path"]["images"] . "but_move_subtree_main.gif\"></a>");
} else {
$allowed = strMoveCatTargetallowed($value->id, $idcat);
if ($allowed == 1)
{
$tpl->set('d', 'MOVEBUTTON', "<a href=\"".$sess->url("main.php?area=$area&action=str_movesubtree&frame=$frame&idcat=$idcat&parentid_new=".$value->id)."\"><img src=\"".$cfg["path"]["images"]."but_move_subtree_target.gif\"></a>");
if ($allowed == 1) {
$tpl->set('d', 'MOVEBUTTON', "<a href=\"" . $sess->url("main.php?area=$area&action=str_movesubtree&frame=$frame&idcat=$idcat&parentid_new=" . $value->id) . "\"><img src=\"" . $cfg["path"]["images"] . "but_move_subtree_target.gif\"></a>");
} else {
$tpl->set('d', 'MOVEBUTTON', '&nbsp;');
}
@ -808,16 +814,15 @@ if ( $perm->have_perm_area_action($area) ) {
$tpl->set('d', 'MOVEBUTTON', '&nbsp;');
}
} else {
if($perm->have_perm_area_action($tmp_area, "str_movesubtree") || $perm->have_perm_area_action_item($tmp_area,"str_movesubtree",$value->id)) {
$tpl->set('d', 'MOVEBUTTON', "<a href=\"".$sess->url("main.php?area=$area&action=str_movesubtree&frame=$frame&idcat=".$value->id)."#movesubtreehere\"><img src=\"".$cfg["path"]["images"]."but_move_subtree.gif\"></a>");
}else{
if ($perm->have_perm_area_action($tmp_area, "str_movesubtree") || $perm->have_perm_area_action_item($tmp_area, "str_movesubtree", $value->id)) {
$tpl->set('d', 'MOVEBUTTON', "<a href=\"" . $sess->url("main.php?area=$area&action=str_movesubtree&frame=$frame&idcat=" . $value->id) . "#movesubtreehere\"><img src=\"" . $cfg["path"]["images"] . "but_move_subtree.gif\"></a>");
} else {
$tpl->set('d', 'MOVEBUTTON', '&nbsp;');
}
}
if ($perm->have_perm_area_action("str", "str_duplicate") || $perm->have_perm_area_action_item("str", "str_duplicate", $value->id))
{
$duplicate = '<a href="javascript://" onclick="confDupl('.$value->id.','.$value->custom['parentid'].', \''.clHtmlSpecialChars($value->name).'\')">'."<img src=\"".$cfg["path"]["images"]."folder_duplicate.gif\"></a>";
if ($perm->have_perm_area_action("str", "str_duplicate") || $perm->have_perm_area_action_item("str", "str_duplicate", $value->id)) {
$duplicate = '<a href="javascript://" onclick="confDupl(' . $value->id . ',' . $value->custom['parentid'] . ', \'' . clHtmlSpecialChars($value->name) . '\')">' . "<img src=\"" . $cfg["path"]["images"] . "folder_duplicate.gif\"></a>";
$tpl->set('d', 'DUPLICATEBUTTON', $duplicate);
} else {
@ -830,24 +835,21 @@ if ( $perm->have_perm_area_action($area) ) {
$columns = array();
foreach ($listColumns as $key => $content)
{
foreach ($listColumns as $key => $content) {
$columnInfo = array();
$_cecIterator = $_cecRegistry->getIterator("Contenido.CategoryList.RenderColumn");
$columnContents = array();
if ($_cecIterator->count() > 0)
{
while ($chainEntry = $_cecIterator->next())
{
if ($_cecIterator->count() > 0) {
while ($chainEntry = $_cecIterator->next()) {
$columnContents[] = $chainEntry->execute($value->id, $key);
}
} else {
$columnContents[] = '';
}
$columns[] = '<td class="str-style-c">'.implode("", $columnContents).'</td>';
$columns[] = '<td class="str-style-c">' . implode("", $columnContents) . '</td>';
}
$tpl->set('d', 'ADDITIONALCOLUMNS', implode("", $columns));
@ -859,10 +861,10 @@ if ( $perm->have_perm_area_action($area) ) {
foreach ($aInlineEditData as $iIdCat => $aData) {
$aTmp = array();
foreach ($aData as $aKey => $aValue) {
array_push($aTmp, $aKey."':'".$aValue);
array_push($aTmp, $aKey . "':'" . $aValue);
}
$jsDataArray.= "tmpObject = new Object();
tmpObject = {'".implode("', '", $aTmp)."'};
$jsDataArray .= "tmpObject = new Object();
tmpObject = {'" . implode("', '", $aTmp) . "'};
dataArray[$iIdCat] = tmpObject;
";
}
@ -873,71 +875,69 @@ if ( $perm->have_perm_area_action($area) ) {
//Set DHTML generic Values
$sImagepath = $cfg["path"]["images"];
$tpl->set('s', 'SUM_COLUMNS', 14+count($listColumns));
$tpl->set('s', 'SUM_COLUMNS', 14 + count($listColumns));
$tpl->set('s', 'HREF_ACTION', $sess->url("main.php?frame=$frame"));
$tpl->set('s', 'CON_IMAGES', $cfg["path"]["contenido_fullhtml"].$cfg["path"]["images"]);
$tpl->set('s', 'CON_IMAGES', $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["images"]);
//Generate input fields for category new layer and category edit layer
$oSession = new cHTMLHiddenField ($sess->name, $sess->id);
$oActionEdit = new cHTMLHiddenField ('action', 'str_renamecat');
$oIdcat = new cHTMLHiddenField ('idcat');
$oSession = new cHTMLHiddenField($sess->name, $sess->id);
$oActionEdit = new cHTMLHiddenField('action', 'str_renamecat');
$oIdcat = new cHTMLHiddenField('idcat');
$tpl->set('s', 'INPUT_SESSION', $oSession->render());
$tpl->set('s', 'INPUT_ACTION_EDIT', $oActionEdit->render());
$tpl->set('s', 'INPUT_IDCAT', $oIdcat->render());
$oVisible = new cHTMLHiddenField ('visible', 0, 'visible_input');
$oPublic = new cHTMLHiddenField ('public', 1, 'public_input');
$oTemplate = new cHTMLHiddenField ('idtplcfg', 0, 'idtplcfg_input');
$oVisible = new cHTMLHiddenField('visible', 0, 'visible_input');
$oPublic = new cHTMLHiddenField('public', 1, 'public_input');
$oTemplate = new cHTMLHiddenField('idtplcfg', 0, 'idtplcfg_input');
$tpl->set('s', 'INPUT_VISIBLE', $oVisible->render());
$tpl->set('s', 'INPUT_PUBLIC', $oPublic->render());
$tpl->set('s', 'INPUT_TEMPLATE', $oTemplate->render());
$oCatName = new cHTMLTextbox ('categoryname', '', '', '', 'cat_categoryname');
$oCatName = new cHTMLTextbox('categoryname', '', '', '', 'cat_categoryname');
$oCatName->setStyle('width:150px; vertical-align:middle;');
$tpl->set('s', 'INPUT_CATNAME_NEW', $oCatName->render());
$oAlias = new cHTMLTextbox ('categoryalias');
$oAlias = new cHTMLTextbox('categoryalias');
$oAlias->setStyle('width:150px; vertical-align:middle;');
$tpl->set('s', 'INPUT_ALIAS_NEW', $oAlias->render());
$oNewCatName = new cHTMLTextbox ('newcategoryname');
$oNewCatName = new cHTMLTextbox('newcategoryname');
$oNewCatName->setStyle('width:150px; vertical-align:middle;');
$tpl->set('s', 'INPUT_CATNAME_EDIT', $oNewCatName->render());
$oNewAlias = new cHTMLTextbox ('newcategoryalias');
$oNewAlias = new cHTMLTextbox('newcategoryalias');
$oNewAlias->setStyle('width:150px; vertical-align:middle;');
$tpl->set('s', 'INPUT_ALIAS_EDIT', $oNewAlias->render());
$sCategorySelect = buildCategorySelectRights('idcat', '');
# Show Layerbutton for adding new Cateogries and set options according to Permisssions
if (($perm->have_perm_area_action($tmp_area,"str_newtree") ||
$perm->have_perm_area_action($tmp_area,"str_newcat") ||
$bAreaAddNewCategory)
&& (int) $client > 0 && (int) $lang > 0) {
$tpl->set('s', 'NEWCAT', $string . "<a class=\"black\" id=\"new_tree_button\" href=\"javascript:showNewForm();\"><img src=\"images/folder_new.gif\">&nbsp;".i18n('Create new category')."</a>");
if ($perm->have_perm_area_action($tmp_area,"str_newtree")) {
if ($perm->have_perm_area_action($tmp_area,"str_newcat") || $bAreaAddNewCategory) {
if (($perm->have_perm_area_action($tmp_area, "str_newtree") ||
$perm->have_perm_area_action($tmp_area, "str_newcat") ||
$bAreaAddNewCategory) && (int) $client > 0 && (int) $lang > 0) {
$tpl->set('s', 'NEWCAT', $string . "<a class=\"black\" id=\"new_tree_button\" href=\"javascript:showNewForm();\"><img src=\"images/folder_new.gif\">&nbsp;" . i18n('Create new category') . "</a>");
if ($perm->have_perm_area_action($tmp_area, "str_newtree")) {
if ($perm->have_perm_area_action($tmp_area, "str_newcat") || $bAreaAddNewCategory) {
$tpl->set('s', 'PERMISSION_NEWTREE', '');
$oActionNew = new cHTMLHiddenField ('action', 'str_newcat', 'cat_new_action');
$oActionNew = new cHTMLHiddenField('action', 'str_newcat', 'cat_new_action');
} else {
$tpl->set('s', 'PERMISSION_NEWTREE', 'disabled checked');
$oActionNew = new cHTMLHiddenField ('action', 'str_newcat', 'str_newtree');
$oActionNew = new cHTMLHiddenField('action', 'str_newcat', 'str_newtree');
}
$tpl->set('s', 'INPUT_ACTION_NEW', $oActionNew->render());
$tpl->set('s', 'PERMISSION_NEWTREE_DISPLAY', 'block');
} else {
$oActionNew = new cHTMLHiddenField ('action', 'str_newcat', 'cat_new_action');
$oActionNew = new cHTMLHiddenField('action', 'str_newcat', 'cat_new_action');
$tpl->set('s', 'PERMISSION_NEWTREE', 'disabled');
$tpl->set('s', 'PERMISSION_NEWTREE_DISPLAY', 'none');
$tpl->set('s', 'NEW_ACTION', 'str_newcat');
$tpl->set('s', 'INPUT_ACTION_NEW', $oActionNew->render());
}
if ($perm->have_perm_area_action($tmp_area,"str_newcat") || $bAreaAddNewCategory) {
if ($perm->have_perm_area_action($tmp_area, "str_newcat") || $bAreaAddNewCategory) {
$tpl->set('s', 'CATEGORY_SELECT', $sCategorySelect);
$tpl->set('s', 'PERMISSION_NEWCAT_DISPLAY', 'block');
} else {
@ -946,23 +946,23 @@ if ( $perm->have_perm_area_action($area) ) {
}
if ($perm->have_perm_area_action("str_tplcfg", "str_tplcfg")) {
$tpl->set('s', 'TEMPLATE_BUTTON_NEW', '<a href="javascript:showTemplateSelect();"><img src="'.$sImagepath.'template_properties.gif" id="cat_category_select_button" title="'.i18n('Configure category').'" alt="'.i18n('Configure category').'"></a>');
$tpl->set('s', 'TEMPLATE_BUTTON_NEW', '<a href="javascript:showTemplateSelect();"><img src="' . $sImagepath . 'template_properties.gif" id="cat_category_select_button" title="' . i18n('Configure category') . '" alt="' . i18n('Configure category') . '"></a>');
$tpl->set('s', 'SELECT_TEMPLATE', getTemplateSelect());
} else {
$tpl->set('s', 'TEMPLATE_BUTTON_NEW', '<img src="'.$sImagepath.'template_properties_off.gif" id="cat_category_select_button" title="'.i18n('Configure category').'" alt="'.i18n('Configure category').'">');
$tpl->set('s', 'TEMPLATE_BUTTON_NEW', '<img src="' . $sImagepath . 'template_properties_off.gif" id="cat_category_select_button" title="' . i18n('Configure category') . '" alt="' . i18n('Configure category') . '">');
$tpl->set('s', 'SELECT_TEMPLATE', '');
}
if ($perm->have_perm_area_action($tmp_area, "str_makevisible")) {
$tpl->set('s', 'MAKEVISIBLE_BUTTON_NEW', '<a href="javascript:changeVisible();"><img src="'.$sImagepath.'offline.gif" id="visible_image" title="'.i18n('Make online').'" alt="'.i18n('Make online').'"></a>');
$tpl->set('s', 'MAKEVISIBLE_BUTTON_NEW', '<a href="javascript:changeVisible();"><img src="' . $sImagepath . 'offline.gif" id="visible_image" title="' . i18n('Make online') . '" alt="' . i18n('Make online') . '"></a>');
} else {
$tpl->set('s', 'MAKEVISIBLE_BUTTON_NEW', '<img src="'.$sImagepath.'offline_off.gif" id="visible_image" title="'.i18n('Make online').'" alt="'.i18n('Make online').'">');
$tpl->set('s', 'MAKEVISIBLE_BUTTON_NEW', '<img src="' . $sImagepath . 'offline_off.gif" id="visible_image" title="' . i18n('Make online') . '" alt="' . i18n('Make online') . '">');
}
if ($perm->have_perm_area_action($tmp_area, "str_makepublic")) {
$tpl->set('s', 'MAKEPUBLIC_BUTTON_NEW', '<a href="javascript:changePublic();"><img src="'.$sImagepath.'folder_delock.gif" id="public_image" title="'.i18n('Protect category').'" alt="'.i18n('Protect category').'"></a>');
$tpl->set('s', 'MAKEPUBLIC_BUTTON_NEW', '<a href="javascript:changePublic();"><img src="' . $sImagepath . 'folder_delock.gif" id="public_image" title="' . i18n('Protect category') . '" alt="' . i18n('Protect category') . '"></a>');
} else {
$tpl->set('s', 'MAKEPUBLIC_BUTTON_NEW', '<img src="'.$sImagepath.'folder_delocked.gif" id="public_image" title="'.i18n('Protect category').'" alt="'.i18n('Protect category').'">');
$tpl->set('s', 'MAKEPUBLIC_BUTTON_NEW', '<img src="' . $sImagepath . 'folder_delocked.gif" id="public_image" title="' . i18n('Protect category') . '" alt="' . i18n('Protect category') . '">');
}
} else {
$tpl->set('s', 'NEWCAT', $string);
@ -984,14 +984,14 @@ if ( $perm->have_perm_area_action($area) ) {
# Generate template
$clang = new cApiLanguage($lang);
if ( $movesubtreeidcat != 0 ) {
if ( strlen ( $sMoveSubtreeCatName ) > 30 ) {
if ($movesubtreeidcat != 0) {
if (strlen($sMoveSubtreeCatName) > 30) {
$sLimiter = "...";
} else {
$sLimiter = "";
}
$sButtonDesc = sprintf( i18n( 'Cancel moving %s' ), '"' . substr( $sMoveSubtreeCatName, 0, 30) . $sLimiter . '"' );
$tpl->set('s', 'CANCEL_MOVE_TREE', '<a class="black" id="cancel_move_tree_button" href="javascript:cancelMoveTree(\'' . $movesubtreeidcat . '\');"><img src="images/but_cancel.gif" alt="'.$sButtonDesc.'" />&nbsp;'.$sButtonDesc.'</a>');
$sButtonDesc = sprintf(i18n('Cancel moving %s'), '"' . substr($sMoveSubtreeCatName, 0, 30) . $sLimiter . '"');
$tpl->set('s', 'CANCEL_MOVE_TREE', '<a class="black" id="cancel_move_tree_button" href="javascript:cancelMoveTree(\'' . $movesubtreeidcat . '\');"><img src="images/but_cancel.gif" alt="' . $sButtonDesc . '" />&nbsp;' . $sButtonDesc . '</a>');
} else {
$tpl->set('s', 'CANCEL_MOVE_TREE', '');
}

Datei anzeigen

@ -61,6 +61,25 @@ and open the template in the editor.
select#lang {
width: 180px;
height: 17px;
line-height: 17px;
margin-left: 4px;
margin-top: 0;
margin-top: 3px;
border: 1px solid #999;
}
#cl_beuser, #cl_passwd {
font-family: verdana,arial,helvetica,sans-serif;
height: 17px;
line-height: 17px;
margin-left: 13px;
margin-top: 3px;
padding: 0 2px;
border: 1px solid #999;
}
#cLanguageSelect {
color: #000;
font-family: verdana,arial,helvetica,sans-serif;
font-size: 11px;
}

Datei anzeigen

@ -54,8 +54,8 @@ form, h1, h2, h3, h4{
padding-left: 10px;
}
#head_info{
height: 25px;
line-height: 25px;
height: 35px;
line-height: 35px;
background-color: #F1F1F1;
}
.head_nav{

Datei anzeigen

@ -1,6 +1,6 @@
<html>
<head>
<title></title>
<title>test</title>
<meta http-equiv="expires" content="0">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">

Datei anzeigen

@ -1,6 +1,6 @@
<html>
<head>
<title></title>
<title>test</title>
<meta http-equiv="expires" content="0">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">