コード例 #1
0
ファイル: Formulario.php プロジェクト: javierlov/FuentesWeb
 function __construct($class, $id, $width)
 {
     parent::__construct('', '', $class, $id, '');
     $this->ftablaINI = "<TABLE id={$id} class={$class} width={$width} ";
     $this->ftablaFIN = "</TABLE>";
     /*
     para testear
     $idhead = $id."head";
     $idbody = $id."body";
     $idfoot = $id."foot";
     $this->SetEncabezado('Encabezado',$class, $idhead);
     $this->SetCuerpo('Cuerpo','principal', $idhead);
     $this->SetPie('Pie',$class, $idhead);
     */
     return true;
 }
コード例 #2
0
ファイル: Label.php プロジェクト: javierlov/FuentesWeb
 function __construct($texto, $name, $class, $id, $type)
 {
     parent::__construct($texto, $name, $class, $id, $type);
     $this->SetTag('label');
 }