本文整理汇总了PHP中FLEA::loadFile方法的典型用法代码示例。如果您正苦于以下问题:PHP FLEA::loadFile方法的具体用法?PHP FLEA::loadFile怎么用?PHP FLEA::loadFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FLEA
的用法示例。
在下文中一共展示了FLEA::loadFile方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionSidebar
/**
* 显示左侧菜单
*/
function actionSidebar()
{
// 首先定义菜单
$catalog = FLEA::loadFile('Config_Menu.php');
// 借助 FLEA_Dispatcher_Auth 对用户角色和控制器 ACT 进行验证
$dispatcher =& $this->_getDispatcher();
include APP_DIR . '/ZobSidebar.php';
}
示例2: load_file
/**
* 载入指定的文件(已经过时,用 FLEA::loadFile() 代替)
*
* @return boolean
* @deprecated
*/
function load_file($filename, $loadOnce = false)
{
return FLEA::loadFile($filename, $loadOnce);
}
示例3: defined
<?php
defined('APP_DIR') or die('Direct Access to this location is not allowed.');
FLEA::loadFile('FLEA_Helper_Html.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php
echo RESPONSE_CHARSET;
?>
" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script language="javascript" type="text/javascript">
<!--
function fnOnBack() {
var url = '<?php
echo $this->_getBack();
?>
';
document.location.href = url;
}
function fnOnSubmit(form) {
form.Save.disabled = true;
if (form.title.value == '' || form.body.value == '')
{
alert('<?php
echo h(_T('ui_c_form_validation'));
?>
');