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


PHP Alert::widget方法代码示例

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


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

示例1:

<?php

use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model app\models\news\news */
$this->title = 'Редактирование новости';
$this->params['breadcrumbs'][] = ['label' => 'Справочники', 'url' => ['/admin']];
$this->params['breadcrumbs'][] = ['label' => 'Новости', 'url' => ['index']];
$this->params['breadcrumbs'][] = 'Редактировать';
if (Yii::$app->session->hasFlash('error')) {
    echo Alert::widget(['type' => Alert::TYPE_DANGER, 'title' => 'Ошибка редактирования', 'icon' => 'glyphicon glyphicon-remove-sign', 'body' => Yii::$app->session->getFlash('error'), 'showSeparator' => true, 'delay' => 4000]);
}
?>
<div class="row">
    <div class="col-xs-12 col-xs-offset-0 col-sm-offset-1 col-sm-10 news-update">

        <h1><?php 
echo Html::encode($this->title);
?>
</h1>

        <?php 
echo $this->render('_form', ['model' => $model, 'tournaments' => $tournaments]);
?>
    </div>
</div>
开发者ID:Andrewkha,项目名称:sportforecast,代码行数:26,代码来源:update.php

示例2:

use kartik\widgets\DatePicker;
use app\models\RequestType;
use yii\helpers\ArrayHelper;
use app\models\Staff;
/* @var $this yii\web\View */
/* @var $model app\models\RequestDic */
/* @var $form yii\widgets\ActiveForm */
?>

<?php 
$RequestType = RequestType::find()->all();
$arraytype = ArrayHelper::map($RequestType, 'type_id', 'request_name');
$Staff = Staff::find()->all();
$arrayStaff = ArrayHelper::map($Staff, 'staff_id', 'name');
if (isset($erros)) {
    echo Alert::widget(['options' => ['class' => 'alert-info'], 'body' => $erros]);
}
?>

<div class="request-dic-form">

    <?php 
$form = ActiveForm::begin();
?>

     <?php 
echo $form->field($model, 'req_type_id')->dropDownList($arraytype, ['prompt' => '--Select--']);
?>

   
    <?php 
开发者ID:sukor,项目名称:sysrequest,代码行数:31,代码来源:_form.php

示例3:

<?php

use yii\web\View;
use yii\bootstrap\alert;
?>

<div class="bankrupt-default-index">
    <h1><?php 
echo Yii::t('app', 'Шаг 2: Выберите СРО');
?>
</h1>
<div>
    <?php 
echo Alert::widget(['options' => ['class' => 'alert-info'], 'body' => 'Страница находится в разработке ...']);
?>
</div>
    <div>
        Здесь пока пусто
    </div>
</div>
开发者ID:borzenkovdev,项目名称:startkit_yii2,代码行数:20,代码来源:step2.php


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