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


PHP HtmlBuilder::attributes方法代碼示例

本文整理匯總了PHP中Illuminate\Html\HtmlBuilder::attributes方法的典型用法代碼示例。如果您正苦於以下問題:PHP HtmlBuilder::attributes方法的具體用法?PHP HtmlBuilder::attributes怎麽用?PHP HtmlBuilder::attributes使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Illuminate\Html\HtmlBuilder的用法示例。


在下文中一共展示了HtmlBuilder::attributes方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: renderAttributes

 public function renderAttributes(array $options)
 {
     if (!empty($options)) {
         return $options = $this->html->attributes($options);
     } else {
         return '';
     }
 }
開發者ID:overturelabs,項目名稱:menu,代碼行數:8,代碼來源:MenuBuilder.php

示例2: button

 /**
  * Create a button element.
  *
  * @param  string  $value
  * @param  array   $options
  * @return string
  */
 public function button($value = null, $options = array())
 {
     if (!array_key_exists('type', $options)) {
         $options['type'] = 'button';
     }
     return '<button' . $this->html->attributes($options) . '>' . $value . '</button>';
 }
開發者ID:manhvu1212,項目名稱:videoplatform,代碼行數:14,代碼來源:FormBuilder.php

示例3: scriptmod

 /**
  * Generate a link to a JavaScript file.
  *
  * @param  string  $url
  * @param  array   $attributes
  * @param  bool    $secure
  * @return string
  */
 public static function scriptmod($url, $attributes = array(), $secure = null)
 {
     $HtmlBuilder = new HtmlBuilder();
     $filemtime = @filemtime(@dirname(@$_SERVER['SCRIPT_FILENAME']) . "/" . $url);
     $attributes['src'] = asset($url, $secure) . ($filemtime > 0 ? "?" . $filemtime : "");
     return '<script' . $HtmlBuilder->attributes($attributes) . '></script>' . PHP_EOL;
 }
開發者ID:Grapheme,項目名稱:amway,代碼行數:15,代碼來源:HTML.php

示例4: alert

 /**
  * Create an alert item with optional emphasis.
  *
  * @param string  $type
  * @param string  $content
  * @param string  $emphasis
  * @param boolean $dismissible
  * @param array   $attributes
  *
  * @return string
  */
 protected function alert($type = 'message', $content = null, $emphasis = null, $dismissible = false, array $attributes = array())
 {
     $attributes = array_merge(array('class' => 'alert' . ($dismissible ? ' alert-dismissable' : '') . ' alert-' . ($type != 'message' ? $type : 'default')), $attributes);
     $return = '<div ' . $this->html->attributes($attributes) . '>';
     if ($dismissible !== null) {
         $return .= '<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>';
     }
     $return .= ($emphasis !== null && is_string($emphasis) ? '<strong>' . $emphasis . '</strong> ' : '') . $content . '</div>';
     return $return;
 }
開發者ID:jamalapriadi,項目名稱:sia,代碼行數:21,代碼來源:BootstrapBase.php

示例5: attributes

 /**
  * Build an HTML attribute string from an array.
  *
  * @param array $attributes
  * @return string 
  * @static 
  */
 public static function attributes($attributes)
 {
     return \Illuminate\Html\HtmlBuilder::attributes($attributes);
 }
開發者ID:nmkr,項目名稱:basic-starter,代碼行數:11,代碼來源:_ide_helper.php

示例6: script

 /**
  * Generate a link to a JavaScript file.
  *
  * @param  string  $name
  * @param  string  $url
  * @param  array   $attributes
  * @return string
  */
 public function script($name, $url, $attributes = array(), $secure = false)
 {
     $attributes['src'] = $this->asset($name, $url, $secure);
     return '<script' . $this->html->attributes($attributes) . '></script>' . PHP_EOL;
 }
開發者ID:acmadi,項目名稱:modules-1,代碼行數:13,代碼來源:Module.php

示例7: attributes

 /**
  * Convert HTML attributes into "property = value" pairs.
  *
  * @param array $attributes
  *
  * @return string
  */
 public function attributes($attributes = array())
 {
     return $this->html->attributes($attributes);
 }
開發者ID:kiwina,項目名稱:laravel5-menu,代碼行數:11,代碼來源:Builder.php

示例8: rowOpen

 /**
  * @param Element $row
  * @return string
  */
 public function rowOpen(Element $row)
 {
     $_atts = $this->htmlBuilder->attributes($row->getAttributes());
     return '<div' . $_atts . '><div class="row">';
 }
開發者ID:iyoworks,項目名稱:form-builder,代碼行數:9,代碼來源:LaravelFormRenderer.php

示例9: pairedTag

 /**
  * Generate a self-closing tag
  * @param       $tagName
  * @param       $tagContent
  * @param array $tagAttributes
  * @return array
  */
 private function pairedTag($tagName, $tagContent, $tagAttributes = [])
 {
     return ['type' => MetaFacade::PAIRED_TAG, 'tag' => $tagName, 'content' => $tagContent, 'attributes' => $this->htmlBuilder->attributes($tagAttributes)];
 }
開發者ID:foxted,項目名稱:meta,代碼行數:11,代碼來源:Meta.php


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