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


PHP HtmlElement::AddAttributes方法代码示例

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


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

示例1: __construct

 /**
  * A widget for displaying an image (img)
  * @param string $imgurl The url of the image
  * @param string $alttext A text that will be shown if the image could not be loaded
  * @param boolean $forcehttps Specify if the link has to have https 
  * @param HtmlAttributes $args Allows custom html tag arguments to be specified (not recommended)
  **/
 public function __construct($imgurl = EMPTYSTRING, $alttext = '[IMG]', $args = null)
 {
     parent::__construct();
     $img = new HtmlElement('img', $args);
     $img->AddAttributes(array('src' => RTK::GetBaseURL() . $imgurl, 'alt' => $alttext));
     $this->AddChild($img);
 }
开发者ID:iensenfirippu,项目名称:RTK,代码行数:14,代码来源:image.php

示例2: __construct

 /**
  * A widget for displaying a list of items
  * @param string[] $columnheaders The headers in the top row
  * @param boolean $alternaterow Determines if different styling should be applied to every other row
  * @param boolean $alternatecell Determines if different styling should be applied to every other cell
  * @param HtmlAttributes $args Allows custom html tag arguments to be specified (not recommended)
  **/
 public function __construct($columnheaders, $alternaterow = true, $alternatecell = false, $args = null)
 {
     parent::__construct();
     $table = new HtmlElement('div', array('class' => 'listview'), null, new HtmlElement('table'));
     $table->AddAttributes($args);
     $this->AddContainer($table, 'table');
     //$this->SetPointer('table');
     if ($alternaterow == false) {
         $this->_alternaterow = null;
     } else {
         $this->_alternaterow = true;
     }
     if ($alternatecell == false) {
         $this->_alternatecell = null;
     } else {
         $this->_alternatecell = true;
     }
     if (sizeof($columnheaders) > 0) {
         for ($i = 0; $i < sizeof($columnheaders); $i++) {
             $string = $columnheaders[$i];
             if (is_string($string) && strlen($string) > 0 && $string[0] == '_') {
                 $this->_compressedcols[] = $i;
                 $columnheaders[$i] = substr($columnheaders[$i], 1);
             }
         }
         $this->AddHeader($columnheaders);
     }
 }
开发者ID:iensenfirippu,项目名称:RTK,代码行数:35,代码来源:listview.php

示例3: AddJavascript

 /**
  * Adds a javascript to the HTML document
  * @param string $filename The name of the file to add
  * @param HtmlAttributes $args Allows custom html tag arguments to be specified (not recommended)
  */
 public function AddJavascript($filename, $args = null)
 {
     $script = new HtmlElement('script', array('src' => $filename));
     $script->AddAttributes($args);
     $this->_javascripts[$filename] = $script;
 }
开发者ID:iensenfirippu,项目名称:RTK,代码行数:11,代码来源:htmldocument.php


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