nagiosql的入口文件:index.php,这也是所有php程序的入口文件。是由apache指定的。
index.php 文件的开始引入了 require("functions/prepend_adm.php"); 说明其实nagiosql的入口文件为prepend_adm.php;
prepend_adm.php文件是nagiosql的主入口文件,它在整个程序中起到了至关重要的作用,它为整个程序传递了session信息等。
1 $conttp->setVariable("TITLE",translate('Welcome to'));
2 $conttp->setVariable("TITLE_LOGIN",translate('欢迎'));
$conttp->setVariable("USERNAME",translate('用户名')); $conttp->setVariable("PASSWORD",translate('密 码')); $conttp->setVariable("LOGIN",translate('登 陆'));
$conttp对像为HTML_Template_IT模板类对像,是在prepend_adm.php中声明过的。$conttp = new HTML_Template_IT($preBasePath ."templates/");
$conttp->setVariable("TITLE",translate('Welcome to'));中 setVariable方法为设置模板中TITLE变量的值,设置的值为translate('Welcome to')。
translate方法是翻译英文至中文方法,是为了国际化的实现。
$conttp->parse("main");中parse方法为分析main模板。执行此后才可使变量设置成功。
$conttp->show("main");中show为展示main模板。
当执行parse和show后才可使模板展示。
请尊重作者的成果,转载时注明出处。
意见及建议:rubydrew@qq.com