本文整理匯總了PHP中Pedido::label方法的典型用法代碼示例。如果您正苦於以下問題:PHP Pedido::label方法的具體用法?PHP Pedido::label怎麽用?PHP Pedido::label使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Pedido
的用法示例。
在下文中一共展示了Pedido::label方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: array
<?php
/** @var PedidoController $this */
/** @var Pedido $model */
$this->breadcrumbs = array($model->label(2) => array('index'), Yii::t('app', $model->id) => array('view', 'id' => $model->id), Yii::t('AweCrud.app', 'Update'));
$this->menu = array(array('label' => Yii::t('AweCrud.app', 'Delete'), 'icon' => 'trash', 'url' => '#', 'linkOptions' => array('submit' => array('delete', 'id' => $model->id), 'confirm' => Yii::t('AweCrud.app', 'Are you sure you want to delete this item?'))), array('label' => Yii::t('AweCrud.app', 'Manage'), 'icon' => 'list-alt', 'url' => array('admin')));
?>
<fieldset>
<legend><?php
echo Yii::t('AweCrud.app', 'Update') . ' ' . Pedido::label();
?>
<?php
echo CHtml::encode($model);
?>
</legend>
<?php
echo $this->renderPartial('_form', array('model' => $model));
?>
</fieldset>
示例2: array
<?php
/** @var PedidoController $this */
/** @var Pedido $model */
$this->breadcrumbs = array('Pedidos' => array('index'), $model->id);
$this->menu = array(array('label' => Yii::t('AweCrud.app', 'Create') . ' ' . Pedido::label(), 'icon' => 'plus', 'url' => array('create')), array('label' => Yii::t('AweCrud.app', 'Update'), 'icon' => 'pencil', 'url' => array('update', 'id' => $model->id)), array('label' => Yii::t('AweCrud.app', 'Delete'), 'icon' => 'trash', 'url' => '#', 'linkOptions' => array('submit' => array('delete', 'id' => $model->id), 'confirm' => Yii::t('AweCrud.app', 'Are you sure you want to delete this item?'))), array('label' => Yii::t('AweCrud.app', 'Manage'), 'icon' => 'list-alt', 'url' => array('admin')));
?>
<fieldset>
<legend><?php
echo Yii::t('AweCrud.app', 'View') . ' ' . Pedido::label();
?>
<?php
echo CHtml::encode($model);
?>
</legend>
<?php
$this->widget('bootstrap.widgets.TbDetailView', array('data' => $model, 'attributes' => array('id', 'empresa', 'correo', 'nombre', array('name' => 'descripcion', 'type' => 'html'))));
?>
</fieldset>
示例3: array
<?php
/** @var PedidoController $this */
/** @var Pedido $model */
$this->breadcrumbs = array('Pedidos');
$this->menu = array(array('label' => Yii::t('AweCrud.app', 'Create') . ' ' . Pedido::label(), 'icon' => 'plus', 'url' => array('create')), array('label' => Yii::t('AweCrud.app', 'Manage'), 'icon' => 'list-alt', 'url' => array('admin')));
?>
<fieldset>
<legend>
<?php
echo Yii::t('AweCrud.app', 'List');
?>
<?php
echo Pedido::label(2);
?>
</legend>
<?php
$this->widget('bootstrap.widgets.TbListView', array('dataProvider' => $dataProvider, 'itemView' => '_view'));
?>
</fieldset>
示例4: array
<?php
$this->breadcrumbs = array(Pedido::label(2), Yii::t('app', 'Index'));
$this->menu = array(array('label' => Yii::t('app', 'Create') . ' ' . Pedido::label(), 'url' => array('create')), array('label' => Yii::t('app', 'Manage') . ' ' . Pedido::label(2), 'url' => array('admin')));
?>
<h1><?php
echo GxHtml::encode(Pedido::label(2));
?>
</h1>
<?php
$this->widget('zii.widgets.CListView', array('dataProvider' => $dataProvider, 'itemView' => '_view'));