本文整理汇总了PHP中ModUtil::getModuleBaseDir方法的典型用法代码示例。如果您正苦于以下问题:PHP ModUtil::getModuleBaseDir方法的具体用法?PHP ModUtil::getModuleBaseDir怎么用?PHP ModUtil::getModuleBaseDir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ModUtil
的用法示例。
在下文中一共展示了ModUtil::getModuleBaseDir方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _configureBase
/**
* Setup internal properties.
*
* @param $bundle
*
* @return void
*/
protected function _configureBase($bundle = null)
{
$this->systemBaseDir = realpath('.');
if (null !== $bundle) {
$this->name = $bundle->getName();
$this->domain = ZLanguage::getModuleDomain($this->name);
$this->baseDir = $bundle->getPath();
$versionClass = $bundle->getVersionClass();
$this->version = new $versionClass($bundle);
} else {
$className = $this->getReflection()->getName();
$separator = false === strpos($className, '_') ? '\\' : '_';
$parts = explode($separator, $className);
$this->name = $parts[0];
$this->baseDir = $this->libBaseDir = realpath(dirname($this->reflection->getFileName()) . '/../..');
if (realpath("{$this->baseDir}/lib/" . $this->name)) {
$this->libBaseDir = realpath("{$this->baseDir}/lib/" . $this->name);
}
$versionClass = "{$this->name}\\{$this->name}Version";
$versionClassOld = "{$this->name}_Version";
$versionClass = class_exists($versionClass) ? $versionClass : $versionClassOld;
$this->version = new $versionClass();
}
$this->modinfo = array('directory' => $this->name, 'type' => ModUtil::getModuleBaseDir($this->name) == 'system' ? ModUtil::TYPE_SYSTEM : ModUtil::TYPE_MODULE);
if ($this->modinfo['type'] == ModUtil::TYPE_MODULE) {
$this->domain = ZLanguage::getModuleDomain($this->name);
}
}
示例2: _configureBase
/**
* Setup internal properties.
*
* @return void
*/
protected function _configureBase()
{
$this->systemBaseDir = realpath('.');
$class = get_class($this);
$parts = strpos($class, '_') ? explode('_', $class) : explode('\\', $class);
$this->name = $parts[0];
$this->baseDir = realpath(dirname($this->getReflection()->getFileName()) . '/../..');
$this->modinfo = array('directory' => $this->name, 'type' => \ModUtil::getModuleBaseDir($this->name) == 'system' ? \ModUtil::TYPE_SYSTEM : \ModUtil::TYPE_MODULE);
$versionClass = "{$this->name}\\Version";
$this->version = new $versionClass();
if ($this->modinfo['type'] == \ModUtil::TYPE_MODULE) {
$this->domain = \ZLanguage::getModuleDomain($this->name);
}
}
示例3: _configureBase
/**
* Setup internal properties.
*
* @return void
*/
protected function _configureBase()
{
$this->systemBaseDir = realpath('.');
$parts = explode('_', $this->getReflection()->getName());
$this->name = $parts[0];
$this->baseDir = realpath(dirname($this->reflection->getFileName()) . '/../..');
$this->libBaseDir = realpath("{$this->baseDir}/lib/" . $this->name);
$this->modinfo = array('directory' => $this->name, 'type' => ModUtil::getModuleBaseDir($this->name) == 'system' ? ModUtil::TYPE_SYSTEM : ModUtil::TYPE_MODULE);
$versionClass = "{$this->name}_Version";
$this->version = new $versionClass();
if ($this->modinfo['type'] == ModUtil::TYPE_MODULE) {
$this->domain = ZLanguage::getModuleDomain($this->name);
}
}
示例4: _configureBase
/**
* Configure base properties, invoked from the constructor.
*
* @return void
*/
protected function _configureBase()
{
$this->systemBaseDir = realpath('.');
$parts = explode('_', get_class($this));
$this->name = $parts[0];
$baseDir = ModUtil::getModuleBaseDir($this->name);
$this->baseDir = realpath("{$this->systemBaseDir}/$baseDir/" . $this->name);
$this->libBaseDir = realpath("{$this->baseDir}/lib/" . $this->name);
if ($baseDir == 'modules') {
$this->domain = ZLanguage::getModuleDomain($this->name);
}
}
示例5: _configureBase
/**
* Configure base properties, invoked from the constructor.
*
* @return void
*/
protected function _configureBase()
{
$this->getPath();
$this->systemBaseDir = realpath('.');
$class = get_class($this);
$parts = strpos($class, '_') ? explode('_', $class) : explode('\\', $class);
$this->name = $parts[0];
$baseDir = \ModUtil::getModuleBaseDir($this->name);
$this->baseDir = realpath("{$this->systemBaseDir}/{$baseDir}/" . $this->name);
if ($baseDir == 'modules') {
$this->domain = \ZLanguage::getModuleDomain($this->name);
}
}
示例6: __construct
/**
* Build a new instance.
*/
public function __construct()
{
$this->getPath();
$this->systemBaseDir = realpath('.');
$this->reflection = new \ReflectionObject($this);
$class = get_class($this);
$p = strpos($class, '_') ? explode('_', $class) : explode('\\', $class);
$this->name = $p[0];
$this->directory = $this->name;
// legacy handling
$this->type = \ModUtil::getModuleBaseDir($this->name) == 'system' ? \ModUtil::TYPE_SYSTEM : \ModUtil::TYPE_MODULE;
if ($this->type == \ModUtil::TYPE_MODULE) {
$this->domain = \ZLanguage::getModuleDomain($this->name);
}
ClassProperties::load($this, $this->getMetaData());
// Load configuration of any hook bundles.
$this->setupHookBundles();
}
示例7: smarty_function_helplink
/**
* Zikula_View function to create help link.
*
* This function creates a help link.
*
* To make the link appear as a button, wrap it in a div or span with a class
* of z-buttons.
*
* Available parameters:
* - filename: name of file, defaults to 'help.txt'.
* - anchor: anchor marker.
* - popup: opens the help file in a new window using javascript.
* - width: width of the window if newwindow is set, default 600.
* - height: height of the window if newwindow is set, default 400.
* - title: name of the new window if new window is set, default is 'Help'.
* - link_contents the text for the link (between the <a> and </a> tags); optional, if not specified, then the title is used.
* - icon_type an optional icon type to include in the link, separated from the link_contents (or title) by a non-breaking space; equivalent to the type parameter from the {icon} template function
* - icon_size the size of the icon (e.g., extrasmall); optional if link_icon_type is specified, defaults to 'extrasmall', otherwise ignored;
* equivalent to the size parameter of the {icon} template function
* - icon_width the width of the icon in pixels; optional if link_icon_type is specified, if not specified, then obtained from size, otherwise ignored;
* equivalent to the width parameter of the {icon} template function
* - icon_height the height of the icon in pixels; optional if link_icon_type is specified, if not specified, then obtained from size, otherwise ignored;
* equivalent to the height parameter of the {icon} template function
* - icon_alt the alternate text for the icon, used for the alt param of the {icon} template function; optional if link_icon_type is specified,
* defaults to an empty string, otherwise ignored
* - icon_title the title text for the icon, used for the title param of the {icon} template function; optional if link_icon_type is specified,
* defaults to an empty string, otherwise ignored
* - icon_optional if true and the icon image is not found then an error will not be returned, used for the optinal param of the {icon} template
* function; optional if link_icon_type is specified, defaults to false, otherwise ignored
* - icon_default the full path to an image file to use if the icon is not found, used for the default param of the {icon} template
* function; optional if link_icon_type is specified, defaults to an empty string, otherwise ignored
* - icon_right if true, then the icon is placed on the right side of the link text (the text from either link_contents or title); optional,
* defaults to false (placing the icon on the left side of the text)
* - icon_* all remaining parameters with a "icon_" prefix are passed to the {icon} function and subsequently to the <img> tag, except for
* 'icon_assign' which is completely ignored; optional if link_icon_type is specified, otherwise ignored
* - class: class for use in the <a> tag.
* - assign: if set, the results (array('url', 'link') are assigned to the corresponding variable instead of printed out.
*
* Example: A pop-up help window with a width of 400 and a height of 300, containing the contents of help.txt, and a title of 'Help'
* {helplink popup='1' width='400' height='300' filename='help.txt' title='Help'}
*
* Example: The same as above, except displayed as a button with an icon image placed on the left side of the text 'Help' separated by a non-breaking space.
* The image does not have either alternate text nor a title.
* <div class="z-buttons">
* {helplink popup='1' width='400' height='300' filename='help.txt' title='Help' icon_type='help' icon_size='extrasmall'}
* </div>
*
* Example: The same as above, except the icon's <img> tag will contain a class attrbute with the value "my_class"
* <div class="z-buttons">
* {helplink popup='1' width='400' height='300' filename='help.txt' title='Help' icon_type='help' icon_size='extrasmall' icon_class='my_class'}
* </div>
*
* @param array $params All attributes passed to this function from the template.
* @param Zikula_View $view Reference to the Zikula_View object.
*
* @return string|void
*/
function smarty_function_helplink($params, Zikula_View $view)
{
$userLang = ZLanguage::transformFS(ZLanguage::getLanguageCode());
$systemLang = System::getVar('language_i18n');
$iconParams = array();
if (!empty($params) && is_array($params)) {
foreach ($params as $key => $value) {
if (strpos($key, 'icon_') === 0 && strlen($key) > 5) {
$iconParams[substr($key, 5)] = $value;
unset($params[$key]);
}
}
}
if (!empty($iconParams) && isset($iconParams['type'])) {
// We need to make sure the icon template function is available so we can call it.
require_once $view->_get_plugin_filepath('function', 'icon');
$iconRightSide = false;
if (isset($iconParams['right'])) {
$iconRightSide = (bool) $iconParams['right'];
unset($iconParams['right']);
}
if (isset($iconParams['assign'])) {
// We cannot use the assign parameter with the icon function in this context.
unset($iconParams['assign']);
}
} else {
$iconParams = false;
$iconRightSide = false;
}
$title = isset($params['title']) ? $params['title'] : 'Help';
$linkContents = isset($params['link_contents']) ? $params['link_contents'] : $title;
$fileName = isset($params['filename']) ? $params['filename'] : 'help.txt';
$chapter = isset($params['anchor']) ? '#' . $params['anchor'] : '';
$class = isset($params['class']) ? $params['class'] : null;
$width = isset($params['width']) ? $params['width'] : 600;
$height = isset($params['height']) ? $params['height'] : 400;
$popup = isset($params['popup']) ? true : false;
$modname = $view->getModuleName();
$linkID = isset($params['linkid']) ? $params['linkid'] : DataUtil::formatForDisplay(strtolower('manuallink_' . $modname . '_' . hash('md5', serialize($params))));
$base = ModUtil::getModuleBaseDir($modname) . "/{$modname}/docs";
$paths = array("{$base}/{$userLang}/{$fileName}", "{$base}/{$systemLang}/{$fileName}", "{$base}/en/{$fileName}");
$found = false;
foreach ($paths as $path) {
//.........这里部分代码省略.........
示例8: _configureBase
/**
* Configure base properties, invoked from the constructor.
*
* @param $bundle
*
* @return void
*/
protected function _configureBase($bundle = null)
{
$this->systemBaseDir = realpath('.');
if (null !== $bundle) {
$this->name = $bundle->getName();
$this->domain = ZLanguage::getModuleDomain($this->name);
$this->baseDir = $bundle->getPath();
} else {
$separator = false === strpos(get_class($this), '_') ? '\\' : '_';
$parts = explode($separator, get_class($this));
$this->name = $parts[0];
$baseDir = ModUtil::getModuleBaseDir($this->name);
$this->baseDir = $this->libBaseDir = realpath("{$this->systemBaseDir}/{$baseDir}/" . $this->name);
if (realpath("{$this->baseDir}/lib/" . $this->name)) {
$this->libBaseDir = realpath("{$this->baseDir}/lib/" . $this->name);
}
if ($baseDir == 'modules') {
$this->domain = ZLanguage::getModuleDomain($this->name);
}
}
}
示例9: smarty_function_helplink
//.........这里部分代码省略.........
$iconParams[substr($key, 5)] = $value;
unset($params[$key]);
}
}
}
if (!empty($iconParams) && isset($iconParams['type'])) {
// We need to make sure the icon template function is available so we can call it.
require_once $view->_get_plugin_filepath('function', 'icon');
$iconRightSide = false;
if (isset($iconParams['right'])) {
$iconRightSide = (bool) $iconParams['right'];
unset($iconParams['right']);
}
if (isset($iconParams['assign'])) {
// We cannot use the assign parameter with the icon function in this context.
unset($iconParams['assign']);
}
} else {
$iconParams = false;
$iconRightSide = false;
}
$title = isset($params['title']) ? $params['title'] : 'Help';
$linkContents = isset($params['link_contents']) ? $params['link_contents'] : $title;
$fileName = isset($params['filename']) ? $params['filename'] : 'help.txt';
$chapter = isset($params['anchor']) ? '#' . $params['anchor'] : '';
$class = isset($params['class']) ? $params['class'] : null;
$width = isset($params['width']) ? $params['width'] : 600;
$height = isset($params['height']) ? $params['height'] : 400;
$popup = isset($params['popup']) ? true : false;
$modname = $view->getModuleName();
$linkID = isset($params['linkid']) ? $params['linkid'] : DataUtil::formatForDisplay(strtolower('manuallink_' . $modname . '_' . hash('md5', serialize($params))));
$paths = array();
$module = ModUtil::getModule($modname);
if ($module) {
$base = $module->getPath();
$paths[] = "{$base}/Resources/docs/{$userLang}/{$fileName}";
$paths[] = "{$base}/Resources/docs/{$systemLang}/{$fileName}";
$paths[] = "{$base}/Resources/docs/en/{$fileName}";
}
$base = ModUtil::getModuleBaseDir($modname) . "/{$modname}/docs";
$paths[] = "{$base}/{$userLang}/{$fileName}";
$paths[] = "{$base}/docs/{$systemLang}/{$fileName}";
$paths[] = "{$base}/en/{$fileName}";
$found = false;
foreach ($paths as $path) {
if (is_readable($path)) {
$found = true;
$contents = StringUtil::getMarkdownExtraParser()->transform(file_get_contents($path));
$url = $path . $chapter;
break;
}
}
if (!$found) {
//$view->trigger_error(__f('Helpfile %s not found', $fileName));
return;
}
$linkContents = DataUtil::formatForDisplayHTML($linkContents);
if ($iconParams) {
$iconContents = smarty_function_icon($iconParams, $view);
if (isset($iconContents) && is_string($iconContents) && !empty($iconContents)) {
if ($iconRightSide) {
$linkContents = $linkContents . ' ' . $iconContents;
} else {
$linkContents = $iconContents . ' ' . $linkContents;
}
} else {
//$view->trigger_error(__f('Icon for type '%s' not found', $iconParams['type']));
return;
}
}
$class = !empty($class) ? "class=\"{$class}\"" : '';
if ($popup) {
PageUtil::addVar('javascript', 'zikula.ui');
$link = array();
$link[] = "<a id=\"{$linkID}\" {$class} data-toggle=\"modal\" data-target=\"#{$linkID}_content\" title=\"{$title}\">" . $linkContents . "</a>";
$link[] = '<div class="modal fade" id="' . $linkID . '_content" tabindex="-1" role="dialog" aria-labelledby="' . $linkID . '_label" aria-hidden="true">';
$link[] = '<div class="modal-dialog">';
$link[] = '<div class="modal-content">';
$link[] = '<div class="modal-header">';
$link[] = '<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>';
$link[] = '<h4 class="modal-title" id="' . $linkID . '_label">' . $title . '</h4>';
$link[] = '</div>';
$link[] = '<div class="modal-body">';
$link[] = $contents;
$link[] = '</div>';
$link[] = '</div>';
$link[] = '</div>';
$link[] = '</div>';
$link = implode("\n", $link);
} else {
$link = "<a id=\"{$linkID}\" {$class} href=\"" . DataUtil::formatForDisplay($url) . "\" title=\"{$title}\">" . $linkContents . "</a>";
}
if (isset($params['assign'])) {
$ret = array('url' => $url, 'link' => $link);
$view->assign($params['assign'], $ret);
return;
} else {
return $link;
}
}
示例10: getModuleStylesheet
/**
* Get the modules stylesheet from several possible sources.
*
* @param string $modname The modules name (optional, defaults to top level module).
* @param string $stylesheet The stylesheet file (optional).
*
* @return string Path of the stylesheet file, relative to PN root folder.
*/
public static function getModuleStylesheet($modname = '', $stylesheet = '')
{
// default for the module
if (empty($modname)) {
$modname = ModUtil::getName();
}
// default for the style sheet
if (empty($stylesheet)) {
$stylesheet = ModUtil::getVar($modname, 'modulestylesheet');
if (empty($stylesheet)) {
$stylesheet = 'style.css';
}
}
$module = ModUtil::getModule($modname);
$osstylesheet = DataUtil::formatForOS($stylesheet);
$osmodname = DataUtil::formatForOS($modname);
$paths = array();
// config directory
$configstyledir = 'config/style';
$paths[] = "{$configstyledir}/{$osmodname}";
// theme directory
$themeName = DataUtil::formatForOS(UserUtil::getTheme());
$theme = self::getTheme($themeName);
if ($theme) {
$bundleRelativePath = substr($theme->getPath(), strpos($theme->getPath(), 'themes'), strlen($theme->getPath()));
$bundleRelativePath = str_replace('\\', '/', $bundleRelativePath);
}
$paths[] = null === $theme ? "themes/{$themeName}/style/{$osmodname}" : $bundleRelativePath . '/Resources/css/' . $theme->getName();
// module directory
$modinfo = ModUtil::getInfoFromName($modname);
$osmoddir = DataUtil::formatForOS($modinfo['directory']);
if ($module) {
$dir = ModUtil::getModuleBaseDir($modname);
$bundleRelativePath = substr($module->getPath(), strpos($module->getPath(), $dir), strlen($module->getPath()));
$bundleRelativePath = str_replace('\\', '/', $bundleRelativePath);
$paths[] = $bundleRelativePath . "/Resources/public/css";
}
$paths[] = "modules/{$osmoddir}/style";
$paths[] = "system/{$osmoddir}/style";
// search for the style sheet
$csssrc = '';
foreach ($paths as $path) {
if (is_readable("{$path}/{$osstylesheet}")) {
$csssrc = "{$path}/{$osstylesheet}";
break;
}
}
return $csssrc;
}
示例11: __construct
/**
* Build a new instance.
*/
public function __construct($bundle = null)
{
$this->systemBaseDir = realpath('.');
if (null !== $bundle) {
$this->name = $bundle->getName();
$this->baseDir = $bundle->getPath();
// this is a work around for how the core constructs relative paths in some places
// using the module path stored in the db. This is the old way since bundles provide
// the information anyhow now.
$this->directory = explode('/', $bundle->getRelativePath());
array_shift($this->directory);
$this->directory = implode('/', $this->directory);
} else {
$this->reflection = new ReflectionObject($this);
$separator = false === strpos(get_class($this), '_') ? '\\' : '_';
$p = explode($separator, get_class($this));
$this->name = $p[0];
$this->directory = $this->name;
// legacy handling
$this->baseDir = $this->libBaseDir = realpath(dirname($this->reflection->getFileName()) . '/../..');
if (realpath($this->baseDir . '/lib/' . $this->name)) {
$this->libBaseDir = realpath($this->baseDir . '/lib/' . $this->name);
}
}
$this->type = ModUtil::getModuleBaseDir($this->name) == 'system' ? ModUtil::TYPE_SYSTEM : ModUtil::TYPE_MODULE;
if ($this->type == ModUtil::TYPE_MODULE) {
$this->domain = ZLanguage::getModuleDomain($this->name);
}
Zikula_ClassProperties::load($this, $this->getMetaData());
// Load configuration of any hook bundles.
$this->setupHookBundles();
}
示例12: __construct
/**
* Build a new instance.
*/
public function __construct()
{
$this->systemBaseDir = realpath('.');
$this->reflection = new ReflectionObject($this);
$p = explode('_', get_class($this));
$this->name = $p[0];
$this->directory = $this->name;
// legacy handling
$this->baseDir = realpath(dirname($this->reflection->getFileName()) . '/../..');
$this->libBaseDir = realpath($this->baseDir . '/lib/' . $this->name);
$this->type = ModUtil::getModuleBaseDir($this->name) == 'system' ? ModUtil::TYPE_SYSTEM : ModUtil::TYPE_MODULE;
if ($this->type == ModUtil::TYPE_MODULE) {
$this->domain = ZLanguage::getModuleDomain($this->name);
}
Zikula_ClassProperties::load($this, $this->getMetaData());
// Load configuration of any hook bundles.
$this->setupHookBundles();
}
示例13: previewPortada
/**
* Vista prèvia de la portada del pdf general del catàleg
*
* @return void
*/
public function previewPortada() {
//Comprovacions de seguretat. Només els gestors poden crear el pdf del catàleg complet
if (!SecurityUtil::checkPermission('CatalegAdmin::', '::', ACCESS_ADMIN)) {
return LogUtil::registerPermissionError();
}
$portada = FormUtil::getPassedValue('portada', '', 'POST');
$useStyle = FormUtil::getPassedValue('pdfStyle', false, 'POST');
$pdf = ModUtil::func($this->name, 'user', 'startPdf');
if ($useStyle) {
$stylesheet = file_get_contents(ModUtil::getModuleBaseDir($this->name) . '/' . ModUtil::getName() . '/style/pdf.css');
$pdf->WriteHTML($stylesheet, 1);
}
ModUtil::func($this->name, 'user', 'addContentPdf', array('pdf' => $pdf, 'header' => '', 'content' => $portada, 'footer' => ''));
ModUtil::func($this->name, 'user', 'closePdf', array('pdf' => $pdf, 'filename' => 'cataleg.pdf', 'dest' => 'I'));
return true;
}