0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
lib
/
smarty_tiki
/
[
Home
]
File: function.article.php
<?php //this script may only be included - so its better to die if called directly. if (strpos($_SERVER["SCRIPT_NAME"],basename(__FILE__)) !== false) { header("location: index.php"); exit; } /* inserts the content of an rss feed into a module */ function smarty_function_article($params, &$smarty) { global $tikilib; global $dbTiki; extract($params); if(empty($max)) { $max = 99; } // skip="x,y" will not print Xth and Yth items // useful to avoid default first items if (!empty($skip) && preg_match('/^\d+(,\d+)*$/', $skip)) { $skipped_items = explode(',', $skip); $skip = array(); foreach ($skipped_items as $i) { $skip[$i] = 1; } } else { $skip = array(); } $list_articles = $tikilib->list_articles(0, $max, 'publishDate_desc', '', '', '', '', '', '', 1); $x = ""; for($i=0;sizeof($list_articles['data'])>$i;$i++) { $x.= "<div class=\"articles\">"; $x.= "<a href=\"tiki-read_article.php?articleId=".$list_articles['data'][$i]['articleId']."\" class=\"article\">"; $x.= $list_articles['data'][$i]['title']." - ".$tikilib->date_format('%d/%m/%Y',$list_articles['data'][$i]['publishDate'])."</a></div>\n"; } echo $x; } ?>