Seditio Source
Root |
./othercms/Cotonti-0.6.25/plugins/tags/tags.forums.newtopic.tags.php
<?PHP
/* ====================
[BEGIN_SED_EXTPLUGIN]
Code=tags
Part=forums.newtopic.tags
File=tags.forums.newtopic.tags
Hooks=forums.newtopic.tags
Tags=forums.newtopic.tpl:{FORUMS_NEWTOPIC_TOP_TAGS},{FORUMS_NEWTOPIC_TOP_TAGS_HINT},{FORUMS_NEWTOPIC_FORM_TAGS}
Order=10
[END_SED_EXTPLUGIN]
==================== */

/**
 * Part of plug tags
 *
 * @package Cotonti
 * @version 0.0.3
 * @author Trustmaster - Vladimir Sibirov
 * @copyright All rights reserved. 2008-2009
 * @license BSD
 */

defined('SED_CODE') or die('Wrong URL');

if(
$cfg['plugin']['tags']['forums'] && sed_auth('plug', 'tags', 'W'))
{
    require_once(
sed_langfile('tags'));
   
$t->assign(array(
   
'FORUMS_NEWTOPIC_TOP_TAGS' => $L['Tags'],
   
'FORUMS_NEWTOPIC_TOP_TAGS_HINT' => $L['tags_comma_separated'],
   
'FORUMS_NEWTOPIC_FORM_TAGS' => '<input class="tags_input" type="text" name="rtags" />'
   
));
   
$t->parse('MAIN.FORUMS_NEWTOPIC_TAGS');
}

?>