1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
<?php
/**
* This file implements the plugin settings form
*
* b2evolution - {@link http://b2evolution.net/}
* Released under GNU GPL License - {@link http://b2evolution.net/about/license.html}
* @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
*
* @package admin
*/
if( !defined('DB_USER') ) die( 'Please, do not access this page directly.' );
?>
<form class="fform" name="form" action="b2options.php" method="post">
<input type="hidden" name="action" value="update" />
<input type="hidden" name="tab" value="<?php echo $tab; ?>" />
<fieldset>
<legend><?php echo T_('Rendering plug-ins') ?></legend>
<table class="grouped" cellspacing="0">
<tr>
<th class="firstcol"><?php echo T_('Plug-in') ?></th>
<th><?php echo T_('Apply') ?></th>
<th><?php echo T_('Description') ?></th>
</tr>
<?php
$Renderer->restart(); // make sure iterator is at start position
while( $loop_RendererPlugin = $Renderer->get_next() )
{
?>
<tr>
<td class="firstcol"><?php $loop_RendererPlugin->name(); ?></td>
<td><?php echo $loop_RendererPlugin->apply_when; ?></td>
<td><?php $loop_RendererPlugin->short_desc(); ?></td>
</tr>
<?php
}
?>
</table>
</fieldset>
<fieldset>
<legend><?php echo T_('Toolbar plug-ins') ?></legend>
<table class="grouped" cellspacing="0">
<tr>
<th class="firstcol"><?php echo T_('Plug-in') ?></th>
<th><?php echo T_('Description') ?></th>
</tr>
<?php
$Toolbars->restart(); // make sure iterator is at start position
while( $loop_ToolbarPlugin = $Toolbars->get_next() )
{
?>
<tr>
<td class="firstcol"><?php $loop_ToolbarPlugin->name(); ?></td>
<td><?php $loop_ToolbarPlugin->short_desc(); ?></td>
</tr>
<?php
}
?>
</table>
</fieldset>
<?php if( $current_User->check_perm( 'options', 'edit' ) )
{
form_submit();
}
?>
</form>
|