{{indexmenu_n>20}} ====== Date: Last update artikel & cp ====== FIXME Better translate **RT to view the date of the last inserted/modified article or content part of the whole site.** In the script you can define if the articles/CPs in hidden categories should be included. \\ Articles located within custom/protected categories won't be included. The output can be customized according to the usual php-date rules. E.g. {DATE_UPDATE:d.m.Y H:i} delivers 01.02.2010 12:23 \\ or in the script is changed to set the format as in "conf.template.default.inc.php". The TAG for this: {DATE_UPDATE}. \\ //(At the end of the script, uncomment the line)//. Similar function, see: [[english/phpwcms_replacer_rts/frontend_render/newx]] \\ ---- **rt_date_last_update** V1.0 22.04.2011 Docu: -- \\ Forum: [[http://forum.phpwcms.org/viewtopic.php?f=16&t=21358]] **Author:** K.Heermann (flip-flop) http://planmatrix.de \\ **CMS Version:** >= 1.3 \\ **Version:** V1.0 \\ **Update 25.04.2011:** This eliminates the possibility to read other columns from the article field e.g. the ID of the article. * Correction for databases that support no subqueries in the SELECT statement. //(This eliminates the possibility to read other columns from the article field e.g. the ID of the article. For our purposes, this is unimportant).// * Correction: Special case when articles/CPs were created/edited in "Home" id = 0. TAG: **{DATE_UPDATE}** oor e.g. **{DATE_UPDATE:d.m.Y H:i}** \\ Filename: **rt_date_last_update.php** Folder: ** template/inc_script/frontend_render/ ** ***Condition:** -> [[http://www.phpwcms-docu.de/conf_inc_php_en.phtml|/config/phpwcms/conf.inc.php] \\ * ##$phpwcms['allow_ext_render'] = 1;## ---- ---- \\ ===== Description: ===== Settings of the variable **$show_hidden**: [0|1|2] * **Search by article date in** * - [0] not hidden categories * - [1] only hidden categories * - [2] all categories \\ The TAG **{DATE_UPDATE}** - commented lines at the end of the script: In one of these lines the comment can be removed to activate **{DATE_UPDATE}**. \\ The output settings of the date in this case relate to the variables in the file \\ "config/phpwcms/conf.template.default.inc.php". * $template_default['date']['long'] * $template_default['date']['medium'] * $template_default['date']['short'] The fourth line provides the output settings of the date directly in the script. \\ ===== Script: ===== Filename: rt_date_last_update.php \\ Folder: template/inc_script/frontend_render/ =1 AND "; // "hide" or "visible when active" break; default: $sql .= ""; // all categories } $sql .= "ac.acat_regonly=0 AND "; // "visible for users logged on only" // Article settings --------------- $sql .= "ar.article_public=1 AND ar.article_aktiv=1 AND "; // Article settings $sql .= "ar.article_deleted=0 AND ar.article_begin $result['0']['max_article_tstamp']) ) $result['0']['max_article_tstamp'] = $result0['0']['max_article_tstamp']; // ------------------ $my_date = (isset($result['0']['max_article_tstamp'])) ? $result['0']['max_article_tstamp']: time(); // Enable / disable the output form // Optional settings from "conf.template.default.inc.php". Have a look to // $template_default["date"]["language"] and // $template_default["date"]["long"/medium/short] // ------------------------------------------------ // $content["all"] = str_replace('{DATE_UPDATE}', international_date_format($template_default["date"]["language"], $template_default["date"]["long"], $my_date), $content["all"]); // $content["all"] = str_replace('{DATE_UPDATE}', international_date_format($template_default["date"]["language"], $template_default["date"]["medium"], $my_date), $content["all"]); // $content["all"] = str_replace('{DATE_UPDATE}', international_date_format($template_default["date"]["language"], $template_default["date"]["short"], $my_date), $content["all"]); // $content["all"] = str_replace('{DATE_UPDATE}', international_date_format($template_default["date"]["language"], 'd.m.Y H:i', $my_date), $content["all"]); $content["all"] = render_date($content["all"], $my_date, 'DATE_UPDATE'); } ?> \\