📄 function.osdplugin.php
字号:
<?php/** * Smarty plugin * @package Smarty * @subpackage plugins *//** * Smarty {osdplugin} function plugin * * Type: function<br> * Name: osdplugin<br> * Purpose: Calls an osdate plugin * @author Duane Hinkley, Down Home Consulting www.DownHomeConsutlting.com * @param string $name the name of the plugin * @param string $method the plugin method to call * @param array $param the plugin method's parameters * @return string the results from the plugin */ function smarty_function_osdplugin($param, &$smarty) { return $GLOBALS['mod']->executePlugin($param['name'], $param['method'], $param); //return $param['method']; }?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -