mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
* Comment menu default template
|
|
*
|
|
* $Source: /cvs_backup/e107_0.8/e107_plugins/comment_menu/comment_menu_template.php,v $
|
|
* $Revision$
|
|
* $Date$
|
|
* $Author$
|
|
*/
|
|
|
|
$sc_style['CM_TYPE']['pre'] = "[";
|
|
$sc_style['CM_TYPE']['post'] = "]";
|
|
|
|
$sc_style['CM_AUTHOR']['pre'] = CM_L13." ";
|
|
$sc_style['CM_AUTHOR']['post'] = "";
|
|
|
|
$sc_style['CM_DATESTAMP']['pre'] = " ";
|
|
$sc_style['CM_DATESTAMP']['post'] = "";
|
|
|
|
$sc_style['CM_COMMENT']['pre'] = "";
|
|
$sc_style['CM_COMMENT']['post'] = "";
|
|
|
|
// $SC_WRAPPER['CM_AUTHOR'] = CM_L13."{---}"; //XXX Not working at time of review
|
|
|
|
if (!isset($COMMENT_MENU_TEMPLATE))
|
|
{
|
|
$COMMENT_MENU_TEMPLATE['start'] = "<ul class='comment-menu'>";
|
|
|
|
$COMMENT_MENU_TEMPLATE['item'] = "<li>
|
|
{CM_URL_PRE}{CM_TYPE} {CM_HEADING}{CM_URL_POST}
|
|
<div>{CM_COMMENT}</div>
|
|
<small class='muted'>{CM_AUTHOR} {CM_DATESTAMP}</small>
|
|
</li>";
|
|
|
|
$COMMENT_MENU_TEMPLATE['end'] = "</ul>";
|
|
}
|
|
?>
|