コード例 #1
0
ファイル: _form.php プロジェクト: Wladimir89/software1grh
/** @var TipoInformeController $this */
/** @var TipoInforme $model */
/** @var AweActiveForm $form */
$form = $this->beginWidget('ext.AweCrud.components.AweActiveForm', array('id' => 'tipo-informe-form', 'type' => 'horizontal', 'enableAjaxValidation' => true, 'clientOptions' => array('validateOnSubmit' => true, 'validateOnChange' => true), 'enableClientValidation' => false));
?>
<div class="row-fluid">
    <div class="span12">
        <!-- widget button -->
        <div class="widget border-cyan" id="widget-button">

            <!-- widget header -->
            <div class="widget-header bg-cyan">
                <!-- widget title -->
                <h4 class="widget-title"><i class="aweso-user"></i> <?php 
echo Yii::t('AweCrud.app', $model->isNewRecord ? 'Create' : 'Update') . ' ' . TipoInforme::label();
?>
</h4>
                <!-- widget action, you can also use btn, btn-group, nav-tabs or nav-pills (also support dropdown). enjoy! -->
                <div class="widget-action">
                    <button data-toggle="collapse" data-collapse="#widget-button" class="btn">
                        <i class="aweso-chevron-up color-cyan" data-toggle-icon="aweso-chevron-down  aweso-chevron-up"></i>
                    </button>
                </div>
            </div><!-- /widget header -->
            <div class="widget-content form bg-white">


                <p class="note">
                    <?php 
echo Yii::t('AweCrud.app', 'Fields with');
コード例 #2
0
ファイル: _form.php プロジェクト: Wladimir89/software1grh
?>
                <?php 
// echo $form->error($model, 'nombre')
?>
 
                                    </div>                                           
                                </div>-->

                <?php 
echo $form->textFieldRow($model, 'nombre', array('maxlength' => 65));
?>
                <?php 
/* echo $form->datepickerRow($model, 'fecha_emision', array('prepend' => '<i class="icon-calendar"></i>')) */
?>
                <?php 
echo $form->dropDownListRow($model, 'tipo_informe_id', array('' => ' -- Seleccione -- ') + CHtml::listData(TipoInforme::model()->findAll(), 'id', TipoInforme::representingColumn()), array('placeholder' => null));
?>
                <?php 
echo $form->dropDownListRow($model, 'prioridad_informe_id', array('' => ' -- Seleccione -- ') + CHtml::listData(PrioridadInforme::model()->findAll(), 'id', PrioridadInforme::representingColumn()), array('placeholder' => null));
?>


                <?php 
// echo $form->textFieldRow($model, 'entidad_id')
?>
                <?php 
//                if ($model->isNewRecord) {
$modelEmpleado = EmpleadoSubalterno::model()->find('subalterno_id=:idEmpleado', array(':idEmpleado' => $model->entidad_id));
if (Yii::app()->user->id == 1 && $modelEmpleado == null) {
    $modelEmpleado = Empleado::model()->activos()->findAll();
} else {
コード例 #3
0
ファイル: index.php プロジェクト: Wladimir89/software1grh
<?php

/** @var TipoInformeController $this */
/** @var TipoInforme $model */
$this->breadcrumbs = array('Tipo Informes');
$this->menu = array(array('label' => Yii::t('AweCrud.app', 'Create') . ' ' . TipoInforme::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 TipoInforme::label(2);
?>
    </legend>

<?php 
$this->widget('bootstrap.widgets.TbListView', array('dataProvider' => $dataProvider, 'itemView' => '_view'));
?>
</fieldset>
コード例 #4
0
 /**
  * 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.
  * @param integer the ID of the model to be loaded
  */
 public function loadModel($id, $modelClass = __CLASS__)
 {
     $model = TipoInforme::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }
コード例 #5
0
ファイル: view.php プロジェクト: Wladimir89/software1grh
<?php

/** @var TipoInformeController $this */
/** @var TipoInforme $model */
$this->breadcrumbs = array('Tipo Informes' => array('index'), $model->id);
$this->header = '<i class="aweso-info-sign aweso-2x"></i> ' . Yii::t('AweCrud.app', 'View') . ' ' . TipoInforme::label() . ' ' . CHtml::encode($model);
$this->menu = array(array('label' => Yii::t('AweCrud.app', 'Manage'), 'icon' => 'list-alt', 'url' => array('admin')));
?>

<fieldset>
    <div class="row-fluid">
        <div class="span5">
            <!-- widget button -->
            <div class="widget border-cyan" id="widget-button">

                <!-- widget header -->
                <div class="widget-header bg-cyan">
                    <!-- widget title -->
                    <h4 class="widget-title"><i class="aweso-info"></i> Informacion General</h4>
                    <!-- widget action, you can also use btn, btn-group, nav-tabs or nav-pills (also support dropdown). enjoy! -->
                    <div class="widget-action">
                        <button data-toggle="collapse" data-collapse="#widget-button" class="btn">
                            <i class="aweso-chevron-up color-cyan" data-toggle-icon="aweso-chevron-down  aweso-chevron-up"></i>
                        </button>
                    </div>
                </div><!-- /widget header -->
                <!-- widget content -->
                <div class="widget-content bg-white">

                    <?php 
$this->widget('bootstrap.widgets.TbDetailView', array('data' => $model, 'attributes' => array('id', 'nombre')));