public function renderImage($data, $row) { echo BsHtml::imageThumbnail(Yii::app()->request->baseUrl . "/images/pregunta/" . str_replace("/upload/preguntas/default/", '', $data->pre_imagen), '', $htmlOptions = array('style' => 'width: 110px; height: 110px;border-radius: 15px;margin-top: 5px;')); }
$this->breadcrumbs = array('Evaluacions' => array('index'), 'Manage'); $this->menu = array(array('icon' => 'glyphicon glyphicon-list', 'label' => 'List Evaluacion', 'url' => array('index')), array('icon' => 'glyphicon glyphicon-plus-sign', 'label' => 'Create Evaluacion', 'url' => array('create'))); ?> <?php echo BsHtml::pageHeader('Seleccione', 'Perfil Técnico'); ?> <div class="row"> <?php foreach ($model as $key => $value) { ?> <div class="col-sm-6 col-md-4"> <div class="thumbnail"> <?php echo CHtml::link(BsHtml::imageThumbnail(Yii::app()->request->baseUrl . "/images/modulo/" . $value->PER_IMG, '', $htmlOptions = array('style' => 'width: 350px; height: 300px;border-radius: 15px;margin-top: 5px;')), array('evaluacion/module/' . $value->PER_ID)); ?> <h3><?php echo $value->PER_NOMBRE; ?> </h3> <p><?php echo $value->PER_DESCRIPCION; ?> </p> <?php echo BsHtml::button('Módulos', array('color' => BsHtml::BUTTON_COLOR_PRIMARY, 'onclick' => "window.location.href='module/{$value->PER_ID}'")); ?> <?php echo BsHtml::button('Preguntas', array('color' => BsHtml::BUTTON_COLOR_INFO, 'onclick' => "window.location.href='demo/{$value->PER_ID}'")); ?>
<?php $this->beginWidget('bootstrap.widgets.BsPanel', array('title' => BsHtml::bold(BsHtml::italics('Bienvenido a QualitatCorp')), 'decorationCssClass' => 'panel-x', 'contentCssClass' => 'panel-body-x', 'titleCssClass' => 'panel-title-x', 'titleTag' => 'panel-title-x', 'footer' => BsHtml::italics('Simulador de qualitat Corp<br> Dalcahue 1120, Oficina 201 - San Pedro de la Paz, VIII Región'), 'footerCssClass' => 'panel-foot-x')); if (!Yii::app()->user->isGuest) { $usuario = Usuario::model()->findByPk(Yii::app()->user->id); } else { $usuario = new Usuario(); } ?> <div class="row"> <div class="col-xs-10 col-sm-12"> <div class="col-xs-4 col-sm-4"> <?php echo BsHtml::imageThumbnail(Yii::app()->request->baseUrl . "/images/logo.png", '', $htmlOptions = array('style' => 'width: 100%; height: 40%;border-radius: 15px;margin-bottom: 10%;border:none;padding:-5% -5%')); ?> </div> <div class="col-xs-8 col-sm-8"> <?php echo "<br><br>Bienvenido " . " " . $usuario->usu_nombre . " a QualitatCorp<br>Administración - Realidad Virtual Inmersiva\n\t\t\t\t\tPlataforma de administración web Versión 3.0 \n\t\t\t\t\t©2016 Qualitat Corp todos los derechos reservados. "; ?> </div> </div> </div> <?php $this->endWidget();
// Contiene datos de la Evaluacion a imprimir $var2 = EvaluacionPregunta::model()->findAllByAttributes(array('eva_id' => $var->eva_id)); // datos de las respuestas a la evaluacion a imprimir $var3; foreach ($var2 as $key => $value) { $var3[$key] = Pregunta::model()->findByPk($value->pre_id); } $table = ""; foreach ($var2 as $key => $value) { $respuesta = ""; if ($value->pre_respuesta) { $respuesta = "SI"; } else { $respuesta = "NO"; } $table .= "<tr><td>" . ("<center>" . BsHtml::bold($key + "1", $htmlOptions = array('style' => 'font-size:110%;color:#000;'))) . "</td>\n <td>" . ("<center>" . BsHtml::imageThumbnail(Yii::app()->request->baseUrl . "/images/pregunta/" . str_replace("/upload/preguntas/default/", '', $var3[$key]->pre_imagen), '', $htmlOptions = array('style' => 'width: 110px; height: 110px;margin-top: 5px;margin-bottom: 5px;border:1px solid #dddddd;'))) . "</td>\n <td>" . ("<center>" . BsHtml::bold($var3[$key]->pre_descripcion, $htmlOptions = array('style' => 'font-size:110%;color:#000;')) . "<br>" . BsHtml::italics('"' . $var3[$key]->pre_comentario . '"', $htmlOptions = array('style' => 'font-size:90%;'))) . "</td>\n <td>" . ("<center>" . BsHtml::bold($var3[$key]->tpr_nombre, $htmlOptions = array('style' => 'font-size:110%;color:#000;'))) . "</td>\n <td>" . ("<center>" . BsHtml::bold($respuesta, $htmlOptions = array('style' => 'font-size:110%;color:#000;'))) . "</td></tr>"; } // $header= BsHtml::pageHeader("Informe - Evaluación","<br>" .$var['emp_nombre']." - "."Usuario ".$var['usu_rut']); $html = '<table class="table table-bordered table-striped"> <thead> <tr> <th style="width:20px"><center>#</th> <th style="width:150px"><center>Imagen</th> <th><center>Descripción</th> <th style="width:90px"><center>Tipo Pregunta</th> <th style="width:80px"><center>Respuesta</th> </tr> </thead> <tbody>' . $table . '</tbody> <tfoot> </tfoot>