0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
modules
/
[
Home
]
File: mod-func-blog_last_comments.php
<?php // (c) Copyright 2002-2011 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: mod-func-blog_last_comments.php 33195 2011-03-02 17:43:40Z changi67 $ //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; } function module_blog_last_comments_info() { return array( 'name' => tra('Newest Blog Post Comments'), 'description' => tra('Displays the specified number of the blog post comments most recently added.'), 'prefs' => array( 'feature_blogs' ), 'params' => array( 'nodate' => array( 'name' => tra('No date'), 'description' => tra('If set to "y", the date of comments is not displayed in the module box.') . " " . tra('Default: "n".') ), 'moretooltips' => array( 'name' => tra('Verbose tooltips'), 'description' => tra('If set to "y", blog post title is only visible as a tooltip and not displayed.') . " " . tra('Default: "n"') . " " . tra('Options: "y,n"') ) ), 'common_params' => array('nonums', 'rows') ); } function module_blog_last_comments( $mod_reference, $module_params ) { global $bloglib, $smarty; include_once ('lib/blogs/bloglib.php'); $comments = $bloglib->list_blog_post_comments('y', $mod_reference["rows"]); $smarty->assign('comments', $comments['data']); $smarty->assign('moretooltips', isset($module_params['moretooltips']) ? $module_params['moretooltips'] : 'n'); $smarty->assign('nodate', isset($module_params['nodate']) ? $module_params['nodate'] : 'n'); }