本文整理汇总了PHP中Current::bundleURL方法的典型用法代码示例。如果您正苦于以下问题:PHP Current::bundleURL方法的具体用法?PHP Current::bundleURL怎么用?PHP Current::bundleURL使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Current
的用法示例。
在下文中一共展示了Current::bundleURL方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: defaultViewDataTo
protected function defaultViewDataTo(array &$data)
{
$info = $this->config('company');
// Trying to reverse-map the logo URL to local path. Upon success attach that
// file to the message as "related" file so it's not visible in the attachment
// list and can be refered to with special "cid:NAME" prefix (e.g. in src).
// Unlike remote images attached ones are not hidden by most mail viewers.
$logoFile = assetPath($info['logo']);
if ($logoFile) {
$this->attachRelatedLocal($logoFile, $name = 'head-logo' . S::ext($logoFile));
$info['logo'] = "cid:{$name}";
}
$data['header']['logo'] = Block::execCustom('Vane::logo', array('input' => $info, 'ajax' => false, 'response' => true, 'return' => 'response'))->render();
$info = array_filter($info, 'is_scalar') + array('l0' => HLEx::tag('a', \URL::to(Current::bundleURL())), 'l1' => '</a>');
$signature = __('vanemart::general.mail.signature', $info);
$data['footer']['signature'] = HLEx::p($signature);
}
示例2: expand
static function expand($url = '/')
{
$url = trim($url);
if ($url === '') {
return null;
} elseif (\URL::valid($url) or $url[0] === '/') {
// absolute URL.
return \url($url);
} elseif (strrchr($url, '@') === false) {
if (strpos($url, '::') === false) {
// relative to current bundle's 'handles' or site root if none.
return \url(Current::bundleURL() . $url);
} else {
// named route.
return \route(ltrim($url, ':'));
}
} elseif (strrchr(strrchr($url, '@'), '.') === false) {
// controller[.sub]@[action]
return \action($url);
} else {
// e-mail without 'mailto:' prefix: eml@example.com.
return "mailto:{$url}";
}
}