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


PHP Html::addHtml方法代码示例

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


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

示例1: tryAddIcon

 /**
  * Should the element has an icon?
  * @param  Html            $el
  * @param  string|null     $icon
  * @param  string          $name
  * @return void
  */
 public function tryAddIcon(Html $el, $icon, $name)
 {
     if ($icon) {
         $el->addHtml(Html::el('span')->class(DataGrid::$icon_prefix . $icon));
         if (strlen($name)) {
             $el->addHtml(' ');
         }
     }
 }
开发者ID:ublaboo,项目名称:datagrid,代码行数:16,代码来源:TButtonTryAddIcon.php

示例2: input

 public static function input(Html $input, BaseControl $control, $isPart)
 {
     $name = $input->getName();
     if ($name === 'select' || $name === 'textarea' || $name === 'input' && !in_array($input->type, ['radio', 'checkbox', 'file', 'hidden', 'range', 'image', 'submit', 'reset'])) {
         $input->addClass('form-control');
     } elseif ($name === 'input' && ($input->type === 'submit' || $input->type === 'reset')) {
         $input->setName('button');
         $input->addHtml($input->value);
         $input->addClass('btn');
     }
     return $input;
 }
开发者ID:nextras,项目名称:forms,代码行数:12,代码来源:BS3InputMacros.php

示例3: addContent

 /**
  * @param Html $el
  * @param Html|string $content
  * @return Html fluent interface
  */
 private function addContent(Html $el, $content)
 {
     if ($content instanceof Html) {
         $el->addHtml($content);
     } else {
         $el->addText($content);
     }
     return $el;
 }
开发者ID:instante,项目名称:bootstrap3renderer,代码行数:14,代码来源:BootstrapRenderer.php

示例4: generateJavaScriptQuestion

 /**
  * Vygeneruje početní otázku pro uživatele, která se bude doplňovat JavaScriptem.
  * @param \Nette\Utils\Html $group
  */
 private function generateJavaScriptQuestion(\Nette\Utils\Html &$group)
 {
     $groupId = $this->getHtmlId() . "-question-group";
     $javaScriptGroup = \Nette\Utils\Html::el("div id='{$groupId}'");
     $javaScriptGroup->class[] = $this->getHtmlName() . "-question-group";
     $this->questionLabelPrototype->setText($this->generateMathQuestion());
     $inputName = $this->getHtmlName() . "-question-result";
     $inputId = $this->getHtmlId() . "-question-result";
     $this->questionInputPrototype->addAttributes(["id" => $inputId, "name" => $inputName]);
     $javaScriptGroup->addHtml($this->questionLabelPrototype);
     $javaScriptGroup->addHtml($this->questionInputPrototype);
     $script = \Nette\Utils\Html::el("script");
     $script->setHtml("\r\n\t\t\tdocument.getElementById('{$inputId}').value = " . $this->result . ";\r\n\t\t\tdocument.getElementById('{$groupId}').style.display = 'none';\r\n\t\t");
     $javaScriptGroup->addHtml($script);
     $group->addHtml($javaScriptGroup);
 }
开发者ID:jzechy,项目名称:nette-antispam,代码行数:20,代码来源:AntiSpamInput.php


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