![]() |
Documentación GVHIDRA 3.1.5
|
Ir al código fuente de este archivo.
Funciones | |
smarty_block_CWInfoContenedor ($params, $content, &$smarty) |
smarty_block_CWInfoContenedor | ( | $ | params, |
$ | content, | ||
&$ | smarty | ||
) |
Definición en la lÃnea 33 del archivo block.CWInfoContenedor.php.
{ if(!isset($content)) // Si se abre la etiqueta {CWInfoContenedor}... { $n_comp = "CWInfoContenedor"; // Necesitamos saber cuántas instancias de este componente existen ya / para poner el codigo o no $num = $smarty->igepPlugin->registrarInstancia($n_comp); } else { $ini_contenedor = "<!-- INI: CWInfoContenedor -->\n" . '<table width="100%" align="center" class="formularios" cellspacing="2" cellpadding="2">' . ' <td valign="top">' . ' <div class="ayuda">' . ' <table><tr>' . ' <td valign="top"><img src="'.IMG_PATH_CUSTOM.'ayuda.gif"></td>' . ' <td class="textAyuda"><p>'; $fin_contenedor = ' </p></td>' . ' </tr></table>' . ' </div>' . ' </td>' . '</table>' . "<!-- FIN: CWInfoContenedor -->\n"; return $ini_contenedor . $content . $fin_contenedor; } }