コード例 #1
0
ファイル: _ide_helper.php プロジェクト: nmkr/basic-starter
 /**
  * Generate a HTTPS HTML link to an asset.
  *
  * @param string $url
  * @param string $title
  * @param array $attributes
  * @return string 
  * @static 
  */
 public static function linkSecureAsset($url, $title = null, $attributes = array())
 {
     return \Illuminate\Html\HtmlBuilder::linkSecureAsset($url, $title, $attributes);
 }
コード例 #2
0
 /**
  * Generate a HTTPS HTML link to an asset.
  *
  * @param  string  $url
  * @param  string  $title
  * @param  array   $attributes
  * @param  bool    $enablePrefix
  * @return string
  */
 public function linkSecureAsset($url, $title = null, $attributes = array(), $enablePrefix = true)
 {
     return parent::linkSecureAsset(($enablePrefix ? $this->prefix : null) . $url, $title, $attributes);
 }