當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Paciente::GET_LISTA_NOMBRE_COMPLETO方法代碼示例

本文整理匯總了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();
?>
開發者ID:edarkzero,項目名稱:GineObs,代碼行數:31,代碼來源:_form.php

示例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'))));
開發者ID:edarkzero,項目名稱:GineObs,代碼行數:22,代碼來源:admin.php


注:本文中的Paciente::GET_LISTA_NOMBRE_COMPLETO方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。