1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-18 05:09:05 +01:00
php-e107/e107_plugins/comment_menu/comment_menu_template.php

35 lines
931 B
PHP
Raw Normal View History

2006-12-02 04:36:16 +00:00
<?php
/*
2009-10-08 10:53:02 +00:00
* e107 website system
*
* Copyright (C) 2001-2008 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: 1.2 $
* $Date: 2009-10-08 10:53:02 $
* $Author: secretr $
2006-12-02 04:36:16 +00:00
*/
$sc_style['CM_TYPE']['pre'] = "[";
$sc_style['CM_TYPE']['post'] = "]";
$sc_style['CM_AUTHOR']['pre'] = CM_L13." <b>";
$sc_style['CM_AUTHOR']['post'] = "</b>";
$sc_style['CM_DATESTAMP']['pre'] = " ".CM_L11." ";
$sc_style['CM_DATESTAMP']['post'] = "";
$sc_style['CM_COMMENT']['pre'] = "";
$sc_style['CM_COMMENT']['post'] = "<br /><br />";
if (!isset($COMMENT_MENU_TEMPLATE)){
$COMMENT_MENU_TEMPLATE = "
{CM_ICON} {CM_URL_PRE}{CM_TYPE} {CM_HEADING}{CM_URL_POST}<br />
{CM_AUTHOR} {CM_DATESTAMP}<br />
{CM_COMMENT}";
}
?>