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


PHP HtmlBuilder::image方法代码示例

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


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

示例1: qr_code

 /**
  * Return an HTML mailto link.
  *
  * @param null|string $text
  * @return null|string
  */
 public function qr_code()
 {
     if (!($user = $this->object->getEntry())) {
         return null;
     }
     $twofa = new Google2FA();
     $url = $twofa->getQRCodeGoogleUrl('The%20Linden%20Tree', $user->email, $this->object->getValue());
     return $this->html->image($url);
 }
开发者ID:minioak,项目名称:twofa-field_type,代码行数:15,代码来源:TwofaFieldTypePresenter.php

示例2: image

 /**
  * Generate an HTML image element.
  *
  * @param string $url
  * @param string $alt
  * @param array $attributes
  * @param bool $secure
  * @return \Illuminate\Support\HtmlString 
  * @static 
  */
 public static function image($url, $alt = null, $attributes = array(), $secure = null)
 {
     return \Collective\Html\HtmlBuilder::image($url, $alt, $attributes, $secure);
 }
开发者ID:blargent,项目名称:pimplot,代码行数:14,代码来源:_ide_helper.php

示例3: image

 /**
  * Generate an HTML image element.
  *
  * @param  string  $url
  * @param  string  $alt
  * @param  array   $attributes
  * @param  bool    $secure
  * @return string
  */
 public function image($url, $alt = null, $attributes = array(), $secure = null)
 {
     return $this->html->image($this->assetUrl($url), $alt, $attributes, $secure);
 }
开发者ID:gmonte,项目名称:midig-cms,代码行数:13,代码来源:ThemeHtmlBuilder.php


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