如何在WHMCS中的name_of_module_ouput函数中包含tpl文件

时间:2013-01-29 07:52:24

标签: php whmcs

需要知道如何包含tpl文件并为这些tpl文件赋值。在本例中

function addonexample_output($vars) {   
    $modulelink = $vars['modulelink'];
    $version = $vars['version'];
    $option1 = $vars['option1'];
    $option2 = $vars['option2'];
    $option3 = $vars['option3'];
    $option4 = $vars['option4'];
    $option5 = $vars['option5'];
    $LANG = $vars['_lang'];

    echo '<p>'.$LANG['intro'].'</p>
<p>'.$LANG['description'].'</p>
<p>'.$LANG['documentation'].'</p>';

}

输出是echo,但我需要包含tpl文件并从_output函数中分配值。

1 个答案:

答案 0 :(得分:0)

包含.tpl文件用作这样的句子:

{include file="$template/tplfileuneed.tpl" title=$LANG.knowledgebasecategories}

这仅适用于模板文件夹。

祝你好运!