Home  PHP Projekte  PHP Schulung  Informationsquellen  Geschichte  Core PHP  Fortgeschrittenes PHP  Templates  Cache-Technologien  OOH Forms  Grundlagen  JavaScript  XML  Layoutmanager  API  Flowlayout  Themed Flowlayout  Gridlayout  Themed Gridlayout  Grouplayout  IT-Manager  Kombiniert  Automatisch  Pages  Wizards  Fazit  Technik der Site  Büchertipps  Fotografie  Airbrush  Kontakt  Stuff 
|
Grouplayout
Grouplayout ist dazu gedacht, verwandte Elemente
in einer Box zu bündeln und so von anderen
Elementen abzusetzen. Der Layoutmanager
kann ledigleich ein Content Element verwalten.
| Grouplayout |
Top |
|
<?php require_once('HTML_OOH_Form/layoutmanager/form_grouplayout.php'); define('FORM_FILE_DIR', $DOCUMENT_ROOT . '/projekte/'); $group = new grouplayout('Label'); $group->addContent('Inhalt'); $group->show(); ?>
|
|
Ausgabe
|
Top |
|
|
| Template |
Top |
|
<?php define('FORM_FILE_DIR', $DOCUMENT_ROOT . '/projekte/'); $html = implode('', file(FORM_FILE_DIR . 'HTML_OOH_Form/html/grouplayout.html')); $html = preg_replace('/\t/', ' ', $html); print htmlspecialchars($html); ?>
|
|
Ausgabe
|
Top |
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2" align="left" valign="top"><font size="-3"> </font></td>
<td rowspan="3" nowrap">
<font face="Arial, Helvetica" size="2"> <b></b> </font>
</td>
<td colspan="2" align="left" valign="top"><font size="-3"> </font></td>
</tr>
<tr>
<td colspan="2" align="left" valign="top" bgcolor="Silver"><img src="dummie1x1.gif" alt="" width="1" height="1"></td>
<td width="100%" colspan="2" align="left" valign="top" bgcolor="Silver"><img src="dummie1x1.gif" alt="" width="1" height="1"></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="Silver"><img src="dummie1x1.gif" alt="" width="1" height="1"></td>
<td align="left" valign="top"><font size="-3"> </font></td>
<td width="100%" align="left" valign="top"><font size="-3"> </font></td>
<td align="left" valign="top" bgcolor="Silver"><img src="dummie1x1.gif" alt="" width="1" height="1"></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="Silver"><img src="dummie1x1.gif" alt="" width="1" height="1"></td>
<td width="100%" colspan="3" align="left" valign="top"><font size="-3"> </font></td>
<td align="left" valign="top" bgcolor="Silver"><img src="dummie1x1.gif" alt="" width="1" height="1"></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="Silver"><img src="dummie1x1.gif" alt="" width="1" height="1"></td>
<td align="left" valign="top" colspan="3"><table border="0" cellspacing="0" cellpadding="0"><td align="left" valign="top"><font size="-3"> </font></td><td align="left" valign="top"></td><td align="left" valign="top"><font size="-3"> </font></td></table></td>
<td align="left" valign="top" bgcolor="Silver"><img src="dummie1x1.gif" alt="" width="1" height="1"></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="Silver"><img src="dummie1x1.gif" alt="" width="1" height="1"></td>
<td width="100%" colspan="3" align="left" valign="top"><font size="-3"> </font></td>
<td valign="top" bgcolor="Silver"><img src="dummie1x1.gif" alt="" width="1" height="1"></td>
</tr>
<tr>
<td width="100%" colspan="5" align="left" valign="top" bgcolor="Silver"><img src="dummie1x1.gif" alt="" width="1" height="1"></td>
</tr>
</table> |
|
|
< ^ >
|