示例#1
0
 function generar_layout()
 {
     echo "<pre style='width: 700px; overflow: scroll; font-size: 11px'>";
     echo htmlentities($this->contenido_archivo_log, ENT_QUOTES);
     echo '</pre>';
     parent::generar_layout();
 }
示例#2
0
 function generar_layout()
 {
     parent::generar_layout();
     if (!$this->controlador->mostrar_evento_detalle()) {
         $internos = $this->controlador()->controlador()->get_eventos_internos();
         if (!empty($internos)) {
             $this->generar_html_eventos_internos($internos);
         }
     }
 }
示例#3
0
 function generar_layout()
 {
     $comando_ejecutado = $this->controlador()->get_comando_en_ejecucion();
     $log = nl2br($this->controlador()->get_log_comando_ejecucion());
     echo "<style type='text/css'>\n\t\t\t\t\t\t.div-consola {\n\t\t\t\t\t\t\tfont-family:Arial;\n\t\t\t\t\t\t\tfont-size:9px;\n\t\t\t\t\t\t\theight:430px;\n\t\t\t\t\t\t\tpadding: 2px;\n\t\t\t\t\t\t\tborder: 1px solid;\n\t\t\t\t\t\t\toverflow-x:hidden;\n\t\t\t\t\t\t\toverflow-y:scroll;\n\t\t\t\t\t\t\tbackground: white;\n\t\t\t\t\t\t}\n\t\t\t\t\t</style>";
     parent::generar_layout();
     echo "<fieldset> <legend> Comando Ejecutado</legend>{$comando_ejecutado}</fieldset><br>";
     echo '<fieldset><legend>Salida de Consola: </legend>';
     echo "<div class='div-consola'>{$log}</div></fieldset>";
 }
示例#4
0
    function generar_layout()
    {
        parent::generar_layout();
        ?>
		<style type="text/css">
		.cuerpo, .ci-cuerpo {
			margin-top: 0px;
			margin-bottom: 0px;
		}
		pre {
			margin: 0;
			padding:0;
			margin-left:20px;
		}
		</style>
<?php 
        if ($this->controlador->debe_mostrar_visor()) {
            $this->generar_html_fs();
        }
    }
示例#5
0
 function generar_layout()
 {
     parent::generar_layout();
     $opciones = array('param_html' => array('texto' => 'Testing Selenium'));
     $test_selenium = toba::vinculador()->get_url('toba_editor', 30000025, null, $opciones);
     echo '<br>' . $test_selenium;
 }