本文整理汇总了PHP中Paciente::GET_LISTA_NOMBRE_COMPLETO方法的典型用法代码示例。如果您正苦于以下问题:PHP Paciente::GET_LISTA_NOMBRE_COMPLETO方法的具体用法?PHP Paciente::GET_LISTA_NOMBRE_COMPLETO怎么用?PHP Paciente::GET_LISTA_NOMBRE_COMPLETO使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Paciente
的用法示例。
在下文中一共展示了Paciente::GET_LISTA_NOMBRE_COMPLETO方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
echo $form->labelEx($model, 'recipeMedicinas');
?>
<?php
echo $form->dropDownList($model, 'recipeMedicinas', Medicina::GET_LISTA_NOMBRE(), array('multiple' => true));
?>
<?php
echo $form->error($model, 'recipeMedicinas');
?>
</div>
<div class="row">
<?php
echo $form->labelEx($model, 'paciente_id');
?>
<?php
echo $form->dropDownList($model, 'paciente_id', Paciente::GET_LISTA_NOMBRE_COMPLETO(), array('empty' => 'Seleccione paciente'));
?>
<?php
echo $form->error($model, 'paciente_id');
?>
</div>
<div class="row buttons">
<?php
echo CHtml::submitButton($model->isNewRecord ? 'Crear' : 'Guardar');
?>
</div>
<?php
$this->endWidget();
?>
示例2: array
<?php
/* @var $this PagoController */
/* @var $model Pago */
$this->breadcrumbs = array('Pagos' => array('index'), 'Administrar');
$this->menu = array(array('label' => 'Listar Pagos', 'url' => array('index')), array('label' => 'Crear Pago', 'url' => array('create')), array('label' => 'Registro de caja', 'url' => array('caja')));
Yii::app()->clientScript->registerScript('search', "\n\$('.search-button').click(function(){\n\t\$('.search-form').toggle();\n\treturn false;\n});\n\$('.search-form form').submit(function(){\n\t\$.fn.yiiGridView.update('pago-grid', {\n\t\tdata: \$(this).serialize()\n\t});\n\treturn false;\n});\n");
?>
<h1>Administrar Pagos</h1>
<?php
echo CHtml::link('Busqueda Avanzada', '#', array('class' => 'search-button'));
?>
<div class="search-form" style="display:none">
<?php
$this->renderPartial('_search', array('model' => $model));
?>
</div><!-- search-form -->
<?php
$this->widget('zii.widgets.grid.CGridView', array('id' => 'pago-grid', 'dataProvider' => $model->search(), 'filter' => $model, 'columns' => array('paga', 'fecha', array('name' => 'paciente_id', 'header' => 'Paciente', 'value' => 'Paciente::GET_NOMBRE_COMPLETO_PK($data->paciente_id)', 'filter' => Paciente::GET_LISTA_NOMBRE_COMPLETO()), array('class' => 'CButtonColumn'))));