本文整理汇总了PHP中app\models\Page::listPagesUrl方法的典型用法代码示例。如果您正苦于以下问题:PHP Page::listPagesUrl方法的具体用法?PHP Page::listPagesUrl怎么用?PHP Page::listPagesUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\models\Page
的用法示例。
在下文中一共展示了Page::listPagesUrl方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionAjaxcall
public function actionAjaxcall()
{
echo Helpers::renderOption(Page::listPagesUrl());
}
示例2:
<div class="form-group">
<?php
echo Html::label('Loại liên kết', ['class' => 'control-label']);
?>
<?php
echo Html::dropDownList('type', null, Helpers::listUrlType(), ['class' => 'form-control type-select']);
?>
</div>
<div class="form-group">
<?php
echo Html::label('Trang', ['class' => 'control-label']);
?>
<?php
echo Html::dropDownList('type', null, Page::listPagesUrl(), ['class' => 'form-control url-select']);
?>
</div>
<?php
echo $form->field($model, 'url')->textInput(['maxlength' => 100, 'class' => 'form-control url-input']);
?>
<?php
echo $form->field($model, 'status')->inline()->radioList($model->listStatus());
?>
<div class="form-group text-center">
<?php
echo Html::a('Trở về', ['list'], ['class' => 'btn btn-default']);
?>