diff --git a/trunk/conlite/classes/class.csv.php b/trunk/conlite/classes/class.csv.php index 657dc52..eba7337 100644 --- a/trunk/conlite/classes/class.csv.php +++ b/trunk/conlite/classes/class.csv.php @@ -1,15 +1,9 @@ _delimiter = ";"; - } - - function setRow ($row) - { - $args = func_num_args(); - - for ($arg=1;$arg<$args;$arg++) - { - $ma = func_get_arg($arg); - $this->setCell($row, $arg, $ma); - } - } - - function setCell($row, $cell, $data) - { - $row = Contenido_Security::escapeDB($row); - $cell = Contenido_Security::escapeDB($cell); - $data = Contenido_Security::escapeDB($data); - - $data = str_replace('"', '""', $data); - $this->_data[$row][$cell] = '"'.$data.'"'; - } - - function setDelimiter ($delimiter) - { - $this->_delimiter = $delimiter; - } - - function make() { +class CSV { + + var $_data = array(); + var $_delimiter; + + public function __construct() { + $this->_delimiter = ";"; + } + + public function setRow($row) { + $args = func_num_args(); + + for ($arg = 1; $arg < $args; $arg++) { + $ma = func_get_arg($arg); + $this->setCell($row, $arg, $ma); + } + } + + public function setCell($row, $cell, $data) { + $row = Contenido_Security::escapeDB($row); + $cell = Contenido_Security::escapeDB($cell); + $data = Contenido_Security::escapeDB($data); + + $data = str_replace('"', '""', $data); + $this->_data[$row][$cell] = '"' . $data . '"'; + } + + public function setDelimiter($delimiter) { + $this->_delimiter = $delimiter; + } + + public function make() { $out = ''; foreach ($this->_data as $row => $line) { $out .= implode($this->_delimiter, $line); diff --git a/trunk/conlite/classes/drivers/class.gdb.driver.php b/trunk/conlite/classes/drivers/class.gdb.driver.php index 75dd7fa..9631d0f 100644 --- a/trunk/conlite/classes/drivers/class.gdb.driver.php +++ b/trunk/conlite/classes/drivers/class.gdb.driver.php @@ -1,15 +1,9 @@ _sEncoding = $sEncoding; - } - - function setItemClassInstance($oInstance) { - $this->_oItemClassInstance = $oInstance; - } - - function buildJoinQuery($destinationTable, $destinationClass, $destinationPrimaryKey, $sourceClass, $primaryKey) { - - } - - function buildOperator($sField, $sOperator, $sRestriction) { + public function setEncoding($sEncoding) { + $this->_sEncoding = $sEncoding; + } + + public function setItemClassInstance($oInstance) { + $this->_oItemClassInstance = $oInstance; + } + + public function buildJoinQuery($destinationTable, $destinationClass, $destinationPrimaryKey, $sourceClass, $primaryKey) { - } + } + public function buildOperator($sField, $sOperator, $sRestriction) { + + } } - ?> diff --git a/trunk/conlite/includes/include.client_edit.php b/trunk/conlite/includes/include.client_edit.php index 40a4485..bbc73ce 100644 --- a/trunk/conlite/includes/include.client_edit.php +++ b/trunk/conlite/includes/include.client_edit.php @@ -1,4 +1,5 @@ nextid($cfg["tab"]["clients"]); $idclient = $nextid; $new = true; } -if(!$perm->have_perm_area_action($area)) -{ - $notification->displayNotification("error", i18n("Permission denied")); +if (!$perm->have_perm_area_action($area)) { + $notification->displayNotification("error", i18n("Permission denied")); } else { - if ( !isset($idclient) ) - { - $notification->displayNotification("error", i18n("No client ID passed")); - } else { - if (($action == "client_edit") && ($perm->have_perm_area_action($area, $action))) - { - $sNewNotification = ''; - if ($active != "1") - { - $active = "0"; - } - - if ($new == true) - { - - $sLangNotification = i18n('Notice: In order to use this client, you must create a new language for it.'); - $sTarget = $sess->url('frameset.php?area=lang'); - $sJsLink = "parent.parent.location.href='".$sTarget."'; + if (!isset($idclient)) { + $notification->displayNotification("error", i18n("No client ID passed")); + } else { + if (($action == "client_edit") && ($perm->have_perm_area_action($area, $action))) { + $sNewNotification = ''; + if ($active != "1") { + $active = "0"; + } + + if ($new == true) { + + $sLangNotification = i18n('Notice: In order to use this client, you must create a new language for it.'); + $sTarget = $sess->url('frameset.php?area=lang'); + $sJsLink = "parent.parent.location.href='" . $sTarget . "'; top.header.markActive(top.header.document.getElementById('sub_lang'));"; - $sLangNotificationLink = sprintf(i18n('Please click %shere%s to create a new language.'), '', ''); - $sNewNotification = '
'.$sLangNotification.'
'.$sLangNotificationLink; - if (substr($frontendpath, strlen($frontendpath)-1) != "/") - { - $frontendpath .= "/"; - } - - if (substr($htmlpath, strlen($htmlpath)-1) != "/") - { - $htmlpath .= "/"; - } - - $sql = "INSERT INTO - ".$cfg["tab"]["clients"]." + $sLangNotificationLink = sprintf(i18n('Please click %shere%s to create a new language.'), '', ''); + $sNewNotification = '
' . $sLangNotification . '
' . $sLangNotificationLink; + if (substr($frontendpath, strlen($frontendpath) - 1) != "/") { + $frontendpath .= "/"; + } + + if (substr($htmlpath, strlen($htmlpath) - 1) != "/") { + $htmlpath .= "/"; + } + + $sql = "INSERT INTO + " . $cfg["tab"]["clients"] . " SET - name = '".Contenido_Security::escapeDB($clientname, $db)."', - frontendpath = '".Contenido_Security::escapeDB($frontendpath, $db)."', - htmlpath = '".Contenido_Security::escapeDB($htmlpath, $db)."', - errsite_cat = '".Contenido_Security::toInteger($errsite_cat)."', - errsite_art = '".Contenido_Security::toInteger($errsite_art)."', - idclient = '".Contenido_Security::toInteger($idclient)."'"; - - $properties->setValue("idclient", $idclient, "backend", "clientimage", $clientlogo); - - // Copy the client template to the real location - $destPath = $frontendpath; - $sourcePath = $cfg['path']['contenido'] . $cfg['path']['frontendtemplate']; - - if($copytemplate) { - if(!file_exists($destPath)) { - if(recursive_copy($sourcePath, $destPath)) { - $res = fopen($destPath."config.php","rb+"); - $res2 = fopen($destPath."config.php.new", "ab+"); - if($res && $res2) { - while(!feof($res)) { - $buffer = fgets($res, 4096); - $buffer = str_replace("!CLIENT!", $idclient, $buffer); - $buffer = str_replace("!PATH!", $cfg["path"]["contenido"], $buffer); - fwrite($res2, $buffer); + name = '" . Contenido_Security::escapeDB($clientname, $db) . "', + frontendpath = '" . Contenido_Security::escapeDB($frontendpath, $db) . "', + htmlpath = '" . Contenido_Security::escapeDB($htmlpath, $db) . "', + errsite_cat = '" . Contenido_Security::toInteger($errsite_cat) . "', + errsite_art = '" . Contenido_Security::toInteger($errsite_art) . "', + idclient = '" . Contenido_Security::toInteger($idclient) . "'"; + + $properties->setValue("idclient", $idclient, "backend", "clientimage", $clientlogo); + + // Copy the client template to the real location + $destPath = $frontendpath; + $sourcePath = $cfg['path']['contenido'] . $cfg['path']['frontendtemplate']; + + if ($copytemplate) { + if (!file_exists($destPath)) { + if (recursive_copy($sourcePath, $destPath)) { + $res = fopen($destPath . "config.php", "rb+"); + $res2 = fopen($destPath . "config.php.new", "ab+"); + if ($res && $res2) { + while (!feof($res)) { + $buffer = fgets($res, 4096); + $buffer = str_replace("!CLIENT!", $idclient, $buffer); + $buffer = str_replace("!PATH!", $cfg["path"]["contenido"], $buffer); + fwrite($res2, $buffer); + } + } else { + $notification->displayNotification("error", i18n("Couldn't write the file config.php.")); + } + + fclose($res); + fclose($res2); + + unlink($destPath . "config.php"); + rename($destPath . "config.php.new", $destPath . "config.php"); + $message = sprintf(i18n("Succesfully copied client-template to %s."), $destPath); + $notification->displayNotification("info", $message); + } else { + $message = sprintf(i18n("Cannot create directory %s . The client was created, but you have to copy the frontend-template yourself"), $destPath); + $notification->displayNotification("warning", $message); + } + } else { + $message = sprintf(i18n("The directory %s already exists. The client was created, but you have to copy the frontend-template yourself"), $destPath); + $notification->displayNotification("warning", $message); } } else { - $notification->displayNotification("error",i18n("Couldn't write the file config.php.")); + $message = sprintf(i18n("Client '%s' created."), $clientname); + $notification->displayNotification("info", $message); } - - fclose($res); - fclose($res2); - - unlink($destPath."config.php"); - rename($destPath."config.php.new", $destPath."config.php"); - $message = sprintf(i18n("Succesfully copied client-template to %s."),$destPath); - $notification->displayNotification("info", $message); + rereadClients(); } else { - $message = sprintf(i18n("Cannot create directory %s . The client was created, but you have to copy the frontend-template yourself"),$destPath); - $notification->displayNotification("warning", $message); - } - } else { - $message = sprintf(i18n("The directory %s already exists. The client was created, but you have to copy the frontend-template yourself"),$destPath); - $notification->displayNotification("warning", $message); - } - } else { - $message = sprintf(i18n("Client '%s' created."),$clientname); - $notification->displayNotification("info", $message); - } - rereadClients(); -} else { - $pathwithoutslash = $frontendpath; - if (substr($frontendpath, strlen($frontendpath)-1) != "/") - { - $frontendpath .= "/"; - } - - if (substr($htmlpath, strlen($htmlpath)-1) != "/") - { - $htmlpath .= "/"; - } - - if (($oldpath != $frontendpath) && ($oldpath != $pathwithoutslash)) - { - $notification->displayNotification("warning", i18n("You changed the client path. You might need to copy the frontend to the new location")); - - } - $sql = "UPDATE - ".$cfg["tab"]["clients"]." - SET - name = '".Contenido_Security::escapeDB($clientname, $db)."', - frontendpath = '".Contenido_Security::escapeDB($frontendpath, $db)."', - htmlpath = '".Contenido_Security::escapeDB($htmlpath, $db)."', - errsite_cat = '".Contenido_Security::toInteger($errsite_cat)."', - errsite_art = '".Contenido_Security::toInteger($errsite_art)."' - WHERE - idclient = '".Contenido_Security::toInteger($idclient)."'"; - } - - $db->query($sql); - $new = false; - rereadClients(); - - $properties->setValue("idclient", $idclient, "backend", "clientimage", $clientlogo); - - /* Clear the con_code table */ - $sql = "DELETE FROM ".$cfg["tab"]["code"]." WHERE idclient = '".Contenido_Security::toInteger($idclient)."'"; - $db->query($sql); - - $notification->displayNotification("info", i18n("Changes saved").$sNewNotification); - - $cApiClient = new cApiClient; - $cApiClient->loadByPrimaryKey($idclient); - - if(isset($_REQUEST["generate_xhtml"])) { - switch($_REQUEST["generate_xhtml"]) { - case "html": - $cApiClient->setProperty("generator", "xhtml", "false"); - $cApiClient->setProperty("generator", "html5", "false"); - break; - - case "xhtml": - $cApiClient->setProperty("generator", "xhtml", "true"); - $cApiClient->setProperty("generator", "html5", "false"); - break; - - case "html5": - $cApiClient->setProperty("generator", "xhtml", "false"); - $cApiClient->setProperty("generator", "html5", "true"); - break; + $pathwithoutslash = $frontendpath; + if (substr($frontendpath, strlen($frontendpath) - 1) != "/") { + $frontendpath .= "/"; + } - default: // do nothing - break; - } - } - } - - - $tpl->reset(); - - $sql = "SELECT + if (substr($htmlpath, strlen($htmlpath) - 1) != "/") { + $htmlpath .= "/"; + } + + if (($oldpath != $frontendpath) && ($oldpath != $pathwithoutslash)) { + $notification->displayNotification("warning", i18n("You changed the client path. You might need to copy the frontend to the new location")); + } + $sql = "UPDATE + " . $cfg["tab"]["clients"] . " + SET + name = '" . Contenido_Security::escapeDB($clientname, $db) . "', + frontendpath = '" . Contenido_Security::escapeDB($frontendpath, $db) . "', + htmlpath = '" . Contenido_Security::escapeDB($htmlpath, $db) . "', + errsite_cat = '" . Contenido_Security::toInteger($errsite_cat) . "', + errsite_art = '" . Contenido_Security::toInteger($errsite_art) . "' + WHERE + idclient = '" . Contenido_Security::toInteger($idclient) . "'"; + } + + $db->query($sql); + $new = false; + rereadClients(); + + $properties->setValue("idclient", $idclient, "backend", "clientimage", $clientlogo); + + /* Clear the con_code table */ + $sql = "DELETE FROM " . $cfg["tab"]["code"] . " WHERE idclient = '" . Contenido_Security::toInteger($idclient) . "'"; + $db->query($sql); + + $notification->displayNotification("info", i18n("Changes saved") . $sNewNotification); + + $cApiClient = new cApiClient; + $cApiClient->loadByPrimaryKey($idclient); + + if (isset($_REQUEST["generate_xhtml"])) { + switch ($_REQUEST["generate_xhtml"]) { + case "html": + $cApiClient->setProperty("generator", "xhtml", "false"); + $cApiClient->setProperty("generator", "html5", "false"); + break; + + case "xhtml": + $cApiClient->setProperty("generator", "xhtml", "true"); + $cApiClient->setProperty("generator", "html5", "false"); + break; + + case "html5": + $cApiClient->setProperty("generator", "xhtml", "false"); + $cApiClient->setProperty("generator", "html5", "true"); + break; + + default: // do nothing + break; + } + } + } + + + $tpl->reset(); + + $sql = "SELECT idclient, name, frontendpath, htmlpath, errsite_cat, errsite_art FROM - ".$cfg["tab"]["clients"]." + " . $cfg["tab"]["clients"] . " WHERE - idclient = '".Contenido_Security::toInteger($idclient)."'"; - - $db->query($sql); - - $db->next_record(); - - $form = '
- '.$sess->hidden_session().' - + idclient = '" . Contenido_Security::toInteger($idclient) . "'"; + + $db->query($sql); + + $db->next_record(); + + $form = ' + ' . $sess->hidden_session() . ' + - - - - '; - - $tpl->set('s', 'JAVASCRIPT', $javascript); - $tpl->set('s', 'FORM', $form); - $tpl->set('s', 'BORDERCOLOR', $cfg["color"]["table_border"]); - $tpl->set('s', 'BGCOLOR', $cfg["color"]["table_dark"]); - $tpl->set('s', 'SUBMITTEXT', i18n("Save changes")); - $tpl->set('s', 'CANCELTEXT', i18n("Discard changes")); - $tpl->set('s', 'CANCELLINK', $sess->url("main.php?area=$area&frame=4&idclient=$idclient")); - - if ($error) - { - echo $error; - } - - $tpl->set('d', 'CATNAME', i18n("Property")); - $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_header"]); - $tpl->set('d', 'BORDERCOLOR', $cfg["color"]["table_border"]); - $tpl->set('d', 'CATFIELD', i18n("Value")); - $tpl->set('d', 'BRDRT', 1); - $tpl->set('d', 'BRDRB', 0); - $tpl->set('d', 'FONT', 'textg_medium'); - $tpl->next(); - - $tpl->set('d', 'CATNAME', i18n("Client name")); - $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_dark"]); - $tpl->set('d', "BORDERCOLOR", $cfg["color"]["table_border"]); - $tpl->set('d', 'CATFIELD', formGenerateField ("text", "clientname", clHtmlSpecialChars($db->f("name")), 50, 255)); - $tpl->set('d', 'BRDRT', 0); - $tpl->set('d', 'BRDRB', 1); - $tpl->set('d', 'FONT', 'text_medium'); - $tpl->next(); - - $serverpath = $db->f("frontendpath"); - - if ($serverpath == "") - { - $serverpath = $cfg['path']['frontend']; - } - - $tpl->set('d', 'CATNAME', i18n("Server path")); - $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_light"]); - $tpl->set('d', "BORDERCOLOR", $cfg["color"]["table_border"]); - $tpl->set('d', 'CATFIELD', formGenerateField ("text", "frontendpath", clHtmlSpecialChars($serverpath), 50, 255)); - $tpl->set('d', 'BRDRT', 0); - $tpl->set('d', 'BRDRB', 1); - $tpl->set('d', 'FONT', 'text_medium'); - $tpl->next(); - - $htmlpath = $db->f("htmlpath"); - - if ($htmlpath == "") - { - $htmlpath = "http://"; - } - - $tpl->set('d', 'CATNAME', i18n("Web address")); - $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_dark"]); - $tpl->set('d', "BORDERCOLOR", $cfg["color"]["table_border"]); - $tpl->set('d', 'CATFIELD', formGenerateField ("text", "htmlpath", clHtmlSpecialChars($htmlpath), 50, 255)); - $tpl->set('d', 'BRDRT', 0); - $tpl->set('d', 'BRDRB', 1); - $tpl->set('d', 'FONT', 'text_medium'); - $tpl->next(); - - $tpl->set('d', 'CATNAME', i18n("Error page category")); - $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_light"]); - $tpl->set('d', "BORDERCOLOR", $cfg["color"]["table_border"]); - $tpl->set('d', 'CATFIELD', formGenerateField ("text", "errsite_cat", $db->f("errsite_cat"), 10, 10)); - $tpl->set('d', 'BRDRT', 0); - $tpl->set('d', 'BRDRB', 1); - $tpl->set('d', 'FONT', 'text_medium'); - $tpl->next(); - - $tpl->set('d', 'CATNAME', i18n("Error page article")); - $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_dark"]); - $tpl->set('d', "BORDERCOLOR", $cfg["color"]["table_border"]); - $tpl->set('d', 'CATFIELD', formGenerateField ("text", "errsite_art", $db->f("errsite_art"), 10, 10)); - $tpl->set('d', 'BRDRT', 0); - $tpl->set('d', 'BRDRB', 1); - $tpl->set('d', 'FONT', 'text_medium'); - $tpl->next(); - - $clientLogo = $properties->getValue ("idclient", $idclient, "backend", "clientimage"); - - $tpl->set('d', 'CATNAME', i18n("Client logo")); - $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_dark"]); - $tpl->set('d', "BORDERCOLOR", $cfg["color"]["table_border"]); - $tpl->set('d', 'CATFIELD', formGenerateField ("text", "clientlogo", $clientLogo, 50, 255)); - $tpl->set('d', 'BRDRT', 0); - $tpl->set('d', 'BRDRB', 1); - $tpl->set('d', 'FONT', 'text_medium'); - $tpl->next(); - - $aChoices = array("html" => i18n("HTML"), "xhtml" => i18n("XHTML"), "html5" => i18n("HTML5")); - - $oXHTMLSelect = new cHTMLSelectElement("generate_xhtml"); - $oXHTMLSelect->autoFill($aChoices); - - $cApiClient = new cApiClient; - $cApiClient->loadByPrimaryKey($idclient); - if ($cApiClient->getProperty("generator", "xhtml") == "true") { - $oXHTMLSelect->setDefault("xhtml"); - } else if ($cApiClient->getProperty("generator", "html5") == "true") { - $oXHTMLSelect->setDefault("html5"); - } else { - $oXHTMLSelect->setDefault("html"); - } - - $tpl->set('d', 'CATNAME', i18n("Generate")); - $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_light"]); - $tpl->set('d', 'BORDERCOLOR', $cfg["color"]["table_border"]); - $tpl->set('d', 'CATFIELD', $oXHTMLSelect->render()); - $tpl->set('d', 'BRDRT', 0); - $tpl->set('d', 'BRDRB', 1); - $tpl->set('d', 'FONT', 'text_medium'); - $tpl->next(); - - if ($new == true) - { - $tpl->set('d', 'CATNAME', i18n("Copy frontend template")); - $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_light"]); - $tpl->set('d', "BORDERCOLOR", $cfg["color"]["table_border"]); - $tpl->set('d', 'CATFIELD', formGenerateCheckbox ("copytemplate", "checked", 1)); - $tpl->next(); - } - + + + + '; + + $tpl->set('s', 'JAVASCRIPT', $javascript); + $tpl->set('s', 'FORM', $form); + $tpl->set('s', 'BORDERCOLOR', $cfg["color"]["table_border"]); + $tpl->set('s', 'BGCOLOR', $cfg["color"]["table_dark"]); + $tpl->set('s', 'SUBMITTEXT', i18n("Save changes")); + $tpl->set('s', 'CANCELTEXT', i18n("Discard changes")); + $tpl->set('s', 'CANCELLINK', $sess->url("main.php?area=$area&frame=4&idclient=$idclient")); + + if ($error) { + echo $error; + } + + $tpl->set('d', 'CATNAME', i18n("Property")); + $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_header"]); + $tpl->set('d', 'BORDERCOLOR', $cfg["color"]["table_border"]); + $tpl->set('d', 'CATFIELD', i18n("Value")); + $tpl->set('d', 'BRDRT', 1); + $tpl->set('d', 'BRDRB', 0); + $tpl->set('d', 'FONT', 'textg_medium'); + $tpl->next(); + + $tpl->set('d', 'CATNAME', i18n("Client name")); + $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_dark"]); + $tpl->set('d', "BORDERCOLOR", $cfg["color"]["table_border"]); + $tpl->set('d', 'CATFIELD', formGenerateField("text", "clientname", clHtmlSpecialChars($db->f("name")), 50, 255)); + $tpl->set('d', 'BRDRT', 0); + $tpl->set('d', 'BRDRB', 1); + $tpl->set('d', 'FONT', 'text_medium'); + $tpl->next(); + + $serverpath = $db->f("frontendpath"); + + if ($serverpath == "") { + $serverpath = $cfg['path']['frontend']; + } + + $tpl->set('d', 'CATNAME', i18n("Server path")); + $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_light"]); + $tpl->set('d', "BORDERCOLOR", $cfg["color"]["table_border"]); + $tpl->set('d', 'CATFIELD', formGenerateField("text", "frontendpath", clHtmlSpecialChars($serverpath), 50, 255)); + $tpl->set('d', 'BRDRT', 0); + $tpl->set('d', 'BRDRB', 1); + $tpl->set('d', 'FONT', 'text_medium'); + $tpl->next(); + + $htmlpath = $db->f("htmlpath"); + + if ($htmlpath == "") { + $htmlpath = "http://"; + } + + $tpl->set('d', 'CATNAME', i18n("Web address")); + $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_dark"]); + $tpl->set('d', "BORDERCOLOR", $cfg["color"]["table_border"]); + $tpl->set('d', 'CATFIELD', formGenerateField("text", "htmlpath", clHtmlSpecialChars($htmlpath), 50, 255)); + $tpl->set('d', 'BRDRT', 0); + $tpl->set('d', 'BRDRB', 1); + $tpl->set('d', 'FONT', 'text_medium'); + $tpl->next(); + + $tpl->set('d', 'CATNAME', i18n("Error page category")); + $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_light"]); + $tpl->set('d', "BORDERCOLOR", $cfg["color"]["table_border"]); + $tpl->set('d', 'CATFIELD', formGenerateField("text", "errsite_cat", $db->f("errsite_cat"), 10, 10)); + $tpl->set('d', 'BRDRT', 0); + $tpl->set('d', 'BRDRB', 1); + $tpl->set('d', 'FONT', 'text_medium'); + $tpl->next(); + + $tpl->set('d', 'CATNAME', i18n("Error page article")); + $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_dark"]); + $tpl->set('d', "BORDERCOLOR", $cfg["color"]["table_border"]); + $tpl->set('d', 'CATFIELD', formGenerateField("text", "errsite_art", $db->f("errsite_art"), 10, 10)); + $tpl->set('d', 'BRDRT', 0); + $tpl->set('d', 'BRDRB', 1); + $tpl->set('d', 'FONT', 'text_medium'); + $tpl->next(); + + $clientLogo = $properties->getValue("idclient", $idclient, "backend", "clientimage"); + + $tpl->set('d', 'CATNAME', i18n("Client logo")); + $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_dark"]); + $tpl->set('d', "BORDERCOLOR", $cfg["color"]["table_border"]); + $tpl->set('d', 'CATFIELD', formGenerateField("text", "clientlogo", $clientLogo, 50, 255)); + $tpl->set('d', 'BRDRT', 0); + $tpl->set('d', 'BRDRB', 1); + $tpl->set('d', 'FONT', 'text_medium'); + $tpl->next(); + + $aChoices = array("html" => i18n("HTML"), "xhtml" => i18n("XHTML"), "html5" => i18n("HTML5")); + + $oXHTMLSelect = new cHTMLSelectElement("generate_xhtml"); + $oXHTMLSelect->autoFill($aChoices); + + $cApiClient = new cApiClient; + $cApiClient->loadByPrimaryKey($idclient); + var_dump($cApiClient->getProperty("generator", "xhtml")); + if ($cApiClient->getProperty("generator", "xhtml") === TRUE) { + $oXHTMLSelect->setDefault("xhtml"); + } else if ($cApiClient->getProperty("generator", "html5") === TRUE) { + $oXHTMLSelect->setDefault("html5"); + } else { + $oXHTMLSelect->setDefault("html"); + } + + $tpl->set('d', 'CATNAME', i18n("Generate")); + $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_light"]); + $tpl->set('d', 'BORDERCOLOR', $cfg["color"]["table_border"]); + $tpl->set('d', 'CATFIELD', $oXHTMLSelect->render()); + $tpl->set('d', 'BRDRT', 0); + $tpl->set('d', 'BRDRB', 1); + $tpl->set('d', 'FONT', 'text_medium'); + $tpl->next(); + + if ($new == true) { + $tpl->set('d', 'CATNAME', i18n("Copy frontend template")); + $tpl->set('d', 'BGCOLOR', $cfg["color"]["table_light"]); + $tpl->set('d', "BORDERCOLOR", $cfg["color"]["table_border"]); + $tpl->set('d', 'CATFIELD', formGenerateCheckbox("copytemplate", "checked", 1)); + $tpl->next(); + } + $tpl->set('s', 'IDCLIENT', $idclient); - - # Generate template - $tpl->generate($cfg['path']['templates'] . $cfg['templates']['client_edit']); - } + + # Generate template + $tpl->generate($cfg['path']['templates'] . $cfg['templates']['client_edit']); + } } ?> diff --git a/trunk/conlite/plugins/content_allocation/classes/class.content_allocation.php b/trunk/conlite/plugins/content_allocation/classes/class.content_allocation.php index 05b4a6e..d0c1dc3 100644 --- a/trunk/conlite/plugins/content_allocation/classes/class.content_allocation.php +++ b/trunk/conlite/plugins/content_allocation/classes/class.content_allocation.php @@ -1,4 +1,5 @@ bDebug (if true print debug information) - */ - function pApiContentAllocation () { - 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($sql); - - $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 "";} # @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 "";} # @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 = ' + 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($sql); + + $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 ""; + } # @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 ""; + } # @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 + ' . $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 + ' . $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.' '; + ' . $sLimit . ' '; - if ($this->bDebug) {print "";} + if ($this->bDebug) { + print ""; + } - return $sql; - } + return $sql; + } } diff --git a/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_article.php b/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_article.php index 0459e5b..f204f59 100644 --- a/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_article.php +++ b/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_article.php @@ -1,4 +1,5 @@ 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 = ''; - - $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'] = ''; - - 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; - } + 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 = ''; + + $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'] = ''; + + 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")); + + if ($return === true) { + return $this->tpl->generate($this->template, true); + } else { + $this->tpl->generate($this->template); + } + } - $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")); - - if ($return === true) { - return $this->tpl->generate($this->template, true); - } else { - $this->tpl->generate($this->template); - } - } } ?> \ No newline at end of file diff --git a/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_complexlist.php b/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_complexlist.php index 9c37eea..cbfb096 100644 --- a/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_complexlist.php +++ b/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_complexlist.php @@ -1,4 +1,5 @@ idSetter; - $this->idSetter = false; - - $result = ''; - - $even = true; + public function __construct($uuid) { + global $cfg; + parent::pApiTree($uuid); + } - $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 = ''; - $item = "\n
  • " . $checkbox . " " . $item_tmp['name']; - - $result .= $item; - - if ($item_tmp['children']) { - $children = $this->_buildRenderTree($item_tmp['children']); - $result .= "\n"; - } - } - - function setChecked($load) { - $this->load = $load; - } - - function renderTree ($return = true) { - $tree = $this->fetchTree(); - if ($tree === false) { - return false; - } + $oldIdSetter = $this->idSetter; + $this->idSetter = false; - $tree = $this->_buildRenderTree($tree); - if ($return === true) { - return $tree; - } - } + $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 = ''; + $item = "\n
  • " . $checkbox . " " . $item_tmp['name']; + + $result .= $item; + + if ($item_tmp['children']) { + $children = $this->_buildRenderTree($item_tmp['children']); + $result .= "\n"; + } + } + + 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; + } + } } - ?> \ No newline at end of file diff --git a/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_selectbox.php b/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_selectbox.php index 5305198..1f4459b 100644 --- a/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_selectbox.php +++ b/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_selectbox.php @@ -1,15 +1,9 @@ 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 .= ''; - - if ($item_tmp['children']) { - $children = $this->_buildRenderTree($item_tmp['children']); - $result .= $children; - } - } + public function __construct($uuid) { + global $cfg; - return $result; - } - - function setChecked($load) { - return false; - } - - /** - * - * @modified 27.10.2005 $bUseTreeStatus = false (content allocation tree in selectbox is always expanded) - */ - function renderTree ($return = true, $parentId = false, $bUseTreeStatus = false) { - - $tree = $this->fetchTree($parentId, 0, $bUseTreeStatus); - - if ($tree === false) { - return false; - } + parent::pApiTree($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 .= ''; + + 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; + } + } - $tree = $this->_buildRenderTree($tree); - - if ($return === true) { - return $tree; - } else { - echo $tree; - } - } } ?> \ No newline at end of file diff --git a/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_tree.php b/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_tree.php index a3e730f..01f0c4c 100644 --- a/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_tree.php +++ b/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_tree.php @@ -1,4 +1,5 @@ db = new DB_ConLite; - $this->table = $cfg['tab']; - $this->lang = $lang; - $this->client = $client; - $this->bDebug = false; + $this->db = new DB_ConLite; + $this->table = $cfg['tab']; + $this->lang = $lang; + $this->client = $client; + $this->bDebug = false; - $this->uuid = $uuid; + $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 + $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"; + 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); + } - $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'] - ); + $sql .= " ORDER BY sortorder ASC"; - 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 + $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 ($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 ($this->bDebug) {print "";} + $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')); - - if ($this->bDebug) {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; - } - } + if ($this->bDebug) { + print ""; + } - 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 () {} + $this->db->query($sql); - function fetchLevel ($parentId = false, $showOffline = false) { - // fetch current lang category - $sql = "SELECT + $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 ""; + } + + 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); - } + LEFT JOIN " . $this->table['pica_lang'] . " as treelang USING (idpica_alloc)"; - if ($showOffline === false) { - $sql .= " AND treelang.online = 1"; - } + 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 ($showOffline === false) { + $sql .= " AND treelang.online = 1"; + } - $this->db->query($sql); + $sql .= " ORDER BY sortorder ASC"; - $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'] . " + $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); + $this->db->query($sql); - $sql = "INSERT INTO " . $this->table['pica_lang'] . " + $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); + $this->db->query($sql); + } else { // update + $treeItem['name'] = $this->_inFilter($treeItem['name']); - } 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); + $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']) . " + 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) . " + } 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']; - } - } + $this->db->query($sql); + } - $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 + function itemMoveUp($idpica_alloc) { + $treeItem = $this->fetchItem($idpica_alloc); + $treeItem_old = $treeItem; + $treeItem['sortorder'] --; - $aResult['name'] = $this->_outFilter($oDB->f('name')); - $aResult['idlang'] = $oDB->f('idlang'); - $aResult['online'] = $oDB->f('online'); + 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; + } - } 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; - } } ?> \ No newline at end of file diff --git a/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_treeview.php b/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_treeview.php index f434910..2ebc4ab 100644 --- a/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_treeview.php +++ b/trunk/conlite/plugins/content_allocation/classes/class.content_allocation_treeview.php @@ -1,4 +1,5 @@ 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'] = ' + /** + * + */ + var $template = ''; + + /** + * + */ + public function __construct($uuid) { + global $cfg; + + parent::pApiTree($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'] = ' - - - - + + + + - + - + @@ -97,73 +96,73 @@ class pApiContentAllocationTreeView extends pApiTree { controller.focus(); function fieldCheck() { if (controller.value == "") { - alert("'.i18n("Please enter a category name").'"); + alert("' . i18n("Please enter a category name") . '"); controller.focus(); return false; } return true; } '; - } 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 = ''; + } 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 = ''; } else { - $expandCollapseImg = 'images/spacer.gif'; - $expandCollapse = ''; - } - - $item['ITEMNAME'] = $expandCollapse . ' ' . $item_tmp['name']; - } - - $item['ITEMINDENT'] = $item_tmp['level'] * 15 + 3; - $item['ACTION_CREATE'] = ''.i18n('; - - $item['ACTION_RENAME'] = ''.i18n('; - $item['ACTION_MOVE_UP'] = (count($result) >= 1) ? ''.i18n(' : ''; - $item['ACTION_MOVE_DOWN'] = (count($result) >= 1) ? ''.i18n(' : ''; - $item['ACTION_MOVE_DOWN'] = ''; - - if ($item_tmp['online'] == 1) { // set offline - $item['ACTION_ONOFFLINE'] = ''.i18n('; - } else { - $item['ACTION_ONOFFLINE'] = ''.i18n('; - } - - if ($item_tmp['children']) { - $item['ACTION_DELETE'] = ''.i18n('; - } else { - $item['ACTION_DELETE'] = '
    '.str_replace("'", "\'", $item_tmp['name']).'","deleteCategory('.$item_tmp['idpica_alloc'].')");">'.i18n(
    '; - } - - 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'] = ' + $expandCollapseImg = 'images/spacer.gif'; + $expandCollapse = ''; + } + + $item['ITEMNAME'] = $expandCollapse . ' ' . $item_tmp['name']; + } + + $item['ITEMINDENT'] = $item_tmp['level'] * 15 + 3; + $item['ACTION_CREATE'] = '' . i18n('; + + $item['ACTION_RENAME'] = '' . i18n('; + $item['ACTION_MOVE_UP'] = (count($result) >= 1) ? '' . i18n(' : ''; + $item['ACTION_MOVE_DOWN'] = (count($result) >= 1) ? '' . i18n(' : ''; + $item['ACTION_MOVE_DOWN'] = ''; + + if ($item_tmp['online'] == 1) { // set offline + $item['ACTION_ONOFFLINE'] = '' . i18n('; + } else { + $item['ACTION_ONOFFLINE'] = '' . i18n('; + } + + if ($item_tmp['children']) { + $item['ACTION_DELETE'] = '' . i18n('; + } else { + $item['ACTION_DELETE'] = '
    ' . str_replace("'", "\'", $item_tmp['name']) . '","deleteCategory(' . $item_tmp['idpica_alloc'] . ')");">' . i18n(
    '; + } + + 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'] = '
      - +
    - - - - + + + + - + @@ -173,62 +172,63 @@ class pApiContentAllocationTreeView extends pApiTree { controller.focus(); function fieldCheck() { if (controller.value == "") { - alert("'.i18n("Please enter a category name").'"); + alert("' . i18n("Please enter a category name") . '"); controller.focus(); return false; } return true; } '; - $item['ITEMINDENT'] = ($item_tmp['level'] + 1) * 15; - $item['ACTION_CREATE'] = ''; - $item['ACTION_RENAME'] = ''; - $item['ACTION_MOVE_UP'] = ''; - $item['ACTION_MOVE_DOWN'] = ''; - $item['ACTION_MOVE_DOWN'] = ''; - $item['ACTION_DELETE'] = ''; - $item['ACTION_ONOFFLINE'] = ''; - - 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; - } + $item['ITEMINDENT'] = ($item_tmp['level'] + 1) * 15; + $item['ACTION_CREATE'] = ''; + $item['ACTION_RENAME'] = ''; + $item['ACTION_MOVE_UP'] = ''; + $item['ACTION_MOVE_DOWN'] = ''; + $item['ACTION_MOVE_DOWN'] = ''; + $item['ACTION_DELETE'] = ''; + $item['ACTION_ONOFFLINE'] = ''; + + 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")); + $this->tpl->set('s', 'ACTIONS', i18n("Actions")); + + if ($return === true) { + return $this->tpl->generate($this->template, true); + } else { + $this->tpl->generate($this->template); + } + } - $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")); - $this->tpl->set('s', 'ACTIONS', i18n("Actions")); - - if ($return === true) { - return $this->tpl->generate($this->template, true); - } else { - $this->tpl->generate($this->template); - } - } } ?> \ No newline at end of file diff --git a/trunk/conlite/plugins/repository/custom/FrontendNavigation.php b/trunk/conlite/plugins/repository/custom/FrontendNavigation.php index d966977..176edf8 100644 --- a/trunk/conlite/plugins/repository/custom/FrontendNavigation.php +++ b/trunk/conlite/plugins/repository/custom/FrontendNavigation.php @@ -1,4 +1,5 @@ _bDebug = false; - $this->db = &$db; - $this->cfgClient = &$cfgClient; - $this->cfg = &$cfg; - $this->client = &$client; - $this->lang = &$lang; - } - - /** - * Get child categories by given parent category - */ - function getSubCategories($iParentCategory) - { - if (!is_int((int)$iParentCategory) AND $iParentCategory < 0 AND !is_array($this->cfg) AND !isset($this->cfg['tab']) AND !is_int((int)$this->client) AND $this->client < 0 AND !is_int((int)$this->lang) AND $this->lang < 0) - { - return array(); - } - - $sql = "SELECT + /** + * Constructor + */ + public function __construct($db, $cfg, $cfgClient, $client, $lang) { + $this->_bDebug = false; + $this->db = &$db; + $this->cfgClient = &$cfgClient; + $this->cfg = &$cfg; + $this->client = &$client; + $this->lang = &$lang; + } + + /** + * Get child categories by given parent category + */ + public function getSubCategories($iParentCategory) { + if (!is_int((int) $iParentCategory) AND $iParentCategory < 0 AND ! is_array($this->cfg) AND ! isset($this->cfg['tab']) AND ! is_int((int) $this->client) AND $this->client < 0 AND ! is_int((int) $this->lang) AND $this->lang < 0) { + return array(); + } + + $sql = "SELECT A.idcat FROM - ".$this->cfg["tab"]["cat_tree"]." AS A, - ".$this->cfg["tab"]["cat"]." AS B, - ".$this->cfg["tab"]["cat_lang"]." AS C + " . $this->cfg["tab"]["cat_tree"] . " AS A, + " . $this->cfg["tab"]["cat"] . " AS B, + " . $this->cfg["tab"]["cat_lang"] . " AS C WHERE A.idcat = B.idcat AND B.idcat = C.idcat AND - B.idclient = ".$this->client." AND - C.idlang = ".$this->lang." AND + B.idclient = " . $this->client . " AND + C.idlang = " . $this->lang . " AND C.visible = 1 AND C.public = 1 AND - B.parentid = ".$iParentCategory." + B.parentid = " . $iParentCategory . " ORDER BY A.idtree "; - - if ($this->_bDebug) {echo "
    "; print_r($sql); echo "
    ";} - - $this->db->query($sql); - - $navigation = array(); - while ( $this->db->next_record() ) - { - $navigation[] = $this->db->f("idcat"); - }# end while - return $navigation; - } - - /** - * Check if child categories of a given parent category exist - */ - function hasChildren($iParentCategory) - { - if (!is_int((int)$iParentCategory) AND $iParentCategory < 0 AND !is_array($this->cfg) AND !isset($this->cfg['tab']) AND !is_int((int)$this->client) AND $this->client < 0 AND !is_int((int)$this->lang) AND $this->lang < 0) - { - return false; - } - - $sql = "SELECT + if ($this->_bDebug) { + echo "
    ";
    +            print_r($sql);
    +            echo "
    "; + } + + $this->db->query($sql); + + $navigation = array(); + while ($this->db->next_record()) { + $navigation[] = $this->db->f("idcat"); + }# end while + + return $navigation; + } + + /** + * Check if child categories of a given parent category exist + */ + public function hasChildren($iParentCategory) { + if (!is_int((int) $iParentCategory) AND $iParentCategory < 0 AND ! is_array($this->cfg) AND ! isset($this->cfg['tab']) AND ! is_int((int) $this->client) AND $this->client < 0 AND ! is_int((int) $this->lang) AND $this->lang < 0) { + return false; + } + + $sql = "SELECT B.idcat FROM - ".$this->cfg["tab"]["cat"]." AS B, - ".$this->cfg["tab"]["cat_lang"]." AS C + " . $this->cfg["tab"]["cat"] . " AS B, + " . $this->cfg["tab"]["cat_lang"] . " AS C WHERE B.idcat = C.idcat AND - B.idclient = ".$this->client." AND - C.idlang = ".$this->lang." AND + B.idclient = " . $this->client . " AND + C.idlang = " . $this->lang . " AND C.visible = 1 AND C.public = 1 AND - B.parentid = ".$iParentCategory." "; - - if ($this->_bDebug) {echo "
    "; print_r($sql); echo "
    ";} - - $this->db->query($sql); - - if ( $this->db->next_record() ) - { - return true; - }else - { - return false; - } - } - - /** - * Get direct successor of a given category - * Note: does not work if direct successor (with preid 0) is not visible - * or not public - */ - function getSuccessor($iCategory) - { - if (!is_int((int)$iCategory) AND $iCategory < 0 AND !is_array($this->cfg) AND !isset($this->cfg['tab']) AND !is_int((int)$this->client) AND $this->client < 0 AND !is_int((int)$this->lang) AND $this->lang < 0) - { - return -1; - } - - $sql = "SELECT + B.parentid = " . $iParentCategory . " "; + + if ($this->_bDebug) { + echo "
    ";
    +            print_r($sql);
    +            echo "
    "; + } + + $this->db->query($sql); + + if ($this->db->next_record()) { + return true; + } else { + return false; + } + } + + /** + * Get direct successor of a given category + * Note: does not work if direct successor (with preid 0) is not visible + * or not public + */ + public function getSuccessor($iCategory) { + if (!is_int((int) $iCategory) AND $iCategory < 0 AND ! is_array($this->cfg) AND ! isset($this->cfg['tab']) AND ! is_int((int) $this->client) AND $this->client < 0 AND ! is_int((int) $this->lang) AND $this->lang < 0) { + return -1; + } + + $sql = "SELECT B.idcat FROM - ".$this->cfg["tab"]["cat"]." AS B, - ".$this->cfg["tab"]["cat_lang"]." AS C + " . $this->cfg["tab"]["cat"] . " AS B, + " . $this->cfg["tab"]["cat_lang"] . " AS C WHERE B.idcat = C.idcat AND - B.idclient = ".$this->client." AND - C.idlang = ".$this->lang." AND + B.idclient = " . $this->client . " AND + C.idlang = " . $this->lang . " AND C.visible = 1 AND C.public = 1 AND B.preid = 0 AND - B.parentid = ".$iCategory." "; - - if ($this->_bDebug) {echo "
    "; print_r($sql); echo "
    ";} - - $this->db->query($sql); - - if ( $this->db->next_record() ) - { - return $this->db->f("idcat"); - }else - { - return -1; - } - } - - /** - * Check if a given category has a direct successor - */ - function hasSuccessor($iCategory) - { - if (!is_int((int)$iCategory) AND $iCategory < 0 AND !is_array($this->cfg) AND !isset($this->cfg['tab']) AND !is_int((int)$this->client) AND $this->client < 0 AND !is_int((int)$this->lang) AND $this->lang < 0) - { - return false; - } - - $sql = "SELECT + B.parentid = " . $iCategory . " "; + + if ($this->_bDebug) { + echo "
    ";
    +            print_r($sql);
    +            echo "
    "; + } + + $this->db->query($sql); + + if ($this->db->next_record()) { + return $this->db->f("idcat"); + } else { + return -1; + } + } + + /** + * Check if a given category has a direct successor + */ + function hasSuccessor($iCategory) { + if (!is_int((int) $iCategory) AND $iCategory < 0 AND ! is_array($this->cfg) AND ! isset($this->cfg['tab']) AND ! is_int((int) $this->client) AND $this->client < 0 AND ! is_int((int) $this->lang) AND $this->lang < 0) { + return false; + } + + $sql = "SELECT B.idcat FROM - ".$this->cfg["tab"]["cat"]." AS B, - ".$this->cfg["tab"]["cat_lang"]." AS C + " . $this->cfg["tab"]["cat"] . " AS B, + " . $this->cfg["tab"]["cat_lang"] . " AS C WHERE B.idcat = C.idcat AND - B.idclient = ".$this->client." AND - C.idlang = ".$this->lang." AND + B.idclient = " . $this->client . " AND + C.idlang = " . $this->lang . " AND C.visible = 1 AND C.public = 1 AND B.preid = 0 AND - B.parentid = ".$iCategory." "; - - if ($this->_bDebug) {echo "
    "; print_r($sql); echo "
    ";} - - $this->db->query($sql); - - if ( $this->db->next_record() ) - { - return true; - }else - { - return false; - } - } - - - /** - * Get category name - */ - function getCategoryName($cat_id) - { - if (!is_int((int)$cat_id) AND $cat_id < 0 AND !is_array($this->cfg) AND !isset($this->cfg['tab']) AND !is_int((int)$this->client) AND $this->client < 0 AND !is_int((int)$this->lang) AND $this->lang < 0) - { - return ''; - } - - $sql = "SELECT + B.parentid = " . $iCategory . " "; + + if ($this->_bDebug) { + echo "
    ";
    +            print_r($sql);
    +            echo "
    "; + } + + $this->db->query($sql); + + if ($this->db->next_record()) { + return true; + } else { + return false; + } + } + + /** + * Get category name + */ + function getCategoryName($cat_id) { + if (!is_int((int) $cat_id) AND $cat_id < 0 AND ! is_array($this->cfg) AND ! isset($this->cfg['tab']) AND ! is_int((int) $this->client) AND $this->client < 0 AND ! is_int((int) $this->lang) AND $this->lang < 0) { + return ''; + } + + $sql = "SELECT B.name FROM - ".$this->cfg["tab"]["cat"]." AS A, - ".$this->cfg["tab"]["cat_lang"]." AS B + " . $this->cfg["tab"]["cat"] . " AS A, + " . $this->cfg["tab"]["cat_lang"] . " AS B WHERE A.idcat = B.idcat AND A.idcat = $cat_id AND - A.idclient = ".$this->client." AND - B.idlang = ".$this->lang." + A.idclient = " . $this->client . " AND + B.idlang = " . $this->lang . " "; - - if ($this->_bDebug) {echo "
    "; print_r($sql); echo "
    ";} - - $this->db->query($sql); - - if ($this->db->next_record()) - { - return $this->db->f("name"); - }else - { - return ''; - } - } - - /** - * Get category urlname - */ - function getCategoryURLName($cat_id) - { - if (!is_int((int)$cat_id) AND $cat_id < 0 AND !is_array($this->cfg) AND !isset($this->cfg['tab']) AND !is_int((int)$this->client) AND $this->client < 0 AND !is_int((int)$this->lang) AND $this->lang < 0) - { - return ''; - } - - $sql = "SELECT + + if ($this->_bDebug) { + echo "
    ";
    +            print_r($sql);
    +            echo "
    "; + } + + $this->db->query($sql); + + if ($this->db->next_record()) { + return $this->db->f("name"); + } else { + return ''; + } + } + + /** + * Get category urlname + */ + function getCategoryURLName($cat_id) { + if (!is_int((int) $cat_id) AND $cat_id < 0 AND ! is_array($this->cfg) AND ! isset($this->cfg['tab']) AND ! is_int((int) $this->client) AND $this->client < 0 AND ! is_int((int) $this->lang) AND $this->lang < 0) { + return ''; + } + + $sql = "SELECT B.urlname FROM - ".$this->cfg["tab"]["cat"]." AS A, - ".$this->cfg["tab"]["cat_lang"]." AS B + " . $this->cfg["tab"]["cat"] . " AS A, + " . $this->cfg["tab"]["cat_lang"] . " AS B WHERE A.idcat = B.idcat AND A.idcat = $cat_id AND - A.idclient = ".$this->client." AND - B.idlang = ".$this->lang." + A.idclient = " . $this->client . " AND + B.idlang = " . $this->lang . " "; - - if ($this->_bDebug) {echo "
    "; print_r($sql); echo "
    ";} - - $this->db->query($sql); - - if ($this->db->next_record()) - { - return $this->db->f("urlname"); - }else - { - return ''; - } - } - - /** - * Check if category is visible - */ - function isVisible($cat_id) - { - if (!is_int((int)$cat_id) AND $cat_id < 0 AND !is_array($this->cfg) AND !isset($this->cfg['tab']) AND !is_int((int)$this->client) AND $this->client < 0 AND !is_int((int)$this->lang) AND $this->lang < 0) - { - return false; - } - - $sql = "SELECT + + if ($this->_bDebug) { + echo "
    ";
    +            print_r($sql);
    +            echo "
    "; + } + + $this->db->query($sql); + + if ($this->db->next_record()) { + return $this->db->f("urlname"); + } else { + return ''; + } + } + + /** + * Check if category is visible + */ + function isVisible($cat_id) { + if (!is_int((int) $cat_id) AND $cat_id < 0 AND ! is_array($this->cfg) AND ! isset($this->cfg['tab']) AND ! is_int((int) $this->client) AND $this->client < 0 AND ! is_int((int) $this->lang) AND $this->lang < 0) { + return false; + } + + $sql = "SELECT B.visible FROM - ".$this->cfg["tab"]["cat"]." AS A, - ".$this->cfg["tab"]["cat_lang"]." AS B + " . $this->cfg["tab"]["cat"] . " AS A, + " . $this->cfg["tab"]["cat_lang"] . " AS B WHERE A.idcat = B.idcat AND A.idcat = $cat_id AND - A.idclient = ".$this->client." AND - B.idlang = ".$this->lang." + A.idclient = " . $this->client . " AND + B.idlang = " . $this->lang . " "; - - if ($this->_bDebug) {echo "
    "; print_r($sql); echo "
    ";} - - $this->db->query($sql); - $this->db->next_record(); - - if ($this->db->f("visible") == 1) - { - return true; - }else - { - return false; - } - } - - /** - * Check if category is public - */ - function isPublic($cat_id) - { - if (!is_int((int)$cat_id) AND $cat_id < 0 AND !is_array($this->cfg) AND !isset($this->cfg['tab']) AND !is_int((int)$this->client) AND $this->client < 0 AND !is_int((int)$this->lang) AND $this->lang < 0) - { - return false; - } - - $sql = "SELECT + + if ($this->_bDebug) { + echo "
    ";
    +            print_r($sql);
    +            echo "
    "; + } + + $this->db->query($sql); + $this->db->next_record(); + + if ($this->db->f("visible") == 1) { + return true; + } else { + return false; + } + } + + /** + * Check if category is public + */ + function isPublic($cat_id) { + if (!is_int((int) $cat_id) AND $cat_id < 0 AND ! is_array($this->cfg) AND ! isset($this->cfg['tab']) AND ! is_int((int) $this->client) AND $this->client < 0 AND ! is_int((int) $this->lang) AND $this->lang < 0) { + return false; + } + + $sql = "SELECT B.public FROM - ".$this->cfg["tab"]["cat"]." AS A, - ".$this->cfg["tab"]["cat_lang"]." AS B + " . $this->cfg["tab"]["cat"] . " AS A, + " . $this->cfg["tab"]["cat_lang"] . " AS B WHERE A.idcat = B.idcat AND A.idcat = $cat_id AND - A.idclient = ".$this->client." AND - B.idlang = ".$this->lang." + A.idclient = " . $this->client . " AND + B.idlang = " . $this->lang . " "; - - if ($this->_bDebug) {echo "
    "; print_r($sql); echo "
    ";} - - $this->db->query($sql); - $this->db->next_record(); - - if ($this->db->f("public") == 1) - { - return true; - }else - { - return false; - } - } - - /** - * Return true if $parentid is parent of $catid - */ - function isParent($parentid, $catid) - { - if (!is_int((int)$parentid) AND $parentid < 0 AND !is_int((int)$catid) AND $catid < 0 AND !is_array($this->cfg) AND !isset($this->cfg['tab']) AND !is_int((int)$this->client) AND $this->client < 0 AND !is_int((int)$this->lang) AND $this->lang < 0) - { - return false; - } - - $sql = "SELECT + + if ($this->_bDebug) { + echo "
    ";
    +            print_r($sql);
    +            echo "
    "; + } + + $this->db->query($sql); + $this->db->next_record(); + + if ($this->db->f("public") == 1) { + return true; + } else { + return false; + } + } + + /** + * Return true if $parentid is parent of $catid + */ + function isParent($parentid, $catid) { + if (!is_int((int) $parentid) AND $parentid < 0 AND ! is_int((int) $catid) AND $catid < 0 AND ! is_array($this->cfg) AND ! isset($this->cfg['tab']) AND ! is_int((int) $this->client) AND $this->client < 0 AND ! is_int((int) $this->lang) AND $this->lang < 0) { + return false; + } + + $sql = "SELECT a.parentid FROM - ".$this->cfg["tab"]["cat"]." AS a, - ".$this->cfg["tab"]["cat_lang"]." AS b + " . $this->cfg["tab"]["cat"] . " AS a, + " . $this->cfg["tab"]["cat_lang"] . " AS b WHERE - a.idclient = ".$this->client." AND - b.idlang = ".$this->lang." AND + a.idclient = " . $this->client . " AND + b.idlang = " . $this->lang . " AND a.idcat = b.idcat AND - a.idcat = ".$catid." "; - - $this->db->query($sql); - $this->db->next_record(); - - if ($this->_bDebug) {echo "
    "; print_r($sql); echo "
    ";} - - $pre = $this->db->f("parentid"); - - if($parentid == $pre) - { - return true; - }else - { - return false; - } - } - - /** - * Get parent id of a category - */ - function getParent($preid) - { - if (!is_int((int)$preid) AND $preid < 0 AND !is_array($this->cfg) AND !isset($this->cfg['tab']) AND !is_int((int)$this->client) AND $this->client < 0 AND !is_int((int)$this->lang) AND $this->lang < 0) - { - return -1; - } - - $sql = "SELECT + a.idcat = " . $catid . " "; + + $this->db->query($sql); + $this->db->next_record(); + + if ($this->_bDebug) { + echo "
    ";
    +            print_r($sql);
    +            echo "
    "; + } + + $pre = $this->db->f("parentid"); + + if ($parentid == $pre) { + return true; + } else { + return false; + } + } + + /** + * Get parent id of a category + */ + function getParent($preid) { + if (!is_int((int) $preid) AND $preid < 0 AND ! is_array($this->cfg) AND ! isset($this->cfg['tab']) AND ! is_int((int) $this->client) AND $this->client < 0 AND ! is_int((int) $this->lang) AND $this->lang < 0) { + return -1; + } + + $sql = "SELECT a.parentid FROM - ".$this->cfg["tab"]["cat"]." AS a, - ".$this->cfg["tab"]["cat_lang"]." AS b + " . $this->cfg["tab"]["cat"] . " AS a, + " . $this->cfg["tab"]["cat_lang"] . " AS b WHERE - a.idclient = ".$this->client." AND - b.idlang = ".$this->lang." AND + a.idclient = " . $this->client . " AND + b.idlang = " . $this->lang . " AND a.idcat = b.idcat AND - a.idcat = ".$preid." "; - - $this->db->query($sql); - - if ($this->_bDebug) {echo "
    "; print_r($sql); echo "
    ";} - - if ($this->db->next_record()) - { - return $this->db->f("parentid"); - }else - { - return -1; - } - } - - /** - * Check if a category has a parent - */ - function hasParent($preid) - { - if (!is_int((int)$preid) AND $preid < 0 AND !is_array($this->cfg) AND !isset($this->cfg['tab']) AND !is_int((int)$this->client) AND $this->client < 0 AND !is_int((int)$this->lang) AND $this->lang < 0) - { - return false; - } - - $sql = "SELECT + a.idcat = " . $preid . " "; + + $this->db->query($sql); + + if ($this->_bDebug) { + echo "
    ";
    +            print_r($sql);
    +            echo "
    "; + } + + if ($this->db->next_record()) { + return $this->db->f("parentid"); + } else { + return -1; + } + } + + /** + * Check if a category has a parent + */ + function hasParent($preid) { + if (!is_int((int) $preid) AND $preid < 0 AND ! is_array($this->cfg) AND ! isset($this->cfg['tab']) AND ! is_int((int) $this->client) AND $this->client < 0 AND ! is_int((int) $this->lang) AND $this->lang < 0) { + return false; + } + + $sql = "SELECT a.parentid FROM - ".$this->cfg["tab"]["cat"]." AS a, - ".$this->cfg["tab"]["cat_lang"]." AS b + " . $this->cfg["tab"]["cat"] . " AS a, + " . $this->cfg["tab"]["cat_lang"] . " AS b WHERE - a.idclient = ".$this->client." AND - b.idlang = ".$this->lang." AND + a.idclient = " . $this->client . " AND + b.idlang = " . $this->lang . " AND a.idcat = b.idcat AND - a.idcat = ".$preid." "; - - $this->db->query($sql); - - if ($this->_bDebug) {echo "
    "; print_r($sql); echo "
    ";} - - if ($this->db->next_record()) - { - return true; - }else - { - return false; - } - } - - /** - * Get level of a category - */ - function getLevel($catid) - { - if (!is_int((int)$catid) AND $catid < 0 AND !is_array($this->cfg) AND !isset($this->cfg['tab']) AND !is_int((int)$this->client) AND $this->client < 0 AND !is_int((int)$this->lang) AND $this->lang < 0) - { - return -1; - } - - $sql = "SELECT + a.idcat = " . $preid . " "; + + $this->db->query($sql); + + if ($this->_bDebug) { + echo "
    ";
    +            print_r($sql);
    +            echo "
    "; + } + + if ($this->db->next_record()) { + return true; + } else { + return false; + } + } + + /** + * Get level of a category + */ + function getLevel($catid) { + if (!is_int((int) $catid) AND $catid < 0 AND ! is_array($this->cfg) AND ! isset($this->cfg['tab']) AND ! is_int((int) $this->client) AND $this->client < 0 AND ! is_int((int) $this->lang) AND $this->lang < 0) { + return -1; + } + + $sql = "SELECT level FROM - ".$this->cfg["tab"]["cat_tree"]." + " . $this->cfg["tab"]["cat_tree"] . " WHERE - idcat = ".$catid." "; - - $this->db->query($sql); - - if ($this->_bDebug) {echo "
    "; print_r($sql); echo "
    ";} - - if ($this->db->next_record()) - { - return $this->db->f("level"); - }else - { - return -1; - } - } - - /** - * Get URL by given category in front_content.php style - * - * @param integer $iIdcat - * @param integer $iIdart - * @param boolean $bAbsolute return absolute path or not - * - * @return string URL - * @author Willi Man - * @access public - */ - function getFrontContentUrl($iIdcat, $iIdart, $bAbsolute = true) - { - if (!is_int((int)$iIdcat) AND $iIdcat < 0) - { - return ''; - } - - if ($bAbsolute === true) - { - # add absolute web path to urlpath - if (is_int((int)$iIdart) AND $iIdart > 0) - { - $sURL = $this->cfgClient[$this->client]['path']['htmlpath'] . 'front_content.php?idcat='.$iIdcat.'&idart='.$iIdart; - }else - { - $sURL = $this->cfgClient[$this->client]['path']['htmlpath'] . 'front_content.php?idcat='.$iIdcat; - } - }else - { - if (is_int((int)$iIdart) AND $iIdart > 0) - { - $sURL = 'front_content.php?idcat='.$iIdcat.'&idart='.$iIdart; - }else - { - $sURL = 'front_content.php?idcat='.$iIdcat; - } - } - - return $sURL; - } + idcat = " . $catid . " "; - /** - * Get urlpath by given category and/or idart and level. - * The urlpath looks like /Home/Product/Support/ where the directory-like string equals a category path. - * - * @requires functions.pathresolver.php - * @param integer $iIdcat - * @param integer $iIdart - * @param boolean $bAbsolute return absolute path or not - * - * @return string path information or empty string - * @author Marco Jahn (Project www.usa.de) - * @modified by Willi Man - * @access public - */ - function getUrlPath($iIdcat, $iIdart, $bAbsolute = true, $iLevel = 0, $sURL_SUFFIX = 'index.html') - { - if (!is_int((int)$iIdcat) AND $iIdcat < 0) - { - return ''; - } - - $cat_str = ''; - prCreateURLNameLocationString($iIdcat, "/", $cat_str, false, "", $iLevel, $this->lang, true, false); - - if (strlen($cat_str) <= 1) - { - # return empty string if no url location is available - return ''; - } - - if ($bAbsolute === true) - { - # add absolute web path to urlpath - if (is_int((int)$iIdart) AND $iIdart > 0) - { - return $this->cfgClient[$this->client]['path']['htmlpath'] . $cat_str . '/index-d-'.$iIdart.'.html'; - }else - { - return $this->cfgClient[$this->client]['path']['htmlpath'] . $cat_str . '/'.$sURL_SUFFIX; - } - }else - { - if (is_int((int)$iIdart) AND $iIdart > 0) - { - return $cat_str . '/index-d-'.$iIdart.'.html'; - }else - { - return $cat_str . '/'.$sURL_SUFFIX; - } - } - } - - /** - * Get urlpath by given category and/or selected param and level. - * - * @requires functions.pathresolver.php - * @param integer $iIdcat - * @param integer $iSelectedNumber - * @param boolean $bAbsolute return absolute path or not - * - * @return string path information or empty string - * @author Willi Man - * - * @access public - */ - function getUrlPathGenParam($iIdcat, $iSelectedNumber, $bAbsolute = true, $iLevel = 0) - { - if (!is_int((int)$iIdcat) AND $iIdcat < 0) - { - return ''; - } - - $cat_str = ''; - prCreateURLNameLocationString($iIdcat, "/", $cat_str, false, "", $iLevel, $this->lang, true, false); - - if (strlen($cat_str) <= 1) - { - # return empty string if no url location is available - return ''; - } - - if ($bAbsolute === true) - { - # add absolute web path to urlpath - if (is_int((int)$iSelectedNumber)) - { - return $this->cfgClient[$this->client]['path']['htmlpath'] . $cat_str . '/index-g-'.$iSelectedNumber.'.html'; - } - }else - { - if (is_int((int)$iSelectedNumber)) - { - return $cat_str . '/index-g-'.$iSelectedNumber.'.html'; - } - } - } - - /** - * Get URL by given categoryid and/or articleid - * - * @param integer $iIdcat url name to create for - * @param integer $iIdart - * @param boolean $bAbsolute return absolute path or not - * - * @return string URL - * @author Willi Man - * @access public - */ - function getURL($iIdcat, $iIdart, $sType = '', $bAbsolute = true, $iLevel = 0) - { - if (!is_int((int)$iIdcat) AND $iIdcat < 0) - { - return ''; - } - - #print "type ".$sType."
    "; - - switch ($sType) - { - case 'urlpath': - $sURL = $this->getUrlPath($iIdcat, $iIdart, $bAbsolute, $iLevel); - break; - case 'frontcontent': - $sURL = $this->getFrontContentUrl($iIdcat, $iIdart, $bAbsolute); - break; - case 'index-a': - # not implemented - $sURL = ''; - break; - default: - $sURL = $this->getFrontContentUrl($iIdcat, $iIdart, $bAbsolute); - } - - return $sURL; - } - - /** - * Get category of article. - * - * If an article is assigned to more than one category take the first - * category. - * - * @param int $iArticleId - * @return int category id - */ - function getCategoryOfArticle ($iArticleId) - { - - # validate input - if (!is_int((int)$iArticleId) OR $iArticleId <= 0) { return -1; } - - $sqlString = ' + $this->db->query($sql); + + if ($this->_bDebug) { + echo "
    ";
    +            print_r($sql);
    +            echo "
    "; + } + + if ($this->db->next_record()) { + return $this->db->f("level"); + } else { + return -1; + } + } + + /** + * Get URL by given category in front_content.php style + * + * @param integer $iIdcat + * @param integer $iIdart + * @param boolean $bAbsolute return absolute path or not + * + * @return string URL + * @author Willi Man + * @access public + */ + function getFrontContentUrl($iIdcat, $iIdart, $bAbsolute = true) { + if (!is_int((int) $iIdcat) AND $iIdcat < 0) { + return ''; + } + + if ($bAbsolute === true) { + # add absolute web path to urlpath + if (is_int((int) $iIdart) AND $iIdart > 0) { + $sURL = $this->cfgClient[$this->client]['path']['htmlpath'] . 'front_content.php?idcat=' . $iIdcat . '&idart=' . $iIdart; + } else { + $sURL = $this->cfgClient[$this->client]['path']['htmlpath'] . 'front_content.php?idcat=' . $iIdcat; + } + } else { + if (is_int((int) $iIdart) AND $iIdart > 0) { + $sURL = 'front_content.php?idcat=' . $iIdcat . '&idart=' . $iIdart; + } else { + $sURL = 'front_content.php?idcat=' . $iIdcat; + } + } + + return $sURL; + } + + /** + * Get urlpath by given category and/or idart and level. + * The urlpath looks like /Home/Product/Support/ where the directory-like string equals a category path. + * + * @requires functions.pathresolver.php + * @param integer $iIdcat + * @param integer $iIdart + * @param boolean $bAbsolute return absolute path or not + * + * @return string path information or empty string + * @author Marco Jahn (Project www.usa.de) + * @modified by Willi Man + * @access public + */ + function getUrlPath($iIdcat, $iIdart, $bAbsolute = true, $iLevel = 0, $sURL_SUFFIX = 'index.html') { + if (!is_int((int) $iIdcat) AND $iIdcat < 0) { + return ''; + } + + $cat_str = ''; + prCreateURLNameLocationString($iIdcat, "/", $cat_str, false, "", $iLevel, $this->lang, true, false); + + if (strlen($cat_str) <= 1) { + # return empty string if no url location is available + return ''; + } + + if ($bAbsolute === true) { + # add absolute web path to urlpath + if (is_int((int) $iIdart) AND $iIdart > 0) { + return $this->cfgClient[$this->client]['path']['htmlpath'] . $cat_str . '/index-d-' . $iIdart . '.html'; + } else { + return $this->cfgClient[$this->client]['path']['htmlpath'] . $cat_str . '/' . $sURL_SUFFIX; + } + } else { + if (is_int((int) $iIdart) AND $iIdart > 0) { + return $cat_str . '/index-d-' . $iIdart . '.html'; + } else { + return $cat_str . '/' . $sURL_SUFFIX; + } + } + } + + /** + * Get urlpath by given category and/or selected param and level. + * + * @requires functions.pathresolver.php + * @param integer $iIdcat + * @param integer $iSelectedNumber + * @param boolean $bAbsolute return absolute path or not + * + * @return string path information or empty string + * @author Willi Man + * + * @access public + */ + function getUrlPathGenParam($iIdcat, $iSelectedNumber, $bAbsolute = true, $iLevel = 0) { + if (!is_int((int) $iIdcat) AND $iIdcat < 0) { + return ''; + } + + $cat_str = ''; + prCreateURLNameLocationString($iIdcat, "/", $cat_str, false, "", $iLevel, $this->lang, true, false); + + if (strlen($cat_str) <= 1) { + # return empty string if no url location is available + return ''; + } + + if ($bAbsolute === true) { + # add absolute web path to urlpath + if (is_int((int) $iSelectedNumber)) { + return $this->cfgClient[$this->client]['path']['htmlpath'] . $cat_str . '/index-g-' . $iSelectedNumber . '.html'; + } + } else { + if (is_int((int) $iSelectedNumber)) { + return $cat_str . '/index-g-' . $iSelectedNumber . '.html'; + } + } + } + + /** + * Get URL by given categoryid and/or articleid + * + * @param integer $iIdcat url name to create for + * @param integer $iIdart + * @param boolean $bAbsolute return absolute path or not + * + * @return string URL + * @author Willi Man + * @access public + */ + function getURL($iIdcat, $iIdart, $sType = '', $bAbsolute = true, $iLevel = 0) { + if (!is_int((int) $iIdcat) AND $iIdcat < 0) { + return ''; + } + + #print "type ".$sType."
    "; + + switch ($sType) { + case 'urlpath': + $sURL = $this->getUrlPath($iIdcat, $iIdart, $bAbsolute, $iLevel); + break; + case 'frontcontent': + $sURL = $this->getFrontContentUrl($iIdcat, $iIdart, $bAbsolute); + break; + case 'index-a': + # not implemented + $sURL = ''; + break; + default: + $sURL = $this->getFrontContentUrl($iIdcat, $iIdart, $bAbsolute); + } + + return $sURL; + } + + /** + * Get category of article. + * + * If an article is assigned to more than one category take the first + * category. + * + * @param int $iArticleId + * @return int category id + */ + function getCategoryOfArticle($iArticleId) { + + # validate input + if (!is_int((int) $iArticleId) OR $iArticleId <= 0) { + return -1; + } + + $sqlString = ' SELECT c.idcat FROM - '.$this->cfg['tab']['art_lang'].' AS a, - '.$this->cfg['tab']['art'].' AS b, - '.$this->cfg['tab']['cat_art'].' AS c + ' . $this->cfg['tab']['art_lang'] . ' AS a, + ' . $this->cfg['tab']['art'] . ' AS b, + ' . $this->cfg['tab']['cat_art'] . ' AS c WHERE - a.idart = '.$iArticleId.' AND - b.idclient = '.$this->client.' AND - a.idlang = '.$this->lang.' AND + a.idart = ' . $iArticleId . ' AND + b.idclient = ' . $this->client . ' AND + a.idlang = ' . $this->lang . ' AND b.idart = c.idart AND - a.idart = b.idart '; - - if ($this->_bDebug) {echo "
    ".$sqlString."
    ";} - - $this->db->query($sqlString); - - # $this->db->Errno returns 0 (zero) if no error occurred. - if ($this->db->Errno == 0) - { - if ($this->db->next_record()) - { - return $this->db->f('idcat'); - }else - { - return -1; - } - }else - { - if ($this->_bDebug) {echo "
    Mysql Error:".$this->db->Error."(".$this->db->Errno.")
    ";} - return -1; # error occurred. - } - } - - /** - * Get path of a given category up to a certain level - */ - function getCategoryPath($cat_id, $level = 0, $reverse = true) - { - if (!is_int((int)$cat_id) AND $cat_id < 0) - { - return array(); - } - - $root_path = array(); - array_push($root_path, $cat_id); - $parent_id = $cat_id; - - while ($this->getLevel($parent_id) >= 0 AND $this->getLevel($parent_id) > $level) - { - $parent_id = $this->getParent($parent_id); - if ($parent_id >= 0) - { - array_push($root_path, $parent_id); - } - } - - if ($reverse == true) - { - $root_path = array_reverse($root_path); - } - - return $root_path; - } - - /** - * Get root category of a given category - */ - function getRoot($cat_id) - { - if (!is_int((int)$cat_id) AND $cat_id < 0) - { - return array(); - } - - $parent_id = $cat_id; - - while ($this->getLevel($parent_id) >= 0) - { - $iRootCategory = $parent_id; - $parent_id = $this->getParent($parent_id); - } - - return $iRootCategory; - } - - /** - * get subtree by a given id - * - * @param int $idcat_start Id of category - * @return array Array with subtree - * - * @copyright four for business AG - */ - function getSubTree($idcat_start) - { - - if (!is_int((int)$idcat_start) AND $idcat_start < 0 AND !is_array($this->cfg) AND !isset($this->cfg['tab']) AND !is_int((int)$this->client) AND $this->client < 0 AND !is_int((int)$this->lang) AND $this->lang < 0) - { - return array(); - } - - $sql = "SELECT + a.idart = b.idart '; + + if ($this->_bDebug) { + echo "
    " . $sqlString . "
    "; + } + + $this->db->query($sqlString); + + # $this->db->Errno returns 0 (zero) if no error occurred. + if ($this->db->Errno == 0) { + if ($this->db->next_record()) { + return $this->db->f('idcat'); + } else { + return -1; + } + } else { + if ($this->_bDebug) { + echo "
    Mysql Error:" . $this->db->Error . "(" . $this->db->Errno . ")
    "; + } + return -1; # error occurred. + } + } + + /** + * Get path of a given category up to a certain level + */ + function getCategoryPath($cat_id, $level = 0, $reverse = true) { + if (!is_int((int) $cat_id) AND $cat_id < 0) { + return array(); + } + + $root_path = array(); + array_push($root_path, $cat_id); + $parent_id = $cat_id; + + while ($this->getLevel($parent_id) >= 0 AND $this->getLevel($parent_id) > $level) { + $parent_id = $this->getParent($parent_id); + if ($parent_id >= 0) { + array_push($root_path, $parent_id); + } + } + + if ($reverse == true) { + $root_path = array_reverse($root_path); + } + + return $root_path; + } + + /** + * Get root category of a given category + */ + function getRoot($cat_id) { + if (!is_int((int) $cat_id) AND $cat_id < 0) { + return array(); + } + + $parent_id = $cat_id; + + while ($this->getLevel($parent_id) >= 0) { + $iRootCategory = $parent_id; + $parent_id = $this->getParent($parent_id); + } + + return $iRootCategory; + } + + /** + * get subtree by a given id + * + * @param int $idcat_start Id of category + * @return array Array with subtree + * + * @copyright four for business AG + */ + function getSubTree($idcat_start) { + + if (!is_int((int) $idcat_start) AND $idcat_start < 0 AND ! is_array($this->cfg) AND ! isset($this->cfg['tab']) AND ! is_int((int) $this->client) AND $this->client < 0 AND ! is_int((int) $this->lang) AND $this->lang < 0) { + return array(); + } + + $sql = "SELECT B.idcat, A.level FROM - ".$this->cfg["tab"]["cat_tree"]." AS A, - ".$this->cfg["tab"]["cat"]." AS B + " . $this->cfg["tab"]["cat_tree"] . " AS A, + " . $this->cfg["tab"]["cat"] . " AS B WHERE A.idcat = B.idcat AND - idclient = ".$this->client." + idclient = " . $this->client . " ORDER BY idtree"; - - if ($this->_bDebug) {echo "
    "; print_r($sql); echo "
    ";} - - $this->db->query($sql); - - $i = false; - - while ( $this->db->next_record() ) - { - if ($this->db->f("idcat") == $idcat_start) - { - $curLevel = $this->db->f("level"); - $i = true; - }else - { - if ($curLevel == $this->db->f("level")) - { - # ending part of tree - $i = false; - } - } - - if ($i == true) - { - $deeper_cats[] = $this->db->f("idcat"); - } - } - return $deeper_cats; - } - + if ($this->_bDebug) { + echo "
    ";
    +            print_r($sql);
    +            echo "
    "; + } + + $this->db->query($sql); + + $i = false; + + while ($this->db->next_record()) { + if ($this->db->f("idcat") == $idcat_start) { + $curLevel = $this->db->f("level"); + $i = true; + } else { + if ($curLevel == $this->db->f("level")) { + # ending part of tree + $i = false; + } + } + + if ($i == true) { + $deeper_cats[] = $this->db->f("idcat"); + } + } + return $deeper_cats; + } + } ?> \ No newline at end of file
      - +