[evolvis-commits] r17447: cosmetics (display)

mirabilos at evolvis.org mirabilos at evolvis.org
Mon Jul 18 10:46:08 CEST 2011


Author: mirabilos
Date: 2011-07-18 10:46:08 +0200 (Mon, 18 Jul 2011)
New Revision: 17447

Modified:
   trunk/gforge_base/evolvisforge/gforge/plugins/fusionforge-plugin-extratabs/data/usr/share/gforge/plugins/extratabs/www/index.php
Log:
cosmetics (display)


Modified: trunk/gforge_base/evolvisforge/gforge/plugins/fusionforge-plugin-extratabs/data/usr/share/gforge/plugins/extratabs/www/index.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/plugins/fusionforge-plugin-extratabs/data/usr/share/gforge/plugins/extratabs/www/index.php	2011-07-18 08:36:38 UTC (rev 17446)
+++ trunk/gforge_base/evolvisforge/gforge/plugins/fusionforge-plugin-extratabs/data/usr/share/gforge/plugins/extratabs/www/index.php	2011-07-18 08:46:08 UTC (rev 17447)
@@ -238,8 +238,10 @@
 <input type="text" size="60" name="tab_url" value="<?php echo $tab_url ?>" /><br/>
 </p>
 <p>
+<strong><?php echo _('Type of the tab:') ?></strong><?php echo utils_requiredField(); ?>
+<br />
 <input type="radio" name="type" value="0" checked="checked"/><?php echo _('Link') ?>
-<input type="radio" name="type" value="1" /><?php echo _('Iframe') ?>
+<input type="radio" name="type" value="1" /><?php echo _('IFRAME') ?>
 </p>
 <p>
 <input type="submit" value="<?php echo _('Add tab') ?>" />
@@ -263,9 +265,11 @@
 <form name="modify_tab" action="<?php echo util_make_url('/plugins/extratabs/'); ?>" method="post">
 <fieldset>
 <legend><?php echo _('Modify tab'); ?></legend>
-<p>
 <input type="hidden" name="group_id" value="<?php echo $group->getID() ?>" />
-<?php echo _('Tab to modify:') ?> <select name="index">
+<table>
+<tr>
+	<td><?php echo _('Tab to modify:') ?></td>
+	<td><select name="index">
 <?php
 $options = '';
 while ($row = db_fetch_array($res)) {
@@ -277,21 +281,23 @@
 }
 echo $options;
 ?>
-</select>
-</p>
-<p>
-<?php echo _('Rename to:'); ?> <input type="text" size="20" maxlength="20" name="tab_rename" value="" />
-</p>
-<p>
-<?php echo _('New URL:'); ?> <input type="text" size="60" name="tab_new_url" value="http://" />
-</p>
-<p>
-<input type="radio" name="new_type" value="0" /><?php echo _('Link') ?>
-<input type="radio" name="new_type" value="1" /><?php echo _('Iframe') ?>
-</p>
-<p>
+	</select></td>
+</tr><tr>
+	<td><?php echo _('Rename to:'); ?></td>
+	<td><input type="text" size="20" maxlength="20" name="tab_rename" value="" /></td>
+</tr><tr>
+	<td><?php echo _('New URL:'); ?></td>
+	<td><input type="text" size="60" name="tab_new_url" value="http://" /></td>
+</tr><tr>
+	<td><?php echo _('New type:'); ?></td>
+	<td>
+		<input type="radio" name="new_type" value="0" /><?php echo _('Link') ?>
+		<input type="radio" name="new_type" value="1" /><?php echo _('IFRAME') ?>
+	</td>
+</tr><tr><td colspan="2">
 <input type="submit" name="modify" value="<?php echo _('Modify tab') ?>" />
-</p>
+</td></tr>
+</table>
 </fieldset>
 </form>
 



More information about the evolvis-commits mailing list