Source for file _browse_comments.view.php
Documentation is available at _browse_comments.view.php
* This file implements the comment browsing
* This file is part of the Quam Plures project - {@link http://quamplures.net/}.
* See also {@link https://launchpad.net/quam-plures}.
* @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
* @copyright (c)2003-2009 by Francois PLANQUE - {@link http://fplanque.net/}.
* Parts of this file are copyright (c)2005 by Daniel HAHLER - {@link http://thequod.de/contact}.
* @license http://quamplures.net/license.html GNU General Public License (GPL)
* {@internal Below is a list of authors who have contributed to design/coding of this file: }}
* @author fplanque: Francois PLANQUE.
if( !defined('QP_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
$block_item_Widget = new Widget( 'block_item' );
$block_item_Widget->title = T_('Feedback (Comments, Trackbacks...)');
$block_item_Widget->disp_template_replaced( 'block_start' );
// display a message if list is empty
// Display list of comments:
require dirname(__FILE__ ). '/_comment_list.inc.php';
$block_item_Widget->disp_template_replaced( 'block_end' );
|