NAVIGATION
Der RT Artikelzähler gibt die Anzahl der vorhandenen Artikel in der aktuellen Strukturebene aus.
Siehe auch: NAV_LIST_UL & Artikelzähler
rt_article_count V1.0 2008/03/02
Docu: –
Forum: article counter near category name (menu) in visitor page
Autor: K.Heermann (flip-flop) http://planmatrix.de
CMS Version: >= 1.3
Version: V1.0
Tag: {ARTICLECOUNT}
Dateiname: rt_article_count.php
Ort: template/inc_script/frontend_init/
Bedingung: → /config/phpwcms/conf.inc.php
<?php // ================================================================ // Show the count of articles in the active category (V1.1) // 02.03.08 K.H. flip-flop // 25.04.08 K.H. Edit V1.1 // // Thanks to Jensensen for the inspiration // http://forum.phpwcms.org/viewtopic.php?p=100208#p100208 // http://www.phpwcms-howto.de/wiki/doku.php/deutsch/ersetzer_rts/frontend_render/artikelzaehler // // Input : {ARTICLECOUNT} // Output .e.g.: 17 // File: /template/inc_script/frontend_render/rt_article_count.php // Config: $phpwcms['allow_ext_render'] = 1; // ================================================================= // ---------------------------------------------------------------- // obligate check for phpwcms constants if (!defined('PHPWCMS_ROOT')) { die("You Cannot Access This Script Directly, Have a Nice Day."); } // ---------------------------------------------------------------- if( ! (strpos($content["all"],'{ARTICLECOUNT}')===false)) { $content["all"] = str_replace('{ARTICLECOUNT}', count($GLOBALS['content']["articles"]), $content["all"]); } ?>