本文整理汇总了PHP中Estado::model方法的典型用法代码示例。如果您正苦于以下问题:PHP Estado::model方法的具体用法?PHP Estado::model怎么用?PHP Estado::model使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Estado
的用法示例。
在下文中一共展示了Estado::model方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: run
public function run()
{
//echo 'www.neologys.com'.$this->ruta.'/css/jgauge.css';
echo '<div style="width::200px; float:left;" >';
$this->widget('zii.widgets.grid.CGridView', array('id' => 'leyenda', 'dataProvider' => Estado::model()->search_por_docu($this->documento), 'itemsCssClass' => '.grid-views', 'hideHeader' => true, 'summaryText' => '', 'columns' => array('estado', array('name' => 'st.', 'header' => 'st', 'type' => 'raw', 'value' => 'CHtml::image(Yii::app()->getTheme()->baseUrl.Yii::app()->params["rutatemaimagenes"].$data->codocu.$data->codestado.".png")'))));
echo "</div>";
}
示例2: validaSistema
public function validaSistema()
{
$status_model = Estado::model()->ultimo()->find();
if ($status_model->estado == 'CERRADO') {
return true;
} else {
return false;
}
}
示例3: actionUpdate
/**
* Updates a particular model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id the ID of the model to be updated
*/
public function actionUpdate($id)
{
$model = $this->loadModel($id);
$user = Yii::app()->user;
$selectEstados = Estado::model()->selectEstados();
// Uncomment the following line if AJAX validation is needed
// $this->performAjaxValidation($model);
if (isset($_POST['Torneo'])) {
$model->attributes = $_POST['Torneo'];
if ($model->save()) {
$user->setFlash('success', "Datos han sido modificados <strong>satisfactoriamente</strong>.");
$this->redirect(array('admin'));
}
}
$this->render('update', array('model' => $model, 'selectEstados' => $selectEstados));
}
示例4: valoresGraficaEventos
/**
*
* @param query $valores
* @return array para valores de la serie
*/
public static function valoresGraficaEventos()
{
$eventos = '';
$estados = '';
$pie = '';
$resultados = Yii::app()->db->createCommand()->select('count(*) AS eventos, estado_id AS estado')->from('semana s')->group('estado_id')->order('count(*) DESC')->queryAll();
foreach ($resultados as $k => $data) {
//para la grafica de barras
//$eventos.=$data['eventos'].', ';
//$estados.="'".Estado::model()->findByPk($data['estado'])->nombre."', ";
$pie .= "['" . Estado::model()->findByPk($data['estado'])->nombre . "', " . $data['eventos'] . '], ';
}
//return array('eventos'=>'['.substr($eventos, 0, -2).']', 'estados'=>'['.substr($estados, 0, -2).']');
return array('pie' => '[' . substr($pie, 0, -2) . ']');
}
示例5: loadModel
/**
* Returns the data model based on the primary key given in the GET variable.
* If the data model is not found, an HTTP exception will be raised.
*/
public function loadModel()
{
if ($this->_model === null) {
if (isset($_GET['id'])) {
$this->_model = Estado::model()->findbyPk($_GET['id']);
}
if ($this->_model === null) {
throw new CHttpException(404, Yii::t('App', 'The requested page does not exist.'));
}
}
return $this->_model;
}
示例6: array
</div>
<div class="row">
<?php
echo $form->label($model, 'txtmaterial');
?>
<?php
echo $form->textField($model, 'txtmaterial', array('size' => 40, 'maxlength' => 40));
?>
</div>
<div class="row">
<?php
echo $form->labelEx($model, 'estado');
?>
<?php
$datos111 = CHTml::listData(Estado::model()->findAll("codocu=:vcodocu", array(":vcodocu" => CODIGO_DOC_SOLPE)), 'codestado', 'estado');
?>
<?php
echo $form->dropDownList($model, 'estado', $datos111, array('empty' => '--Seleccione un estado--'));
?>
</div>
<div class="row">
<?php
echo $form->labelEx($model, 'escompra');
?>
<?php
$datos1 = CHtml::listData(Tiposolpe::model()->findAll(), 'codtipo', 'destipo');
echo $form->DropDownList($model, 'escompra', $datos1, array('empty' => '--Seleccione un tipo--', 'disabled' => !$model->isNewRecord ? 'disabled' : ''));
示例7: actioncargaestadodestino
public function actioncargaestadodestino()
{
$criteria = new CDbCriteria();
$criteria->addCondition("c_hcod=:proved");
$valor = $_POST['Eventos']['codocu'];
$data = CHtml::listData(Estado::model()->findAll("codocu='" . $valor . "'"), "codestado", "estado");
echo CHtml::tag('option', array('value' => null), CHtml::encode('Escoja una direccion'), true);
foreach ($data as $value => $name) {
echo CHtml::tag('option', array('value' => $value), CHtml::encode($name), true);
}
}
示例8: actionInformacion
/**
* Vista para la informacion cuando se requiera exportar
*/
public function actionInformacion()
{
if (!Yii::app()->user->isGuest) {
$tipo = Tipo::model()->findAll();
$tipos = '';
$es_internacional = "'No' => 0 <br> 'Sí' => 1";
$sect = Sector::model()->findAll();
$sectores = '';
$est = Estado::model()->findAll();
$estados = '';
$pais = Paises::model()->findAll();
$paises = '';
$tipo_m = TipoMedios::model()->findAll();
$tipo_medios = '';
$grupo = Grupos::model()->findAll();
$grupos = '';
$usuario = Usuarios::model()->findAll();
$usuarios = '';
$es_internacional = "'No' => 0 <br> 'Sí' => 1";
foreach ($tipo as $t) {
$tipos .= "'" . $t->nombre . "' => " . $t->id . " <br>";
}
foreach ($sect as $s) {
$sectores .= "'" . $s->nombre . "' => " . $s->id . " <br>";
}
foreach ($usuario as $u) {
$usuarios .= "'" . $u->nombre . ' ' . $u->apellido . "' => " . $u->id . " <br>";
}
foreach ($est as $e) {
$estados .= "'" . $e->nombre . "' => " . $e->id . " <br>";
}
foreach ($pais as $p) {
$paises .= "'" . $p->nombre . "' => " . $p->id . " <br>";
}
foreach ($tipo_m as $tm) {
$tipo_medios .= "'" . $tm->nombre . "' => " . $tm->id . " <br>";
}
foreach ($grupo as $g) {
$grupos .= "'" . $g->nombre . "' => " . $g->id . " <br>";
}
$datos = array('es_internacional' => $es_internacional, 'tipos' => $tipos, 'sectores' => $sectores, 'usuarios' => $usuarios, 'estados' => $estados, 'paises' => $paises, 'tipo_medios' => $tipo_medios, 'grupos' => $grupos);
$this->render('informacion', array('datos' => $datos));
} else {
$this->redirect(Yii::app()->homeUrl);
}
}
示例9: actioncargaestado
public function actioncargaestado()
{
$valor = $_POST['Opcionesbarra']['codocu'];
$criteria = new CDbCriteria();
$criteria->addCondition("codocu=:vcodocu");
$criteria->params = array(":vcodocu" => $valor);
$data = CHtml::listData(Estado::model()->findAll($criteria), "codestado", "estado");
echo CHtml::tag('option', array('value' => null), CHtml::encode('Escoja el estado'), true);
foreach ($data as $value => $name) {
echo CHtml::tag('option', array('value' => $value), CHtml::encode($name), true);
}
}
示例10: array
<?php
echo $form->textArea($model, 'textolargo', array('rows' => 6, 'cols' => 50));
?>
<?php
echo $form->error($model, 'textolargo');
?>
</div>
</fieldset>
<fieldset>
<legend> Status </legend>
<div class="row">
<?php
echo $form->labelEx($model, 'codigoestado');
echo $form->DropDownList($model, 'codigoestado', CHtml::listData(Estado::model()->findAll(" codocu='042'", array()), "codestado", "estado"), array("empty" => "--", "class" => "bolsitas", "disabled" => "disabled"));
?>
</DIV>
</fieldset>
<div class="row buttons">
<?php
echo CHtml::submitButton($model->isNewRecord ? 'Solicitar' : 'Grabar');
?>
示例11: selectEstados
/**
* Retorna los estados por país
* @return Array estados con su país concatenado en el nombre "Estado, Pais"
*/
public function selectEstados()
{
$model = Estado::model()->findAll(array('with' => array('idPais'), 'select' => array('CONCAT(t.nombre,", ",idPais.nombre) as nombre', 'id'), 'order' => 't.nombre'));
$lista = CHtml::listdata($model, 'id', 'nombre');
return $lista;
}
示例12: CDbCriteria
<div class="row">
<?php
echo $form->labelEx($model, 'codestado');
?>
<?php
$documento = '032';
$criteria = new CDbCriteria();
$criteria->condition = 'codocu=:docu';
$criteria->params = array(':docu' => $documento);
//$post = Post::model()->find($criteria);
//$datos = CHtml::listData(Estado::model()->find('codocu=:c_hcod', array(':c_hcod'=>$documento)),'codestado','estado');
//datos = CHtml::listData(Estado::model()->find($criteria),'codestado','estado');
$datos = CHtml::listData(Estado::model()->findall(), 'codestado', 'codocu', 'estado');
echo $form->DropDownList($model, 'codestado', $datos, array('empty' => '--Indique el status--'));
?>
<?php
echo $form->error($model, 'codestado');
?>
</div>
<div class="row">
<?php
echo $form->labelEx($model, 'tipo');
?>
<?php
$datos = array('A' => 'Maquinaria embarcaciones ', 'B' => 'Artefactos operaciones flota', 'C' => 'Muebles oficina', 'D' => 'Equipos de computo', 'E' => 'Equipos del local', 'F' => 'Seguridad naval');
echo $form->DropDownList($model, 'tipo', $datos, array('empty' => '--Indique el tipo--'));
示例13: array
<h1>Mensajes Envio #<?php
echo $_GET['envioid'];
?>
</h1>
<?php
$this->widget('zii.widgets.grid.CGridView', array('id' => 'mensaje-grid', 'dataProvider' => $model->search(), 'filter' => $model, 'columns' => array(array('class' => 'CCheckBoxColumn'), array('name' => 'id', 'value' => $model->id, 'htmlOptions' => array('style' => 'width:50px')), 'telefono', array('name' => 'operadoraid', 'value' => '$data->operadora->nombre', 'filter' => CHtml::listData(Operadora::model()->findAll(), 'id', 'nombre')), array('name' => 'estadoid', 'value' => '$data->estado->nombre', 'filter' => CHtml::listData(Estado::model()->findAll(), 'id', 'nombre')), array('name' => 'createtime', 'value' => 'date("d.m.Y h:i a",strtotime($data->createtime))'), 'mensaje')));
?>
示例14: actionAdmin
public function actionAdmin()
{
$status_model = Estado::model()->ultimo()->find();
Yii::app()->user->setFlash('notice', "SISTEMA : " . $status_model->estado . " ");
$model = new Estado('search');
$model->unsetAttributes();
if (isset($_GET['Estado'])) {
$model->setAttributes($_GET['Estado']);
}
$this->render('admin', array('model' => $model));
}
示例15: substr
$provedo = $model->search();
/* print_r($provedo->getKeys());
yii::app()->end();*/
$rutaimagenesx = Yii::getPathOfAlias('webroot.fotosinv') . DIRECTORY_SEPARATOR;
$baserutacorta = substr($rutaimagenesx, strpos($rutaimagenesx, yii::app()->baseUrl));
$_SESSION['sesion_Inventario_busqueda'] = $provedo->getKeys();
?>
<?php
$gridWidget = $this->widget('zii.widgets.grid.CGridView', array('id' => 'inventario-grid', 'dataProvider' => $provedo, 'itemsCssClass' => 'table table-striped table-bordered table-hover', 'columns' => array(array('name' => 'barcoactual.nomep', 'header' => 'Actual', 'value' => '$data->barcoactual->nomep'), array('name' => '.', 'header' => '.', 'type' => 'raw', 'value' => 'CHtml::image(Yii::app()->getTheme()->baseUrl.Yii::app()->params["rutatemaimagenes"]."estado".$data->codestado.".png","",array("width"=>15,"height"=>15))'), array('name' => 'codigosap', 'header' => 'C. Sap', 'type' => 'raw', 'value' => 'CHtml::link($data->codigosap,array("inventario/detalle","id"=>$data->idinventario),array("onClick"=>"Loading.show(); return true;"))'), array('name' => 'imagen', 'type' => 'raw', 'value' => '(file_exists(Yii::getPathOfAlias(\'webroot.fotosinv\').DIRECTORY_SEPARATOR.$data->codpropietario.DIRECTORY_SEPARATOR.trim($data->idinventario).\'.JPG\'))?
CHtml::image(Yii::app()->baseUrl.DIRECTORY_SEPARATOR.\'fotosinv\'.DIRECTORY_SEPARATOR.$data->codpropietario.DIRECTORY_SEPARATOR.trim($data->idinventario).\'.JPG\',$data->codigosap,array(\'width\'=>60,\'height\'=>50)):
"--"'), array('name' => 'codigoaf', 'header' => 'Plaquita', 'type' => 'raw', 'value' => 'CHtml::link($data->codigoaf,array("inventario/update","id"=>$data->idinventario),array("onClick"=>"Loading.show(); return true;"))'), array('name' => 'descripcion', 'header' => 'Descripcion del activo', 'value' => '$data->descripcion'), 'marca', 'modelo', 'serie', array('name' => '.', 'header' => '.', 'type' => 'raw', 'value' => '(!$data->rocoto=="1")?CHtml::image(Yii::app()->getTheme()->baseUrl.Yii::app()->params["rutatemaimagenes"]."ancla.png","",array("width"=>15,"height"=>15)):CHtml::image(Yii::app()->getTheme()->baseUrl.Yii::app()->params["rutatemaimagenes"]."truck.png","",array("width"=>15,"height"=>15))'), array('name' => 'lugares_lugar', 'header' => 'Lugar', 'value' => '$data->lugares->deslugar'), 'documentox.desdocu', array('name' => 'fecha', 'value' => 'date("d/m/Y",strtotime($data->fecha))'), 'numerodocumento')));
//$this->endWidget();
?>
<?php
//Capture your CGridView widget on a variable
//$gridWidget=$this->widget('bootstrap.widgets.TbGridView', array( . . .
$this->renderExportGridButton($gridWidget, 'Exportar resultados', array('class' => 'btn btn-info pull-right'));
?>
<div style="float:left; width=200px height=200px ; border 1px #000 solid;">
<?php
$gridWidget = $this->widget('zii.widgets.grid.CGridView', array('id' => 'estados-grid', 'summaryText' => '', 'dataProvider' => Estado::model()->search_por_docu('390'), 'cssFile' => '/motoristas/css/grid/grilla_natanja.css', 'columns' => array(array('name' => 'estado'), array('name' => '.', 'header' => '.', 'type' => 'raw', 'value' => 'CHtml::image(Yii::app()->getTheme()->baseUrl.Yii::app()->params["rutatemaimagenes"]."estado".$data->codestado.".png","",array("width"=>15,"height"=>15))'))));
?>
</div>
</div>