當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Current::bundleURL方法代碼示例

本文整理匯總了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);
 }
開發者ID:SerdarSanri,項目名稱:VaneMart,代碼行數:17,代碼來源:Mail.php

示例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}";
     }
 }
開發者ID:SerdarSanri,項目名稱:VaneMart,代碼行數:24,代碼來源:Menu.php


注:本文中的Current::bundleURL方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。