mirror of
https://github.com/e107inc/e107.git
synced 2025-07-31 20:00:37 +02:00
comment_menu - 0.8 aware
This commit is contained in:
@@ -1,25 +1,23 @@
|
||||
<?php
|
||||
/*
|
||||
+ ----------------------------------------------------------------------------+
|
||||
| e107 website system
|
||||
|
|
||||
| <20>Steve Dunstan 2001-2002
|
||||
| http://e107.org
|
||||
| jalist@e107.org
|
||||
|
|
||||
| Released under the terms and conditions of the
|
||||
| GNU General Public License (http://gnu.org).
|
||||
|
|
||||
| $Source: /cvs_backup/e107_0.8/e107_plugins/comment_menu/comment_menu_shortcodes.php,v $
|
||||
| $Revision: 1.4 $
|
||||
| $Date: 2009-08-23 10:57:51 $
|
||||
| $Author: marj_nl_fr $
|
||||
+----------------------------------------------------------------------------+
|
||||
* 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 shortcodes
|
||||
*
|
||||
* $Source: /cvs_backup/e107_0.8/e107_plugins/comment_menu/comment_menu_shortcodes.php,v $
|
||||
* $Revision: 1.5 $
|
||||
* $Date: 2009-10-08 10:53:02 $
|
||||
* $Author: secretr $
|
||||
*/
|
||||
|
||||
if (!defined('e107_INIT')) { exit; }
|
||||
global $tp;
|
||||
$comment_menu_shortcodes = $tp -> e_sc -> parse_scbatch(__FILE__);
|
||||
|
||||
e107::getRegistry('plugin/comment_menu/current');
|
||||
/*
|
||||
SC_BEGIN CM_ICON
|
||||
//TODO review bullet
|
||||
@@ -36,38 +34,39 @@ return $bullet;
|
||||
SC_END
|
||||
|
||||
SC_BEGIN CM_DATESTAMP
|
||||
global $row;
|
||||
$row = e107::getRegistry('plugin/comment_menu/current');
|
||||
$gen = new convert;
|
||||
return $gen->convert_date($row['comment_datestamp'], "short");
|
||||
SC_END
|
||||
|
||||
SC_BEGIN CM_HEADING
|
||||
global $row;
|
||||
$row = e107::getRegistry('plugin/comment_menu/current');
|
||||
return $row['comment_title'];
|
||||
SC_END
|
||||
|
||||
SC_BEGIN CM_URL_PRE
|
||||
global $row;
|
||||
$row = e107::getRegistry('plugin/comment_menu/current');
|
||||
return ($row['comment_url'] ? "<a href='".$row['comment_url']."'>" : "");
|
||||
SC_END
|
||||
|
||||
SC_BEGIN CM_URL_POST
|
||||
global $row;
|
||||
$row = e107::getRegistry('plugin/comment_menu/current');
|
||||
return ($row['comment_url'] ? "</a>" : "");
|
||||
SC_END
|
||||
|
||||
SC_BEGIN CM_TYPE
|
||||
global $row;
|
||||
$row = e107::getRegistry('plugin/comment_menu/current');
|
||||
return $row['comment_type'];
|
||||
SC_END
|
||||
|
||||
SC_BEGIN CM_AUTHOR
|
||||
global $row;
|
||||
$row = e107::getRegistry('plugin/comment_menu/current');
|
||||
return $row['comment_author'];
|
||||
SC_END
|
||||
|
||||
SC_BEGIN CM_COMMENT
|
||||
global $row, $menu_pref, $pref, $tp;
|
||||
global $menu_pref, $pref, $tp;
|
||||
$row = e107::getRegistry('plugin/comment_menu/current');
|
||||
$COMMENT = '';
|
||||
if($menu_pref['comment_characters']>0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user