0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
wiki-plugins
/
[
Home
]
File: wikiplugin_smarty.php
<?php // (c) Copyright 2002-2011 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: wikiplugin_smarty.php 33567 2011-03-21 19:01:07Z lphuberdeau $ function wikiplugin_smarty_info() { return array( 'name' => tra('Smarty function'), 'documentation' => 'PluginSmarty', 'description' => tra('Insert a Smarty function'), 'prefs' => array('wikiplugin_smarty'), 'validate' => 'all', 'extraparams' => true, 'icon' => 'pics/icons/task_submitted.png', 'params' => array( 'name' => array( 'required' => false, 'name' => tra('Smarty Function'), 'description' => tra('The name of the smarty function that the button will activate. Available functions are: lib/smarty/libs/plugins/function.[name].php'), 'filter' => 'word', 'default' => '', ), ), ); } function wikiplugin_smarty($data, $params) { global $smarty; if (empty($params['name'])) { return tra('Incorrect parameter'); } $path = 'lib/smarty_tiki/function.'.$params['name'].'.php'; if (!file_exists($path)) { $path = 'lib/smarty/libs/plugins/function.'.$params['name'].'.php'; if(!file_exists($path)){ return tra('Incorrect parameter'); } } include_once($path); $func = 'smarty_function_'.$params['name']; $content = $func($params, $smarty); return '~np~'.$content.'~/np~'; }