当前位置: 首页>>代码示例>>PHP>>正文


PHP jApp::getModulePath方法代码示例

本文整理汇总了PHP中jApp::getModulePath方法的典型用法代码示例。如果您正苦于以下问题:PHP jApp::getModulePath方法的具体用法?PHP jApp::getModulePath怎么用?PHP jApp::getModulePath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在jApp的用法示例。


在下文中一共展示了jApp::getModulePath方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getfile

 public function getfile()
 {
     $module = $this->param('targetmodule');
     if (!jApp::isModuleEnabled($module) || jApp::config()->modules[$module . '.access'] < 2) {
         throw new jException('jelix~errors.module.untrusted', $module);
     }
     $dir = jApp::getModulePath($module) . 'www/';
     $filename = realpath($dir . str_replace('..', '', $this->param('file')));
     if (!is_file($filename)) {
         $rep = $this->getResponse('html', true);
         $rep->bodyTpl = 'jelix~404.html';
         $rep->setHttpStatus('404', 'Not Found');
         return $rep;
     }
     $rep = $this->getResponse('binary');
     $dateModif = new DateTime();
     $dateModif->setTimestamp(filemtime($fileName));
     if ($rep->isValidCache($dateModif)) {
         return $rep;
     }
     $rep->doDownload = false;
     $rep->fileName = $filename;
     $rep->mimeType = \Jelix\FileUtilities\File::getMimeTypeFromFilename($rep->fileName);
     return $rep;
 }
开发者ID:mdouchin,项目名称:jelix,代码行数:25,代码来源:www.classic.php

示例2:

<?php

/**
* Displays the list of projects for ajax request
* @package   lizmap
* @subpackage view
* @author    3liz
* @copyright 2012 3liz
* @link      http://3liz.com
* @license    Mozilla Public License : http://www.mozilla.org/MPL/
*/
include jApp::getModulePath('view') . 'controllers/lizAjax.classic.php';
class ajaxCtrl extends lizAjaxCtrl
{
}
开发者ID:CREASIG,项目名称:lizmap-web-client,代码行数:15,代码来源:ajax.classic.php

示例3: getModulePath

 public function getModulePath($module, $includingExternal = false)
 {
     trigger_error("jCoordinator::getModulePath() is deprecated. Use jApp::getModulePath() instead", E_USER_NOTICE);
     return jApp::getModulePath($module, $includingExternal);
 }
开发者ID:havefnubb,项目名称:havefnubb,代码行数:5,代码来源:init.php


注:本文中的jApp::getModulePath方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。