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


PHP Assets::input方法代码示例

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


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

示例1: getFormButton

 function getFormButton($name, $attributes = array())
 {
     if (is_array($this->form_buttons[$name]['attributes'])) {
         $attributes = array_merge((array) $attributes, (array) $this->form_buttons[$name]['attributes']);
     }
     if (!$this->form_buttons[$name]['is_picture']) {
         if (isset($this->form_buttons[$name]['info']) && !isset($attributes['title'])) {
             $attributes['title'] = $this->form_buttons[$name]['info'];
         }
         $caption = $this->form_buttons[$name]['caption'] ? $this->form_buttons[$name]['caption'] : $this->form_buttons[$name]['type'];
         if (in_array($this->form_buttons[$name]['type'], words('cancel accept'))) {
             $create = 'create' . $this->form_buttons[$name]['type'];
         } else {
             $create = 'create';
         }
         $ret = Button::$create($caption, $this->form_name . "_" . $name, $attributes);
     } else {
         // Yes, this is kinda ugly
         $ret = Assets::input($this->form_buttons[$name]['type'], tooltip2($this->form_buttons[$name]['info']) + (array) $attributes + array('name' => $this->form_name . '_' . $name));
     }
     return $ret;
 }
开发者ID:ratbird,项目名称:hope,代码行数:22,代码来源:StudipForm.class.php

示例2: testAssetsInput

 function testAssetsInput()
 {
     $this->assertEquals('<input type="image" title="Datei hochladen" class="text-bottom icon-role-clickable icon-shape-upload" width="20" height="20" src="images/icons/blue/upload.svg" alt="Datei hochladen">', Assets::input('icons/20/blue/upload', array('title' => _("Datei hochladen"), 'class' => "text-bottom")));
 }
开发者ID:ratbird,项目名称:hope,代码行数:4,代码来源:IconClassTest.php

示例3: array

    ?>
            <input type="hidden" name="to_copy[lecturers][<?php 
    echo $i;
    ?>
][]" value="<?php 
    echo $lecturer;
    ?>
">
            <?php 
    echo Assets::input('icons/16/black/trash.png', array('name' => 'delete_lecturer[' . $i . '][' . $lecturer . ']'));
    ?>
            <br>
        <? endforeach;?>
            <div style="float:left">
                <?php 
    echo Assets::input('icons/16/yellow/arr_2up.png', array('name' => 'add_lecturer[' . $i . ']'));
    ?>
            </div>
<? echo QuickSearch::get("add_doz_" . $i, $to_copy['search_lecturer'][$i])
                            ->withButton(array('search_button_name' => 'search_doz', 'reset_button_name' => 'reset_search'))
                            ->render();
                            ?>

        </div>
        </li>
    <?endfor;?>
    </ol>
    <div style="text-align:center">
    <?php 
    echo Studip\Button::createAccept(_('Kopieren'), 'do_copy');
    ?>
开发者ID:noackorama,项目名称:SeminarReplicator,代码行数:31,代码来源:index.php


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