diff --git a/conlite/includes/functions.includePluginConf.php b/conlite/includes/functions.includePluginConf.php index 82a75d0..4ed03e9 100644 --- a/conlite/includes/functions.includePluginConf.php +++ b/conlite/includes/functions.includePluginConf.php @@ -47,6 +47,11 @@ if ($bDebug && $frame == 4) { // Include all active plugins foreach ($aPlugins as $sPluginName) { + $sPluginIgnoreFile = $sPluginsPath . $sPluginName . DIRECTORY_SEPARATOR . 'plugin.ignore'; + if (file_exists($sPluginIgnoreFile)) { + continue; + } + $sPluginLocaleDir = $sPluginsPath . $sPluginName . DIRECTORY_SEPARATOR . 'locale' . DIRECTORY_SEPARATOR; $sPluginConfigFile = $sPluginsPath . $sPluginName . DIRECTORY_SEPARATOR . 'includes/config.plugin.php'; $sPluginAutoloaderFile = $sPluginsPath . $sPluginName . DIRECTORY_SEPARATOR . 'includes/config.autoloader.php'; diff --git a/conlite/includes/include.con_art_overview.php b/conlite/includes/include.con_art_overview.php index 1bcdc6d..e0e092d 100644 --- a/conlite/includes/include.con_art_overview.php +++ b/conlite/includes/include.con_art_overview.php @@ -1,5 +1,6 @@ 0) ? $_GET['next'] : 0; +$idcat = ( isset($_GET['idcat']) && is_numeric($_GET['idcat'])) ? $_GET['idcat'] : -1; +$next = ( isset($_GET['next']) && is_numeric($_GET['next']) && $_GET['next'] > 0) ? $_GET['next'] : 0; $dateformat = getEffectiveSetting("backend", "timeformat_date", "Y-m-d"); $debug = false; $templateDescription = ''; -if (!isset($syncfrom)) -{ - $syncfrom = -1; +if (!isset($syncfrom)) { + $syncfrom = -1; } $syncoptions = $syncfrom; -if ($action == "con_duplicate") -{ - $newidartlang = conCopyArticle($duplicate, $idcat); +if ($action == "con_duplicate") { + $newidartlang = conCopyArticle($duplicate, $idcat); } -if ($action == "con_syncarticle") -{ - /* Verify that the category is available in this language */ - $sql = "SELECT idcatlang FROM ".$cfg["tab"]["cat_lang"]." WHERE idcat='".Contenido_Security::toInteger($idcat)."' AND idlang='".Contenido_Security::toInteger($lang)."'"; - $db->query($sql); - if ($db->next_record()) - { - conSyncArticle($syncarticle, $sourcelanguage, $lang); - } else { - strSyncCategory($idcat, $sourcelanguage, $lang); - conSyncArticle($syncarticle, $sourcelanguage, $lang); - } +if ($action == "con_syncarticle") { + /* Verify that the category is available in this language */ + $sql = "SELECT idcatlang FROM " . $cfg["tab"]["cat_lang"] . " WHERE idcat='" . Contenido_Security::toInteger($idcat) . "' AND idlang='" . Contenido_Security::toInteger($lang) . "'"; + $db->query($sql); + if ($db->next_record()) { + conSyncArticle($syncarticle, $sourcelanguage, $lang); + } else { + strSyncCategory($idcat, $sourcelanguage, $lang); + conSyncArticle($syncarticle, $sourcelanguage, $lang); + } } /* Which columns to display? */ -$listColumns = array( "start" => i18n("Article"), - "title" => i18n("Title"), - "changeddate" => i18n("Changed"), - "publisheddate" => i18n("Published"), - "sortorder" => i18n("Sort order"), - "template" => i18n("Template"), - "actions" => i18n("Actions")); +$listColumns = array("start" => i18n("Article"), + "title" => i18n("Title"), + "changeddate" => i18n("Changed"), + "publisheddate" => i18n("Published"), + "sortorder" => i18n("Sort order"), + "template" => i18n("Template"), + "actions" => i18n("Actions")); /* Which actions to display? */ -$actionList = array( "online", - "duplicate", - "locked", - "todo", - "delete", - "usetime"); +$actionList = array("online", + "duplicate", + "locked", + "todo", + "delete", + "usetime"); /* Call chains to process the columns and the action list */ $_cecIterator = $_cecRegistry->getIterator("Contenido.ArticleList.Columns"); -if ($_cecIterator->count() > 0) -{ - while ($chainEntry = $_cecIterator->next()) - { - $newColumnList = $chainEntry->execute($listColumns); - - if (is_array($newColumnList)) - { - $listColumns = $newColumnList; - } - } +if ($_cecIterator->count() > 0) { + while ($chainEntry = $_cecIterator->next()) { + $newColumnList = $chainEntry->execute($listColumns); + + if (is_array($newColumnList)) { + $listColumns = $newColumnList; + } + } } $_cecIterator = $_cecRegistry->getIterator("Contenido.ArticleList.Actions"); -if ($_cecIterator->count() > 0) -{ - while ($chainEntry = $_cecIterator->next()) - { - $newActionList = $chainEntry->execute($actionList); - - if (is_array($newActionList)) - { - $actionList = $newActionList; - } - } +if ($_cecIterator->count() > 0) { + while ($chainEntry = $_cecIterator->next()) { + $newActionList = $chainEntry->execute($actionList); + + if (is_array($newActionList)) { + $actionList = $newActionList; + } + } } $cat_idtpl = 0; -if ( is_numeric($idcat) && ($idcat >= 0)) { - // Saving sort and elements per page user settings (if specified) - // Should be changed to User->setProperty... someday - if (isset($sort)) - { - $currentuser->setUserProperty("system","sortorder-idlang-$lang-idcat-$idcat",$sort); - } +if (is_numeric($idcat) && ($idcat >= 0)) { + // Saving sort and elements per page user settings (if specified) + // Should be changed to User->setProperty... someday + if (isset($sort)) { + $currentuser->setUserProperty("system", "sortorder-idlang-$lang-idcat-$idcat", $sort); + } - if (isset($elemperpage) && is_numeric($elemperpage)) - { - $currentuser->setUserProperty("system","elemperpage-idlang-$lang-idcat-$idcat", $elemperpage); + if (isset($elemperpage) && is_numeric($elemperpage)) { + $currentuser->setUserProperty("system", "elemperpage-idlang-$lang-idcat-$idcat", $elemperpage); + } else { + $elemperpage = $currentuser->getUserProperty("system", "elemperpage-idlang-$lang-idcat-$idcat"); - } else { - $elemperpage = $currentuser->getUserProperty("system","elemperpage-idlang-$lang-idcat-$idcat"); + if (!is_numeric($elemperpage)) { + $elemperpage = 25; + } + } - if (!is_numeric($elemperpage)) - { - $elemperpage = 25; - } - } + $col = new InUseCollection(); - $col = new InUseCollection(); + if ((( $idcat == 0 || $perm->have_perm_area_action("con")) && $perm->have_perm_item("str", $idcat)) || $perm->have_perm_area_action("con", "con_makestart") || $perm->have_perm_area_action("con", "con_makeonline") || $perm->have_perm_area_action("con", "con_deleteart") || $perm->have_perm_area_action("con", "con_tplcfg_edit") || $perm->have_perm_area_action("con", "con_lock") || $perm->have_perm_area_action("con", "con_makecatonline") || $perm->have_perm_area_action("con", "con_changetemplate") || $perm->have_perm_area_action("con_editcontent", "con_editart") || $perm->have_perm_area_action("con_editart", "con_edit") || $perm->have_perm_area_action("con_editart", "con_newart") || $perm->have_perm_area_action("con_editart", "con_saveart") || $perm->have_perm_area_action("con_tplcfg", "con_tplcfg_edit") || $perm->have_perm_area_action_item("con", "con_makestart", $idcat) || $perm->have_perm_area_action_item("con", "con_makeonline", $idcat) || $perm->have_perm_area_action_item("con", "con_deleteart", $idcat) || $perm->have_perm_area_action_item("con", "con_tplcfg_edit", $idcat) || $perm->have_perm_area_action_item("con", "con_lock", $idcat) || $perm->have_perm_area_action_item("con", "con_makecatonline", $idcat) || $perm->have_perm_area_action_item("con", "con_changetemplate", $idcat) || $perm->have_perm_area_action_item("con_editcontent", "con_editart", $idcat) || $perm->have_perm_area_action_item("con_editart", "con_edit", $idcat) || $perm->have_perm_area_action_item("con_editart", "con_newart", $idcat) || $perm->have_perm_area_action_item("con_tplcfg", "con_tplcfg_edit", $idcat) || $perm->have_perm_area_action_item("con_editart", "con_saveart", $idcat)) { - if ((( $idcat == 0 || - $perm->have_perm_area_action("con")) && $perm->have_perm_item("str", $idcat)) || - $perm->have_perm_area_action("con", "con_makestart") || - $perm->have_perm_area_action("con", "con_makeonline") || - $perm->have_perm_area_action("con", "con_deleteart") || - $perm->have_perm_area_action("con", "con_tplcfg_edit") || - $perm->have_perm_area_action("con", "con_lock") || - $perm->have_perm_area_action("con", "con_makecatonline") || - $perm->have_perm_area_action("con", "con_changetemplate") || - $perm->have_perm_area_action("con_editcontent", "con_editart") || - $perm->have_perm_area_action("con_editart", "con_edit") || - $perm->have_perm_area_action("con_editart", "con_newart") || - $perm->have_perm_area_action("con_editart", "con_saveart") || - $perm->have_perm_area_action("con_tplcfg", "con_tplcfg_edit") || - $perm->have_perm_area_action_item("con", "con_makestart", $idcat) || - $perm->have_perm_area_action_item("con", "con_makeonline", $idcat) || - $perm->have_perm_area_action_item("con", "con_deleteart", $idcat) || - $perm->have_perm_area_action_item("con", "con_tplcfg_edit", $idcat) || - $perm->have_perm_area_action_item("con", "con_lock", $idcat) || - $perm->have_perm_area_action_item("con", "con_makecatonline", $idcat) || - $perm->have_perm_area_action_item("con", "con_changetemplate", $idcat) || - $perm->have_perm_area_action_item("con_editcontent", "con_editart", $idcat) || - $perm->have_perm_area_action_item("con_editart", "con_edit", $idcat) || - $perm->have_perm_area_action_item("con_editart", "con_newart", $idcat) || - $perm->have_perm_area_action_item("con_tplcfg", "con_tplcfg_edit",$idcat) || - $perm->have_perm_area_action_item("con_editart", "con_saveart", $idcat)) { + $sort = $currentuser->getUserProperty("system", "sortorder-idlang-$lang-idcat-$idcat"); - $sort = $currentuser->getUserProperty("system","sortorder-idlang-$lang-idcat-$idcat"); - - $sql = "SELECT + $sql = "SELECT a.idart AS idart, a.idlang AS idlang, a.idartlang AS idartlang, @@ -196,826 +157,759 @@ if ( is_numeric($idcat) && ($idcat >= 0)) { a.redirect AS redirect, a.locked AS locked FROM - ".$cfg["tab"]["art_lang"]." AS a, - ".$cfg["tab"]["art"]." AS b, - ".$cfg["tab"]["cat_art"]." AS c + " . $cfg["tab"]["art_lang"] . " AS a, + " . $cfg["tab"]["art"] . " AS b, + " . $cfg["tab"]["cat_art"] . " AS c WHERE - (a.idlang = '".$lang."' {SYNCOPTIONS}) AND + (a.idlang = '" . $lang . "' {SYNCOPTIONS}) AND a.idart = b.idart AND - b.idclient = '".$client."' AND + b.idclient = '" . $client . "' AND b.idart = c.idart AND - c.idcat = '".$idcat."'"; - - // Simple SQL statement to get the number of articles - $sql_count = - "SELECT + c.idcat = '" . $idcat . "'"; + + // Simple SQL statement to get the number of articles + $sql_count = "SELECT COUNT(*) AS article_count FROM - ".$cfg["tab"]["art_lang"]." AS a, - ".$cfg["tab"]["art"]." AS b, - ".$cfg["tab"]["cat_art"]." AS c + " . $cfg["tab"]["art_lang"] . " AS a, + " . $cfg["tab"]["art"] . " AS b, + " . $cfg["tab"]["cat_art"] . " AS c WHERE - (a.idlang = '".Contenido_Security::toInteger($lang)."' {SYNCOPTIONS}) AND + (a.idlang = '" . Contenido_Security::toInteger($lang) . "' {SYNCOPTIONS}) AND a.idart = b.idart AND - b.idclient = '".Contenido_Security::toInteger($client)."' AND + b.idclient = '" . Contenido_Security::toInteger($client) . "' AND b.idart = c.idart AND - c.idcat = '".Contenido_Security::toInteger($idcat)."'"; + c.idcat = '" . Contenido_Security::toInteger($idcat) . "'"; - if ($cfg["is_start_compatible"] == true) - { - $sql = str_replace("{ISSTART}", "c.is_start AS is_start,", $sql); - } else { - $sql = str_replace("{ISSTART}", "", $sql); - } + if ($cfg["is_start_compatible"] == true) { + $sql = str_replace("{ISSTART}", "c.is_start AS is_start,", $sql); + } else { + $sql = str_replace("{ISSTART}", "", $sql); + } - if ($syncoptions == -1) - { - $sql = str_replace("{SYNCOPTIONS}", "", $sql); - $sql_count = str_replace("{SYNCOPTIONS}", "", $sql_count); - } else { - $sql = str_replace("{SYNCOPTIONS}", "OR a.idlang = '".$syncoptions."'", $sql); - $sql_count = str_replace("{SYNCOPTIONS}", "OR a.idlang = '".$syncoptions."'", $sql_count); - } + if ($syncoptions == -1) { + $sql = str_replace("{SYNCOPTIONS}", "", $sql); + $sql_count = str_replace("{SYNCOPTIONS}", "", $sql_count); + } else { + $sql = str_replace("{SYNCOPTIONS}", "OR a.idlang = '" . $syncoptions . "'", $sql); + $sql_count = str_replace("{SYNCOPTIONS}", "OR a.idlang = '" . $syncoptions . "'", $sql_count); + } - # Article sort - switch ($sort) - { - case 2: - $sql .= " ORDER BY a.lastmodified DESC"; - break; - case 3: - $sql .= " ORDER BY a.published DESC, a.lastmodified DESC"; - break; - case 4: - $sql .= " ORDER BY a.artsort ASC"; - break; - default: - // Default sort order - $sql .= " ORDER BY a.title ASC"; - $sort = 1; - } + # Article sort + switch ($sort) { + case 2: + $sql .= " ORDER BY a.lastmodified DESC"; + break; + case 3: + $sql .= " ORDER BY a.published DESC, a.lastmodified DESC"; + break; + case 4: + $sql .= " ORDER BY a.artsort ASC"; + break; + default: + // Default sort order + $sql .= " ORDER BY a.title ASC"; + $sort = 1; + } - # Getting article count, if necessary - if ($elemperpage > 0) - { - $db->query($sql_count); - $db->next_record(); - $iArticleCount = $db->f("article_count"); - - # If not beyond scope, limit - if ($iArticleCount == 0) - { - $next = 0; - } else if ($next >= $iArticleCount) { - $next = (ceil($iArticleCount / $elemperpage) - 1) * $elemperpage; - } - $sql .= " LIMIT $next, $elemperpage"; - } else { - $iArticleCount = 0; // Will be used to "hide" the browsing area - } + # Getting article count, if necessary + if ($elemperpage > 0) { + $db->query($sql_count); + $db->next_record(); + $iArticleCount = $db->f("article_count"); - # Debug info - if ( $debug ) { - echo "
";
-			echo $sql;
-			echo "
"; - } + # If not beyond scope, limit + if ($iArticleCount == 0) { + $next = 0; + } else if ($next >= $iArticleCount) { + $next = (ceil($iArticleCount / $elemperpage) - 1) * $elemperpage; + } + $sql .= " LIMIT $next, $elemperpage"; + } else { + $iArticleCount = 0; // Will be used to "hide" the browsing area + } - # Getting data - $db->query($sql); + # Debug info + if ($debug) { + echo "
";
+            echo $sql;
+            echo "
"; + } - # Reset Template - $tpl->reset(); + # Getting data + $db->query($sql); - # No article - $no_article = true; + # Reset Template + $tpl->reset(); + + # No article + $no_article = true; $aArticles = Array(); - while ($db->next_record() ) { - $sItem = "k" . $db->f("idart"); - - if ($db->f("idlang") == $lang || !array_key_exists($sItem, $aArticles)) { - $aArticles[$sItem]["idart"] = $db->f("idart"); - $aArticles[$sItem]["idlang"] = $db->f("idlang"); - $aArticles[$sItem]["idartlang"] = $db->f("idartlang"); - $aArticles[$sItem]["title"] = $db->f("title"); - if ($cfg["is_start_compatible"] == true) { - $aArticles[$sItem]["is_start"] = $db->f("is_start"); - } else { - $aArticles[$sItem]["is_start"] = isStartArticle($db->f("idartlang"), $idcat, $lang); - } - - $aArticles[$sItem]["idcatart"] = $db->f("idcatart"); - $aArticles[$sItem]["idtplcfg"] = $db->f("idtplcfg"); - $aArticles[$sItem]["published"] = $db->f("published"); - $aArticles[$sItem]["online"] = $db->f("online"); - $aArticles[$sItem]["created"] = $db->f("created"); - $aArticles[$sItem]["idcat"] = $db->f("idcat"); - $aArticles[$sItem]["lastmodified"] = $db->f("lastmodified"); - $aArticles[$sItem]["timemgmt"] = $db->f("timemgmt"); - $aArticles[$sItem]["datestart"] = $db->f("datestart"); - $aArticles[$sItem]["dateend"] = $db->f("dateend"); - $aArticles[$sItem]["artsort"] = $db->f("artsort"); - $aArticles[$sItem]["locked"] = $db->f("locked"); - $aArticles[$sItem]["redirect"] = $db->f("redirect"); - } + while ($db->next_record()) { + $sItem = "k" . $db->f("idart"); + + if ($db->f("idlang") == $lang || !array_key_exists($sItem, $aArticles)) { + $aArticles[$sItem]["idart"] = $db->f("idart"); + $aArticles[$sItem]["idlang"] = $db->f("idlang"); + $aArticles[$sItem]["idartlang"] = $db->f("idartlang"); + $aArticles[$sItem]["title"] = $db->f("title"); + if ($cfg["is_start_compatible"] == true) { + $aArticles[$sItem]["is_start"] = $db->f("is_start"); + } else { + $aArticles[$sItem]["is_start"] = isStartArticle($db->f("idartlang"), $idcat, $lang); + } + + $aArticles[$sItem]["idcatart"] = $db->f("idcatart"); + $aArticles[$sItem]["idtplcfg"] = $db->f("idtplcfg"); + $aArticles[$sItem]["published"] = $db->f("published"); + $aArticles[$sItem]["online"] = $db->f("online"); + $aArticles[$sItem]["created"] = $db->f("created"); + $aArticles[$sItem]["idcat"] = $db->f("idcat"); + $aArticles[$sItem]["lastmodified"] = $db->f("lastmodified"); + $aArticles[$sItem]["timemgmt"] = $db->f("timemgmt"); + $aArticles[$sItem]["datestart"] = $db->f("datestart"); + $aArticles[$sItem]["dateend"] = $db->f("dateend"); + $aArticles[$sItem]["artsort"] = $db->f("artsort"); + $aArticles[$sItem]["locked"] = $db->f("locked"); + $aArticles[$sItem]["redirect"] = $db->f("redirect"); + } } $artlist = array(); $dyn_cnt = 0; - foreach ($aArticles as $sart) { - $dyn_cnt++; - $idart = $sart["idart"]; - $idlang = $sart["idlang"]; - - $idtplcfg = $sart["idtplcfg"]; - $idartlang = $sart["idartlang"]; - $lidcat = $sart["idcat"]; - $idcatlang = 0; - $idart = $sart["idart"]; - $published = $sart["published"]; - $online = $sart["online"]; + foreach ($aArticles as $sart) { + $dyn_cnt++; + $idart = $sart["idart"]; + $idlang = $sart["idlang"]; - $is_start = $sart["is_start"]; - - $idcatart = $sart["idcatart"]; - $created = $sart["created"]; - $modified = $sart["lastmodified"]; - $title = clHtmlSpecialChars($sart["title"]); - $timemgmt = $sart["timemgmt"]; - $datestart = $sart["datestart"]; - $dateend = $sart["dateend"]; - $sortkey = $sart["artsort"]; - $locked = $sart["locked"]; - $redirect = $sart["redirect"]; + $idtplcfg = $sart["idtplcfg"]; + $idartlang = $sart["idartlang"]; + $lidcat = $sart["idcat"]; + $idcatlang = 0; + $idart = $sart["idart"]; + $published = $sart["published"]; + $online = $sart["online"]; - $published = ($published != '1000-01-01 00:00:00') ? date($dateformat,strtotime($published)) : i18n("not yet published"); - $created = date($dateformat,strtotime($created)); - $modified = date($dateformat,strtotime($modified)); - $alttitle = "idart".': '.$idart.' '."idcatart".': '.$idcatart.' '."idartlang".': '.$idartlang; + $is_start = $sart["is_start"]; - if (($obj = $col->checkMark("article", $idartlang)) === false) - { - $inUse = false; - } else { - $vuser = new User; - $vuser->loadUserByUserID($obj->get("userid")); - $inUseUser = $vuser->getField("username"); - $inUseUserRealName = $vuser->getField("realname"); - - $inUse = true; - $title = $title . " (" . i18n("Article is in use").")"; - $alttitle = sprintf(i18n("Article in use by %s (%s)"), $inUseUser, $inUseUserRealName). " ". $alttitle; - } + $idcatart = $sart["idcatart"]; + $created = $sart["created"]; + $modified = $sart["lastmodified"]; + $title = clHtmlSpecialChars($sart["title"]); + $timemgmt = $sart["timemgmt"]; + $datestart = $sart["datestart"]; + $dateend = $sart["dateend"]; + $sortkey = $sart["artsort"]; + $locked = $sart["locked"]; + $redirect = $sart["redirect"]; - $bgcolor = $cfg["color"]["table_light"]; - if ($idlang != $lang) - { - $bgcolor = ( is_int($dyn_cnt / 2) ) ? $cfg["color"]["table_light_sync"] : $cfg["color"]["table_dark_sync"]; - } + $published = ($published != '1000-01-01 00:00:00') ? date($dateformat, strtotime($published)) : i18n("not yet published"); + $created = date($dateformat, strtotime($created)); + $modified = date($dateformat, strtotime($modified)); + $alttitle = "idart" . ': ' . $idart . ' ' . "idcatart" . ': ' . $idcatart . ' ' . "idartlang" . ': ' . $idartlang; - /* Id of the row, - stores informations about - the article and category */ - $tmp_rowid = $idart."-".$idartlang."-".$lidcat."-".$idcatlang."-".$idcatart."-".$idlang; - $tpl->set('d', 'ROWID', $tmp_rowid); + if (($obj = $col->checkMark("article", $idartlang)) === false) { + $inUse = false; + } else { + $vuser = new User; + $vuser->loadUserByUserID($obj->get("userid")); + $inUseUser = $vuser->getField("username"); + $inUseUserRealName = $vuser->getField("realname"); - $colitem[$tmp_rowid] = $bgcolor; - # Backgroundcolor of the table row - $tpl->set('d', 'BGCOLOR', $bgcolor); + $inUse = true; + $title = $title . " (" . i18n("Article is in use") . ")"; + $alttitle = sprintf(i18n("Article in use by %s (%s)"), $inUseUser, $inUseUserRealName) . " " . $alttitle; + } - # Article Title - if ($perm->have_perm_area_action( "con_editcontent", "con_editart" ) || - $perm->have_perm_area_action_item( "con_editcontent", "con_editart" ,$idcat) ) - { - if ($idlang != $lang) - { - $tmp_alink = $sess->url("main.php?area=con_editcontent&action=con_editart&changeview=prev&idartlang=$idartlang&idart=$idart&idcat=$idcat&frame=$frame&tmpchangelang=$idlang"); - $titlelink = ''.$title.''; - } else { - $tmp_alink = $sess->url("main.php?area=con_editcontent&action=con_editart&changeview=edit&idartlang=$idartlang&idart=$idart&idcat=$idcat&frame=$frame"); - $titlelink = ''.$title.''; - } - } else { - $tmp_alink = ""; - $titlelink = $title; - } + $bgcolor = $cfg["color"]["table_light"]; + if ($idlang != $lang) { + $bgcolor = ( is_int($dyn_cnt / 2) ) ? $cfg["color"]["table_light_sync"] : $cfg["color"]["table_dark_sync"]; + } - if ($timemgmt == "1") - { - $sql = "SELECT NOW() AS TIME"; - - $db3 = new DB_ConLite; - - $db3->query($sql); - $db3->next_record(); + /* Id of the row, + stores informations about + the article and category */ + $tmp_rowid = $idart . "-" . $idartlang . "-" . $lidcat . "-" . $idcatlang . "-" . $idcatart . "-" . $idlang; + $tpl->set('d', 'ROWID', $tmp_rowid); - $starttimestamp = strtotime($datestart); - $endtimestamp = strtotime($dateend); - $nowtimestamp = strtotime($db3->f("TIME")); - - if (($nowtimestamp < $endtimestamp) && ($nowtimestamp > $starttimestamp)) - { - $usetime = 'Artikel mit Zeitsteuerung online'; - } else { - $usetime = 'Artikel mit Zeitsteuerung offline'; - } - } else { - $usetime = ""; - } + $colitem[$tmp_rowid] = $bgcolor; + # Backgroundcolor of the table row + $tpl->set('d', 'BGCOLOR', $bgcolor); - # Article Title - if (($perm->have_perm_area_action( "con", "con_lock" ) || - $perm->have_perm_area_action_item( "con", "con_lock" ,$idcat)) && $inUse == false ) - { - if ($locked == 1) - { - $lockimg = 'images/article_locked.gif'; - $lockalt = i18n("Unfreeze article"); - } else { - $lockimg = 'images/article_unlocked.gif'; - $lockalt = i18n("Freeze article"); - } - $tmp_lock = ''.$lockalt.''; - } else { - if ($locked == 1) - { - $lockimg = 'images/article_locked.gif'; - $lockalt = i18n("Article is frozen"); - } else { - $lockimg = 'images/article_unlocked.gif'; - $lockalt = i18n("Article is not frozen"); - } - $tmp_lock = ''.$lockalt.''; - } + # Article Title + if ($perm->have_perm_area_action("con_editcontent", "con_editart") || $perm->have_perm_area_action_item("con_editcontent", "con_editart", $idcat)) { + if ($idlang != $lang) { + $tmp_alink = $sess->url("main.php?area=con_editcontent&action=con_editart&changeview=prev&idartlang=$idartlang&idart=$idart&idcat=$idcat&frame=$frame&tmpchangelang=$idlang"); + $titlelink = '' . $title . ''; + } else { + $tmp_alink = $sess->url("main.php?area=con_editcontent&action=con_editart&changeview=edit&idartlang=$idartlang&idart=$idart&idcat=$idcat&frame=$frame"); + $titlelink = '' . $title . ''; + } + } else { + $tmp_alink = ""; + $titlelink = $title; + } - if ($idlang != $lang) - { - $lockedlink = ""; - } else { - $lockedlink = $tmp_lock; - } + if ($timemgmt == "1") { + $sql = "SELECT NOW() AS TIME"; - if ($sortkey == "") - { - $sortkey = " "; - } + $db3 = new DB_ConLite; - $tmp_articletitle = $titlelink; + $db3->query($sql); + $db3->next_record(); + + $starttimestamp = strtotime($datestart); + $endtimestamp = strtotime($dateend); + $nowtimestamp = strtotime($db3->f("TIME")); + + if (($nowtimestamp < $endtimestamp) && ($nowtimestamp > $starttimestamp)) { + $usetime = 'Artikel mit Zeitsteuerung online'; + } else { + $usetime = 'Artikel mit Zeitsteuerung offline'; + } + } else { + $usetime = ""; + } + + # Article Title + if (($perm->have_perm_area_action("con", "con_lock") || $perm->have_perm_area_action_item("con", "con_lock", $idcat)) && $inUse == false) { + if ($locked == 1) { + $lockimg = 'images/article_locked.gif'; + $lockalt = i18n("Unfreeze article"); + } else { + $lockimg = 'images/article_unlocked.gif'; + $lockalt = i18n("Freeze article"); + } + $tmp_lock = '' . $lockalt . ''; + } else { + if ($locked == 1) { + $lockimg = 'images/article_locked.gif'; + $lockalt = i18n("Article is frozen"); + } else { + $lockimg = 'images/article_unlocked.gif'; + $lockalt = i18n("Article is not frozen"); + } + $tmp_lock = '' . $lockalt . ''; + } + + if ($idlang != $lang) { + $lockedlink = ""; + } else { + $lockedlink = $tmp_lock; + } + + if ($sortkey == "") { + $sortkey = " "; + } + + $tmp_articletitle = $titlelink; # Article conf button - if ($perm->have_perm_area_action("con_editart","con_edit") || - $perm->have_perm_area_action_item("con_editart","con_edit",$idcat)) - { - $tmp_artconf = ''.i18n('; + if ($perm->have_perm_area_action("con_editart", "con_edit") || $perm->have_perm_area_action_item("con_editart", "con_edit", $idcat)) { + $tmp_artconf = '' . i18n('; } else { - $tmp_artconf=""; + $tmp_artconf = ""; } $tmp_sync = ''; - if ($idlang != $lang) - { - - $sql = "SELECT idcatlang FROM ".$cfg["tab"]["cat_lang"]." WHERE idcat='".Contenido_Security::toInteger($idcat)."' AND idlang='".Contenido_Security::toInteger($lang)."'"; - - $db->query($sql); - if ($db->next_record()) - { - $tmp_sync = ''.i18n('; - - } else { - $tmp_sync = ""; - } - } - - # Article Template - if ( !is_object($db2) ) - { - $db2 = new DB_ConLite; - } + if ($idlang != $lang) { - $sql2 = - "SELECT + $sql = "SELECT idcatlang FROM " . $cfg["tab"]["cat_lang"] . " WHERE idcat='" . Contenido_Security::toInteger($idcat) . "' AND idlang='" . Contenido_Security::toInteger($lang) . "'"; + + $db->query($sql); + if ($db->next_record()) { + $tmp_sync = '' . i18n('; + } else { + $tmp_sync = ""; + } + } + + # Article Template + if (!is_object($db2)) { + $db2 = new DB_ConLite; + } + + $sql2 = "SELECT b.name AS tplname, b.idtpl AS idtpl, b.description AS description FROM - ".$cfg["tab"]["tpl_conf"]." AS a, - ".$cfg["tab"]["tpl"]." AS b + " . $cfg["tab"]["tpl_conf"] . " AS a, + " . $cfg["tab"]["tpl"] . " AS b WHERE - a.idtplcfg = '".Contenido_Security::toInteger($idtplcfg)."' AND + a.idtplcfg = '" . Contenido_Security::toInteger($idtplcfg) . "' AND a.idtpl = b.idtpl"; - $db2->query($sql2); - $db2->next_record(); + $db2->query($sql2); + $db2->next_record(); - $a_tplname = $db2->f("tplname"); - $a_idtpl = $db2->f("idtpl"); - - $templateDescription = $db2->f("description"); - - - # Uses Category Template - if ( 0 == $idtplcfg ) - { - $a_tplname = "--- ".i18n("None")." ---"; - } + $a_tplname = $db2->f("tplname"); + $a_idtpl = $db2->f("idtpl"); - # Make Startarticle button - $imgsrc = "isstart"; - - if ($is_start == false) { - $imgsrc.='0'; - } else { - $imgsrc.='1'; - } - - if (isArtInMultipleUse($idart)) { - $imgsrc.='m'; - } + $templateDescription = $db2->f("description"); - if ((int)$redirect == 1) { - $imgsrc.='r'; - } - - $imgsrc.='.gif'; - if ( ($perm->have_perm_area_action("con","con_makestart") || $perm->have_perm_area_action_item("con","con_makestart",$idcat)) && $idcat != 0) { - if ( $is_start == false) { - $tmp_link = ''.i18n('; - } else { - $tmp_link = ''.i18n('; - } - } else { - if ($is_start == true) { - $sTitle = i18n("Start article"); - } else { - $sTitle = i18n("Normal article"); - } - - $tmp_img = ''.$sTitle.''; - - $tmp_link = $tmp_img; - } + # Uses Category Template + if (0 == $idtplcfg) { + $a_tplname = "--- " . i18n("None") . " ---"; + } - $tmp_start = $tmp_link; + # Make Startarticle button + $imgsrc = "isstart"; - # Make copy button - if ( ($perm->have_perm_area_action("con","con_duplicate") || $perm->have_perm_area_action_item("con","con_duplicate",$idcat)) && $idcat != 0) { - - $imgsrc = "but_copy.gif"; - $tmp_link = ''.i18n('; - } else { - $tmp_link = ""; - } + if ($is_start == false) { + $imgsrc .= '0'; + } else { + $imgsrc .= '1'; + } - if ($idlang != $lang) - { - $duplicatelink = ""; - } else { - $duplicatelink = $tmp_link; - } - - $subject = urlencode(sprintf(i18n("Reminder for Article '%s'"),$title)); - $mycatname = ""; - conCreateLocationString($idcat, " / ", $mycatname); - $message = urlencode(sprintf(i18n("Reminder for Article '%s'\nCategory: %s"),$title,$mycatname)); + if (isArtInMultipleUse($idart)) { + $imgsrc .= 'm'; + } - $todolink = new TODOLink("idart", $idart, $subject, $message); + if ((int) $redirect == 1) { + $imgsrc .= 'r'; + } - # Make On-/Offline button - if ( $online ) { - if (($perm->have_perm_area_action("con","con_makeonline") || - $perm->have_perm_area_action_item("con","con_makeonline",$idcat)) && ($idcat != 0)) - { - $tmp_online = ''.i18n('; - } else { - $tmp_online = ''.i18n('; - } - } else { - if (($perm->have_perm_area_action("con","con_makeonline") || - $perm->have_perm_area_action_item("con","con_makeonline",$idcat)) && ($idcat != 0)) - { - $tmp_online = ''.i18n('; - } else { - $tmp_online = ''.i18n('; - } - } + $imgsrc .= '.gif'; - if ($idlang != $lang) - { - $onlinelink = ""; - } else { - $onlinelink = $tmp_online; - } + if (($perm->have_perm_area_action("con", "con_makestart") || $perm->have_perm_area_action_item("con", "con_makestart", $idcat)) && $idcat != 0) { + if ($is_start == false) { + $tmp_link = '' . i18n('; + } else { + $tmp_link = '' . i18n('; + } + } else { + if ($is_start == true) { + $sTitle = i18n("Start article"); + } else { + $sTitle = i18n("Normal article"); + } - # Delete button - if (($perm->have_perm_area_action("con","con_deleteart") || - $perm->have_perm_area_action_item("con","con_deleteart",$idcat)) && $inUse == false) - { - $tmp_title = $title; + $tmp_img = '' . $sTitle . ''; - if (strlen($tmp_title) > 30) - { - $tmp_title = substr($tmp_title, 0, 27) . "..."; - } - - $confirmString = sprintf(i18n("Are you sure to delete the following article:

%s"),clHtmlSpecialChars($tmp_title)); - $tmp_del = ''.i18n('; - - } else { - $tmp_del = ""; - } + $tmp_link = $tmp_img; + } - if ($idlang != $lang) - { - $deletelink = ""; - } else { - $deletelink = $tmp_del; - } + $tmp_start = $tmp_link; - // DIRECTION - cInclude('includes', 'functions.lang.php'); - $tpl->set('d', 'DIRECTION', 'dir="' . langGetTextDirection($lang) . '"'); + # Make copy button + if (($perm->have_perm_area_action("con", "con_duplicate") || $perm->have_perm_area_action_item("con", "con_duplicate", $idcat)) && $idcat != 0) { - # Next iteration + $imgsrc = "but_copy.gif"; + $tmp_link = '' . i18n('; + } else { + $tmp_link = ""; + } - # Articles found - $no_article = false; - foreach ($listColumns as $listColumn => $ctitle) - { - switch ($listColumn) - { - case "start": - $value = $tmp_start; - break; - case "title": - $value = $tmp_articletitle; - break; - case "changeddate": - $value = $modified; - break; - case "publisheddate": - $value = $published; - break; - case "sortorder": - $value = $sortkey; - break; - case "template": - $value = $a_tplname; - break; - case "actions": - $actions = array(); - foreach ($actionList as $actionItem) - { - switch ($actionItem) - { - case "todo": - $actionValue = $todolink->render(); - break; + if ($idlang != $lang) { + $duplicatelink = ""; + } else { + $duplicatelink = $tmp_link; + } + + $subject = urlencode(sprintf(i18n("Reminder for Article '%s'"), $title)); + $mycatname = ""; + conCreateLocationString($idcat, " / ", $mycatname); + $message = urlencode(sprintf(i18n("Reminder for Article '%s'\nCategory: %s"), $title, $mycatname)); + + $todolink = new TODOLink("idart", $idart, $subject, $message); + + # Make On-/Offline button + if ($online) { + if (($perm->have_perm_area_action("con", "con_makeonline") || $perm->have_perm_area_action_item("con", "con_makeonline", $idcat)) && ($idcat != 0)) { + $tmp_online = '' . i18n('; + } else { + $tmp_online = '' . i18n('; + } + } else { + if (($perm->have_perm_area_action("con", "con_makeonline") || $perm->have_perm_area_action_item("con", "con_makeonline", $idcat)) && ($idcat != 0)) { + $tmp_online = '' . i18n('; + } else { + $tmp_online = '' . i18n('; + } + } + + if ($idlang != $lang) { + $onlinelink = ""; + } else { + $onlinelink = $tmp_online; + } + + # Delete button + if (($perm->have_perm_area_action("con", "con_deleteart") || $perm->have_perm_area_action_item("con", "con_deleteart", $idcat)) && $inUse == false) { + $tmp_title = $title; + + if (strlen($tmp_title) > 30) { + $tmp_title = substr($tmp_title, 0, 27) . "..."; + } + + $confirmString = sprintf(i18n("Are you sure to delete the following article:

%s"), clHtmlSpecialChars($tmp_title)); + $tmp_del = '' . i18n('; + } else { + $tmp_del = ""; + } + + if ($idlang != $lang) { + $deletelink = ""; + } else { + $deletelink = $tmp_del; + } + + // DIRECTION + cInclude('includes', 'functions.lang.php'); + $tpl->set('d', 'DIRECTION', 'dir="' . langGetTextDirection($lang) . '"'); + + # Next iteration + # Articles found + $no_article = false; + foreach ($listColumns as $listColumn => $ctitle) { + switch ($listColumn) { + case "start": + $value = $tmp_start; + break; + case "title": + $value = $tmp_articletitle; + break; + case "changeddate": + $value = $modified; + break; + case "publisheddate": + $value = $published; + break; + case "sortorder": + $value = $sortkey; + break; + case "template": + $value = $a_tplname; + break; + case "actions": + $actions = array(); + foreach ($actionList as $actionItem) { + switch ($actionItem) { + case "todo": + $actionValue = $todolink->render(); + break; case "artconf": $actionValue = $tmp_artconf; - break; - case "online": - $actionValue = $onlinelink; - break; - case "locked": - $actionValue = $lockedlink; - break; - case "duplicate": - $actionValue = $duplicatelink; - break; - case "delete": - $actionValue = $deletelink; - break; - case "usetime": - $actionValue = $usetime; - break; - default: - /* Ask chain about the entry */ - $_cecIterator = $_cecRegistry->getIterator("Contenido.ArticleList.RenderAction"); + break; + case "online": + $actionValue = $onlinelink; + break; + case "locked": + $actionValue = $lockedlink; + break; + case "duplicate": + $actionValue = $duplicatelink; + break; + case "delete": + $actionValue = $deletelink; + break; + case "usetime": + $actionValue = $usetime; + break; + default: + /* Ask chain about the entry */ + $_cecIterator = $_cecRegistry->getIterator("Contenido.ArticleList.RenderAction"); $contents = array(); - if ($_cecIterator->count() > 0) - { - while ($chainEntry = $_cecIterator->next()) - { - $contents[] = $chainEntry->execute($idcat, $idart, $idartlang, $actionItem); - } - } - $actionValue = implode("", $contents); - break; - } + if ($_cecIterator->count() > 0) { + while ($chainEntry = $_cecIterator->next()) { + $contents[] = $chainEntry->execute($idcat, $idart, $idartlang, $actionItem); + } + } + $actionValue = implode("", $contents); + break; + } + + $actions[] = $actionValue; + } - $actions[] = $actionValue; - } - if ($tmp_sync != '') { $actions[] = $tmp_sync; } - - $value = implode("\n", $actions); - break; - default: - $contents = array(); - /* Call chain to retrieve value */ - $_cecIterator = $_cecRegistry->getIterator("Contenido.ArticleList.RenderColumn"); - - if ($_cecIterator->count() > 0) - { - $contents = array(); - while ($chainEntry = $_cecIterator->next()) - { - $contents[] = $chainEntry->execute($idcat, $idart, $idartlang, $listColumn); - } - } - $value = implode("", $contents); - } - $artlist[$tmp_rowid][$listColumn] = $value; - $artlist[$tmp_rowid]['templateDescription'] = $templateDescription; - } - } + + $value = implode("\n", $actions); + break; + default: + $contents = array(); + /* Call chain to retrieve value */ + $_cecIterator = $_cecRegistry->getIterator("Contenido.ArticleList.RenderColumn"); + + if ($_cecIterator->count() > 0) { + $contents = array(); + while ($chainEntry = $_cecIterator->next()) { + $contents[] = $chainEntry->execute($idcat, $idart, $idartlang, $listColumn); + } + } + $value = implode("", $contents); + } + $artlist[$tmp_rowid][$listColumn] = $value; + $artlist[$tmp_rowid]['templateDescription'] = $templateDescription; + } + } - $headers = array(); + $headers = array(); - foreach ($listColumns as $key => $listColumn) - { - /* Dirty hack to force column widths */ - if ($key == "title" || $listColumn == i18n("Title")) - { - $headers[] = ''.$listColumn.''; - } else { - $headers[] = ''.$listColumn.''; - } - } + foreach ($listColumns as $key => $listColumn) { + /* Dirty hack to force column widths */ + if ($key == "title" || $listColumn == i18n("Title")) { + $headers[] = '' . $listColumn . ''; + } else { + $headers[] = '' . $listColumn . ''; + } + } - $tpl->set('s', 'HEADERS', implode("\n", $headers)); + $tpl->set('s', 'HEADERS', implode("\n", $headers)); - if($elemperpage > 0 && $iArticleCount > 0) { - $sBrowseLinks = ""; - for ($i = 1; $i <= ceil($iArticleCount / $elemperpage); $i++) { - $iNext = ($i - 1) * $elemperpage; - if ($sBrowseLinks !== "") { - $sBrowseLinks .= " "; - } - if ($next == $iNext) { - $sBrowseLinks .= $i."\n"; // I'm on the current page, no link - } else { - $tmp_alink = $sess->url("main.php?area=con&frame=$frame&idcat=$idcat&next=$iNext"); - $sBrowseLinks .= ''.$i.''."\n"; - } - } - $tpl->set('s', 'NEXT', $next); - $tpl->set('s', 'BROWSE', sprintf(i18n("Go to page: %s"), $sBrowseLinks)); - } else { - $tpl->set('s', 'NEXT', "0"); - $tpl->set('s', 'BROWSE', sprintf(i18n("Go to page: %s"), "1")); - } - - $tpl->set('s', 'CLICK_ROW_NOTIFICATION', i18n("with click select line for further treatment")); - + if ($elemperpage > 0 && $iArticleCount > 0) { + $sBrowseLinks = ""; + for ($i = 1; $i <= ceil($iArticleCount / $elemperpage); $i++) { + $iNext = ($i - 1) * $elemperpage; + if ($sBrowseLinks !== "") { + $sBrowseLinks .= " "; + } + if ($next == $iNext) { + $sBrowseLinks .= $i . "\n"; // I'm on the current page, no link + } else { + $tmp_alink = $sess->url("main.php?area=con&frame=$frame&idcat=$idcat&next=$iNext"); + $sBrowseLinks .= '' . $i . '' . "\n"; + } + } + $tpl->set('s', 'NEXT', $next); + $tpl->set('s', 'BROWSE', sprintf(i18n("Go to page: %s"), $sBrowseLinks)); + } else { + $tpl->set('s', 'NEXT', "0"); + $tpl->set('s', 'BROWSE', sprintf(i18n("Go to page: %s"), "1")); + } - if (count($artlist) > 0) - { - foreach ($artlist as $key2 => $artitem) - { - if ($firstMark == false) { - $script = 'function initTheOne() { - var theOne = document.getElementById("'.$key2.'"); + $tpl->set('s', 'CLICK_ROW_NOTIFICATION', i18n("with click select line for further treatment")); + + + if (count($artlist) > 0) { + foreach ($artlist as $key2 => $artitem) { + if ($firstMark == false) { + $script = 'function initTheOne() { + var theOne = document.getElementById("' . $key2 . '"); artRow.reset(); artRow.over( theOne ); artRow.click( theOne ) } initTheOne()'; - $firstMark = true; - $tpl->set('s', 'ROWMARKSCRIPT', $script); - } + $firstMark = true; + $tpl->set('s', 'ROWMARKSCRIPT', $script); + } - $cells = array(); + $cells = array(); + + foreach ($listColumns as $key => $listColumn) { + // Description for hover effect + if ($key == 'template') { + $templateDescription = $artitem['templateDescription']; + $descString = '' . $artitem[$key] . ''; - foreach ($listColumns as $key => $listColumn) - { - // Description for hover effect - if($key == 'template') - { - $templateDescription = $artitem['templateDescription']; - $descString = ''.$artitem[$key].''; - $sTemplatename = capiStrTrimHard($artitem[$key], 20); if (strlen($artitem[$key]) > 20) { - $cells[] = ''.$sTemplatename.''; + $cells[] = '' . $sTemplatename . ''; } else { - $cells[] = ''.$artitem[$key].''; + $cells[] = '' . $artitem[$key] . ''; } + } else { + $cells[] = '' . $artitem[$key] . ''; } - else - { - $cells[] = ''.$artitem[$key].''; - } - } - $tpl->set('d', 'CELLS', implode("\n", $cells)); - $tpl->set('d', 'BGCOLOR', $colitem[$key2]); - + } + $tpl->set('d', 'CELLS', implode("\n", $cells)); + $tpl->set('d', 'BGCOLOR', $colitem[$key2]); + if ($colitem[$key2] == $cfg["color"]["table_dark_sync"] || $colitem[$key2] == $cfg["color"]["table_light_sync"]) { $tpl->set('d', 'CSS_CLASS', 'class="con_sync"'); } else { $tpl->set('d', 'CSS_CLASS', ''); } - - $tpl->set('d', 'ROWID', $key2); - $tpl->next(); - } - }else - { - $emptyCell = ''.i18n("No articles found").''; - $tpl->set('d', 'CELLS', $emptyCell); - $tpl->set('s', 'ROWMARKSCRIPT', ''); - } - # Sortierungs select - $s_types = array(1 => i18n("Alphabetical"), - 2 => i18n("Last change"), - 3 => i18n("Published date"), - 4 => i18n("Sort key")); + $tpl->set('d', 'ROWID', $key2); + $tpl->next(); + } + } else { + $emptyCell = '' . i18n("No articles found") . ''; + $tpl->set('d', 'CELLS', $emptyCell); + $tpl->set('s', 'ROWMARKSCRIPT', ''); + } - $tpl2 = new Template; - $tpl2->set('s', 'NAME', 'sort'); - $tpl2->set('s', 'CLASS', 'text_medium'); - $tpl2->set('s', 'OPTIONS', 'onchange="artSort(this)"'); + # Sortierungs select + $s_types = array(1 => i18n("Alphabetical"), + 2 => i18n("Last change"), + 3 => i18n("Published date"), + 4 => i18n("Sort key")); - foreach ($s_types as $key => $value) { + $tpl2 = new Template; + $tpl2->set('s', 'NAME', 'sort'); + $tpl2->set('s', 'CLASS', 'text_medium'); + $tpl2->set('s', 'OPTIONS', 'onchange="artSort(this)"'); - $selected = ( $sort == $key ) ? 'selected="selected"' : ''; + foreach ($s_types as $key => $value) { - $tpl2->set('d', 'VALUE', $key); - $tpl2->set('d', 'CAPTION', $value); - $tpl2->set('d', 'SELECTED', $selected); - $tpl2->next(); + $selected = ( $sort == $key ) ? 'selected="selected"' : ''; - } + $tpl2->set('d', 'VALUE', $key); + $tpl2->set('d', 'CAPTION', $value); + $tpl2->set('d', 'SELECTED', $selected); + $tpl2->next(); + } - $select = ( !$no_article ) ? $tpl2->generate($cfg["path"]["templates"] . $cfg['templates']['generic_select'], true) : ' '; - $caption = ( !$no_article ) ? i18n("Sort articles:") : ' '; + $select = (!$no_article ) ? $tpl2->generate($cfg["path"]["templates"] . $cfg['templates']['generic_select'], true) : ' '; + $caption = (!$no_article ) ? i18n("Sort articles:") : ' '; - $tpl->set('s', 'ARTSORTCAPTION', $caption); - $tpl->set('s', 'ARTSORT', $select); + $tpl->set('s', 'ARTSORTCAPTION', $caption); + $tpl->set('s', 'ARTSORT', $select); - # Elements per Page select - $aElemPerPage = array(0 => i18n("All"), - 25 => "25", - 50 => "50", - 75 => "75", - 100 => "100"); + # Elements per Page select + $aElemPerPage = array(0 => i18n("All"), + 25 => "25", + 50 => "50", + 75 => "75", + 100 => "100"); - $tpl2 = new Template; - $tpl2->set('s', 'NAME', 'sort'); - $tpl2->set('s', 'CLASS', 'text_medium'); - $tpl2->set('s', 'OPTIONS', 'onchange="changeElemPerPage(this)"'); + $tpl2 = new Template; + $tpl2->set('s', 'NAME', 'sort'); + $tpl2->set('s', 'CLASS', 'text_medium'); + $tpl2->set('s', 'OPTIONS', 'onchange="changeElemPerPage(this)"'); - foreach ($aElemPerPage as $key => $value) { - $selected = ( $elemperpage == $key ) ? 'selected="selected"' : ''; + foreach ($aElemPerPage as $key => $value) { + $selected = ( $elemperpage == $key ) ? 'selected="selected"' : ''; - $tpl2->set('d', 'VALUE', $key); - $tpl2->set('d', 'CAPTION', $value); - $tpl2->set('d', 'SELECTED', $selected); - $tpl2->next(); - } + $tpl2->set('d', 'VALUE', $key); + $tpl2->set('d', 'CAPTION', $value); + $tpl2->set('d', 'SELECTED', $selected); + $tpl2->next(); + } - $select = ( !$no_article ) ? $tpl2->generate($cfg["path"]["templates"] . $cfg['templates']['generic_select'], true) : ' '; - $caption = ( !$no_article ) ? i18n("Items per page:") : ' '; + $select = (!$no_article ) ? $tpl2->generate($cfg["path"]["templates"] . $cfg['templates']['generic_select'], true) : ' '; + $caption = (!$no_article ) ? i18n("Items per page:") : ' '; - $tpl->set('s', 'ELEMPERPAGECAPTION', $caption); - $tpl->set('s', 'ELEMPERPAGE', $select); + $tpl->set('s', 'ELEMPERPAGECAPTION', $caption); + $tpl->set('s', 'ELEMPERPAGE', $select); - - # Extract Category and Catcfg - $sql = "SELECT + + # Extract Category and Catcfg + $sql = "SELECT b.name AS name, d.idtpl AS idtpl FROM - (".$cfg["tab"]["cat"]." AS a, - ".$cfg["tab"]["cat_lang"]." AS b, - ".$cfg["tab"]["tpl_conf"]." AS c) + (" . $cfg["tab"]["cat"] . " AS a, + " . $cfg["tab"]["cat_lang"] . " AS b, + " . $cfg["tab"]["tpl_conf"] . " AS c) LEFT JOIN - ".$cfg["tab"]["tpl"]." AS d + " . $cfg["tab"]["tpl"] . " AS d ON d.idtpl = c.idtpl WHERE - a.idclient = '".Contenido_Security::toInteger($client)."' AND - a.idcat = '".Contenido_Security::toInteger($idcat)."' AND - b.idlang = '".Contenido_Security::toInteger($lang)."' AND + a.idclient = '" . Contenido_Security::toInteger($client) . "' AND + a.idcat = '" . Contenido_Security::toInteger($idcat) . "' AND + b.idlang = '" . Contenido_Security::toInteger($lang) . "' AND b.idcat = a.idcat AND c.idtplcfg = b.idtplcfg"; - $db->query($sql); + $db->query($sql); - if ($db->next_record()) - { - //$foreignlang = false; - //conCreateLocationString($idcat, " / ", $cat_name); - } + if ($db->next_record()) { + //$foreignlang = false; + //conCreateLocationString($idcat, " / ", $cat_name); + } - // Show path of selected category to user - prCreateURLNameLocationString($idcat, '/', $cat_name_tmp); - - if ($cat_name_tmp != '') { - $cat_name = '
'; - $cat_name .= $cat_name_tmp.'/'; - $cat_name .= (isset($sFistArticleName))?clHtmlSpecialChars($sFistArticleName):''; - $cat_name .= "
"; - } else { - $cat_name = ''; - } + // Show path of selected category to user + prCreateURLNameLocationString($idcat, '/', $cat_name_tmp); - $cat_idtpl = $db->f("idtpl"); + if ($cat_name_tmp != '') { + $cat_name = '
'; + $cat_name .= $cat_name_tmp . '/'; + $cat_name .= (isset($sFistArticleName)) ? clHtmlSpecialChars($sFistArticleName) : ''; + $cat_name .= "
"; + } else { + $cat_name = ''; + } - # Hinweis wenn kein Artikel gefunden wurde - if ( $no_article ) { + $cat_idtpl = $db->f("idtpl"); - $tpl->set("d", "START", " "); - $tpl->set("d", "ARTICLE", i18n("No articles found")); - $tpl->set("d", "PUBLISHED", " "); - $tpl->set("d", "LASTMODIFIED", " "); - $tpl->set("d", "ARTCONF", " "); - $tpl->set("d", "TPLNAME", " "); - $tpl->set("d", "LOCKED", " "); - $tpl->set("d", "DUPLICATE", " "); - $tpl->set("d", "TPLCONF", " "); - $tpl->set("d", "ONLINE", " "); - $tpl->set("d", "DELETE", " "); - $tpl->set("d", "USETIME", " "); - $tpl->set("d", "TODO", " "); - $tpl->set("d", "SORTKEY", " "); + # Hinweis wenn kein Artikel gefunden wurde + if ($no_article) { - $tpl->next(); - } + $tpl->set("d", "START", " "); + $tpl->set("d", "ARTICLE", i18n("No articles found")); + $tpl->set("d", "PUBLISHED", " "); + $tpl->set("d", "LASTMODIFIED", " "); + $tpl->set("d", "ARTCONF", " "); + $tpl->set("d", "TPLNAME", " "); + $tpl->set("d", "LOCKED", " "); + $tpl->set("d", "DUPLICATE", " "); + $tpl->set("d", "TPLCONF", " "); + $tpl->set("d", "ONLINE", " "); + $tpl->set("d", "DELETE", " "); + $tpl->set("d", "USETIME", " "); + $tpl->set("d", "TODO", " "); + $tpl->set("d", "SORTKEY", " "); - # Kategorie anzeigen und Konfigurieren button - /* JL 23.06.03 Check right from "Content" instead of "Category" - if ($perm->have_perm_area_action("str_tplcfg","str_tplcfg") || - $perm->have_perm_area_action_item("str_tplcfg","str_tplcfg",$lidcat)) */ + $tpl->next(); + } - if (($perm->have_perm_area_action_item( "con", "con_tplcfg_edit", $idcat ) || - $perm->have_perm_area_action( "con", "con_tplcfg_edit" ))) { + # Kategorie anzeigen und Konfigurieren button + /* JL 23.06.03 Check right from "Content" instead of "Category" + if ($perm->have_perm_area_action("str_tplcfg","str_tplcfg") || + $perm->have_perm_area_action_item("str_tplcfg","str_tplcfg",$lidcat)) */ - if ( 0 != $idcat ) { + if (($perm->have_perm_area_action_item("con", "con_tplcfg_edit", $idcat) || $perm->have_perm_area_action("con", "con_tplcfg_edit"))) { - $tpl->set('s', 'CATEGORY', $cat_name); - $tpl->set('s', 'CATEGORY_CONF', $tmp_img); - $tpl->set('s', 'CATEGORY_LINK', $tmp_link); - } else { - $tpl->set('s', 'CATEGORY', $cat_name); - $tpl->set('s', 'CATEGORY_CONF', ' '); - $tpl->set('s', 'CATEGORY_LINK', ' '); - } - } else { - $tpl->set('s', 'CATEGORY', $cat_name); - $tpl->set('s', 'CATEGORY_CONF', ' '); - $tpl->set('s', 'CATEGORY_LINK', ' '); - } + if (0 != $idcat) { - # SELF_URL (Variable f�r das javascript); - $tpl->set('s', 'SELF_URL', $sess->url("main.php?area=con&frame=4&idcat=$idcat")); + $tpl->set('s', 'CATEGORY', $cat_name); + $tpl->set('s', 'CATEGORY_CONF', $tmp_img); + $tpl->set('s', 'CATEGORY_LINK', $tmp_link); + } else { + $tpl->set('s', 'CATEGORY', $cat_name); + $tpl->set('s', 'CATEGORY_CONF', ' '); + $tpl->set('s', 'CATEGORY_LINK', ' '); + } + } else { + $tpl->set('s', 'CATEGORY', $cat_name); + $tpl->set('s', 'CATEGORY_CONF', ' '); + $tpl->set('s', 'CATEGORY_LINK', ' '); + } - # New Article link - if (($perm->have_perm_area_action("con_editart", "con_newart") || - $perm->have_perm_area_action_item("con_editart", "con_newart", $idcat))) - { - if ( $idcat != 0 && $cat_idtpl != 0) - { - $tpl->set('s', 'NEWARTICLE_TEXT', ''.i18n("Create new article").''); - $tpl->set('s', 'NEWARTICLE_IMG', ''.i18n('); - } - else - { - $tpl->set('s', 'NEWARTICLE_TEXT', ' '); - $tpl->set('s', 'NEWARTICLE_IMG', ' '); - } - } - else - { - $tpl->set('s', 'NEWARTICLE_TEXT', ' '); - $tpl->set('s', 'NEWARTICLE_IMG', ' '); - } + # SELF_URL (Variable f�r das javascript); + $tpl->set('s', 'SELF_URL', $sess->url("main.php?area=con&frame=4&idcat=$idcat")); - $str = ""; + # New Article link + if (($perm->have_perm_area_action("con_editart", "con_newart") || $perm->have_perm_area_action_item("con_editart", "con_newart", $idcat))) { + if ($idcat != 0 && $cat_idtpl != 0) { + $tpl->set('s', 'NEWARTICLE_TEXT', '' . i18n("Create new article") . ''); + $tpl->set('s', 'NEWARTICLE_IMG', '' . i18n('); + } else { + $tpl->set('s', 'NEWARTICLE_TEXT', ' '); + $tpl->set('s', 'NEWARTICLE_IMG', ' '); + } + } else { + $tpl->set('s', 'NEWARTICLE_TEXT', ' '); + $tpl->set('s', 'NEWARTICLE_IMG', ' '); + } - /* Session ID */ - $tpl->set('s', 'SID', $sess->id); + $str = ""; - $tpl->set('s', 'NOTIFICATION', $str); + /* Session ID */ + $tpl->set('s', 'SID', $sess->id); - # Generate template - $tpl->generate($cfg['path']['templates'] . $cfg['templates']['con_art_overview']); - } else { - $notification->displayNotification("error", i18n("Permission denied")); - } + $tpl->set('s', 'NOTIFICATION', $str); + + # Generate template + $tpl->generate($cfg['path']['templates'] . $cfg['templates']['con_art_overview']); + } else { + $notification->displayNotification("error", i18n("Permission denied")); + } } else { - $tpl->reset(); - $tpl->set('s', 'CONTENTS', ''); - $tpl->generate($cfg['path']['templates'] . $cfg['templates']['blank']); + $tpl->reset(); + $tpl->set('s', 'CONTENTS', ''); + $tpl->generate($cfg['path']['templates'] . $cfg['templates']['blank']); } - ?> \ No newline at end of file