45 lines
842 B
PHP
45 lines
842 B
PHP
|
<?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
|
||
|
}
|
||
|
}
|
||
|
?>
|