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


PHP Alert::end方法代码示例

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


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

示例1:

<?php 
} else {
    ?>
    <?php 
    \yii\bootstrap\Alert::begin(['options' => ['class' => 'alert-info']]);
    ?>
        <p><?php 
    echo \Yii::t('app', 'You can choose the suitable solution for your project and install it.');
    ?>
</p>
        <p><?php 
    echo \Yii::t('app', 'Future versions will be integrated {market} here. For now, simply click the link below.', ['market' => \Yii::t('app', 'Marketplace')]);
    ?>
</p>
    <?php 
    \yii\bootstrap\Alert::end();
    ?>

    <div class="sx-marketplace">
        <a href="http://marketplace.cms.skeeks.com/" target="_blank">Marketplace.CMS.SkeekS.com</a> — <?php 
    echo \Yii::t('app', 'catalog of available solutions');
    ?>
    </div>

<?php 
    $this->registerCss(<<<CSS
.sx-marketplace
{
    text-align: center;
    font-size: 30px;
    color: #e74c3c;
开发者ID:Liv1020,项目名称:cms,代码行数:31,代码来源:catalog.php

示例2: beforeValidate

?>
<div id="main-content">
	<div class="change-password">
		<div class="wrapper-150">
			<h1 class="page-title">Change Password</h1>
			<?php
				if ($success) {
					Alert::begin([
					    'options' => [
					        'class' => 'alert-success',
					    ],
					]);
					
					echo 'Password changed successfully.';
					
					Alert::end();
				}
			?>
			<div class="one-column help-bg-gray pdt-one-column" >
				<?php 
			    	$js = 'function beforeValidate(form) {if ( form.data("cancel") {this.validateOnSubmit = false;this.beforeValidate = "";form.submit();return false;}return true;}';
			    	$form = ActiveForm::begin([
			    	'options' => ['class' => 'form-horizontal'],
			    	'fieldConfig' => [
			    		'template' => '<div class="control-group">{label}<div class="f-inline-size">{input}</div><div class=\"col-lg-8\">{error}</div></div>',
			    	],
			    ]); ?>
			    
			    	<?= $form->field($model, 'oldPassword')->textInput(['maxlength' => 32,
													  	   			 'class' => 'uborder help-40percent'])->label('Old Password', ['class' => 'control-label-f'])->passwordInput() ?>
					
开发者ID:jplagahit,项目名称:brdsdev,代码行数:30,代码来源:change-password.php


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