guildmaster/src_joomla_1.0/admin.guildmaster.html.php

45 lines
842 B
PHP
Raw Permalink Normal View History

2011-05-12 07:09:43 +00:00
<?php
defined( '_VALID_MOS' ) or die( 'Restricted access' );
class HTML_guildmaster {
function showSettings( $option, &$params) {
mosCommonHTML::loadOverlib();
?>
<form action="index2.php" method="post" name="adminForm">
<div id="editcell">
<table class="adminheading">
<tr>
<th>
Guildmaster Settings
</th>
</tr>
</table>
<div>
In order to set a direct link to the heritage tracking page, create <b>Link - URL</b> and enter <b>index.php?option=com_guildmaster&action=heritage</b> as link.
</div>
<table class="adminform">
<tr>
<th>
Parameters
</th>
</tr>
<tr>
<td>
<?php
echo $params->render();
?>
</td>
</tr>
</table>
<input type="hidden" name="option" value="<?php echo $option; ?>" />
<input type="hidden" name="task" value="" />
</form>
<?php
}
}
?>