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


PHP Box::begin方法代码示例

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


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

示例1: foreach

use themes\admin360\widgets\Panel;
use themes\admin360\widgets\Button;
$this->title = 'اعطای دسترسی به کاربر';
$this->params['breadcrumbs'][] = $this->title;
$accordion = [];
foreach ($modules as $moduleId => $title) {
    $accordion[$moduleId]['label'] = $title;
    $accordion[$moduleId]['content'] = Html::checkboxList("permisions", $userPermissions, $allPermissions[$moduleId], ['itemOptions' => ['labelOptions' => ['class' => 'checkbox-inline']]]);
    $accordion[$moduleId]['contentOptions'] = ['class' => 'in'];
}
?>

<div class="row">
    <div class="col-sm-12">
        <?php 
Box::begin(['title' => 'اعطای دسترسی', 'options' => ['class' => 'box-solid box-primary']]);
?>
            <?php 
echo Html::beginForm();
?>
            <?php 
echo Collapse::widget(['items' => $accordion]);
?>
            <?php 
echo Html::submitButton('<i class="fa fa-save"></i> ذخیره', ['class' => 'btn btn-lg btn-flat margin bg-green']);
?>
            <?php 
echo Button::widget(['title' => 'انصراف', 'options' => ['class' => 'btn-lg btn-flat margin'], 'color' => 'orange', 'icon' => 'undo', 'url' => array('index')]);
?>
            <?php 
echo Html::endForm();
开发者ID:ahb360,项目名称:cms,代码行数:31,代码来源:assign.php

示例2:

        <?php 
Box::begin(['title' => $this->params['subtitle'], 'bodyOptions' => ['class' => 'table-responsive'], 'batchParam' => 'names', 'buttonsTemplate' => $boxButtons, 'grid' => $gridId]);
?>
        <?php 
echo GridView::widget($gridConfig);
?>
        <?php 
Box::end();
?>
    </div>
</div>

<div class="row">
    <div class="col-xs-12">
        <?php 
Box::begin(['title' => 'Items', 'bodyOptions' => ['class' => 'table-responsive']]);
?>
        <div class="panel-group" id="roles" role="tablist" aria-multiselectable="true">
            <?php 
foreach ($rolesArray as $row) {
    ?>
                <div class="panel panel-default">
                    <div class="panel-heading" role="tab" id="role-<?php 
    echo $row['role']->name;
    ?>
">
                        <h4 class="panel-title">
                            <a data-toggle="collapse" data-parent="#roles" href="#role-<?php 
    echo $row['role']->name;
    ?>
-collapse" aria-expanded="true" aria-controls="collapseOne">
开发者ID:artkost,项目名称:yii2-starter-kit,代码行数:31,代码来源:index.php


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