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


PHP FA::getConstants方法代码示例

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


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

示例1: testGetConstants

 public function testGetConstants()
 {
     $this->assertNotEmpty(FA::getConstants(false));
     $this->assertNotEmpty(FA::getConstants(true));
 }
开发者ID:yuinakorn,项目名称:hhj,代码行数:5,代码来源:MainTest.php

示例2:

            <?php 
    echo $form->field($node, $nameAttribute, ['addon' => ['prepend' => ['content' => Inflector::titleize('menu_name')]]])->textInput($inputOpts)->label(false);
    ?>
        </div>


    </div>

    <div class="row">
        <div class="col-sm-8">
            <?php 
    if (isset($module->treeViewSettings['fontAwesome']) && $module->treeViewSettings['fontAwesome'] == true) {
        ?>
                <?php 
        echo $form->field($node, $iconAttribute)->widget(\kartik\select2\Select2::classname(), ['name' => 'Tree[' . $iconAttribute . ']', 'model' => $node, 'attribute' => $iconAttribute, 'addon' => ['prepend' => ['content' => Inflector::titleize($iconAttribute)]], 'data' => FA::getConstants(true), 'options' => ['id' => 'tree-' . $iconAttribute, 'placeholder' => Yii::t('app', 'Type to autocomplete'), 'multiple' => false], 'pluginOptions' => ['escapeMarkup' => new \yii\web\JsExpression("function(m) { return m; }"), 'allowClear' => true]])->label(false);
        ?>
            <?php 
    } else {
        ?>
                <?php 
        echo $form->field($node, $iconAttribute, ['addon' => ['prepend' => ['content' => Inflector::titleize($iconAttribute)]]])->textInput($inputOpts)->label(false);
        ?>
            <?php 
    }
    ?>
        </div>
        <div class="col-sm-4">
            <?php 
    echo $form->field($node, $iconTypeAttribute)->widget(\kartik\select2\Select2::classname(), ['name' => 'Tree[' . $iconTypeAttribute . ']', 'model' => $node, 'attribute' => $iconTypeAttribute, 'addon' => ['prepend' => ['content' => Inflector::titleize($iconTypeAttribute)]], 'data' => [TreeView::ICON_CSS => 'CSS Suffix', TreeView::ICON_RAW => 'Raw Markup'], 'options' => ['id' => 'tree-' . $iconTypeAttribute, 'placeholder' => Yii::t('app', 'Select'), 'multiple' => false] + $inputOpts, 'pluginOptions' => ['allowClear' => false]])->label(false);
    ?>
开发者ID:rochdi80tn,项目名称:yii2-pages-module,代码行数:30,代码来源:_form.php


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