cryptonas-branches/pythonrewrite/templates/form_system.cs
lars ee82f91a64 check "enabled" state of plugin before display
removed obsolete forms: 'form_init', 'form_init_partition', 'form_mount', 'form_umount' and 'form_config'
2006-10-11 15:50:07 +00:00

19 lines
492 B
C#

<?cs # $Id$ ?>
<h1><?cs var:html_escape(Lang.Title.System) ?></h1>
<p><ul>
<?cs # sort the Plugins - using the most stupid way :) ?>
<?cs loop: order = #0, #100, #1
?><?cs # plugins ?><?cs each:x = Settings.PluginList
?><?cs if:x.Enabled && x.Types.system && x.Rank == order ?>
<li><a href="<?cs call:link('plugins/' + name(x),'','','','') ?>" title="<?cs
var:html_escape(x.Link) ?>"><?cs var:html_escape(x.Link) ?></a></li><?cs
/if ?><?cs
/each ?><?cs
/loop ?>
</ul></p>