0byt3m1n1
Path:
/
data
/
applications
/
aps
/
b2evolution
/
4.1.5b-1.bak
/
standard
/
htdocs
/
skins
/
[
Home
]
File: _comments.disp.php
<?php /** * This is the template that displays the links to the latest comments for a blog * * This file is not meant to be called directly. * It is meant to be called by an include in the main.page.php template. * To display a feedback, you should call a stub AND pass the right parameters * For example: /blogs/index.php?disp=comments * * b2evolution - {@link http://b2evolution.net/} * Released under GNU GPL License - {@link http://b2evolution.net/about/license.html} * @copyright (c)2003-2011 by Francois Planque - {@link http://fplanque.com/} * * @package evoskins */ if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' ); $CommentList = new CommentList2( $Blog ); // Filter list: $CommentList->set_filters( array( 'types' => array( 'comment', 'trackback', 'pingback' ), 'statuses' => array ( 'published' ), 'order' => 'DESC', 'comments' => 50, ) ); // Get ready for display (runs the query): $CommentList->display_init(); $CommentList->display_if_empty(); while( $Comment = & $CommentList->get_next() ) { // Loop through comments: // Load comment's Item object: $Comment->get_Item(); ?> <!-- ========== START of a COMMENT ========== --> <?php $Comment->anchor() ?> <div class="bComment"> <?php $Comment->avatar(); ?> <h3 class="bTitle"> <?php echo T_('In response to:') ?> <?php $Comment->Item->title( array( 'link_type' => 'permalink', ) ); ?> </h3> <div class="bCommentTitle"> <?php $Comment->author( /* before: */ '', /* after: */ '#', /* before_user: */ '', /* after_user: */ '#', /* format: */ 'htmlbody', /* makelink: */ true ) ?> <?php /* $Comment->author_url( '', ' · ', '' ) */ ?> </div> <div class="bCommentText"> <?php $Comment->content(); ?> </div> <div class="bCommentSmallPrint"> <?php $Comment->permanent_link( array( 'class' => 'permalink_right', 'nofollow' => true, ) ); ?> <?php $Comment->date() ?> @ <?php $Comment->time( 'H:i' ) ?> <?php $Comment->edit_link( ' · ' ) /* Link to backoffice for editing */ ?> <?php $Comment->delete_link( ' · ' ); /* Link to backoffice for deleting */ ?> </div> </div> <!-- ========== END of a COMMENT ========== --> <?php } // End of comment loop. /* * $Log: _comments.disp.php,v $ */ ?>