<?php
/**
* $Id: permissions.php v 1.03 05 july 2004 Liquid Exp $
* Module: WF-Downloads
* Version: v2.0.5a
* Release Date: 26 july 2004
* Author: WF-Sections
* Licence: GNU
*/
include 'admin_header.php';
include_once XOOPS_ROOT_PATH . '/class/xoopsform/grouppermform.php';
xoops_cp_header();
xtorrent_adminmenu(_AM_XTORRENT_PERM_MANAGEMENT);
echo "
<fieldset><legend style='font-weight: bold; color: #900;'>" . _AM_XTORRENT_PERM_CPERMISSIONS . "</legend>\n
<div style='padding: 2px;'>\n";
$cat_form = new XoopsGroupPermForm('', $xoopsModule->getVar('mid'), 'xtorrentownCatPerm', _AM_XTORRENT_PERM_CSELECTPERMISSIONS );
$result = $xoopsDB->query("SELECT cid, pid, title FROM " . $xoopsDB->prefix("xtorrent_cat"));
if ($xoopsDB->getRowsNum($result))
{
while ($cat_row = $xoopsDB->fetcharray($result))
{
$cat_form->addItem($cat_row['cid'], $cat_row['title'], $cat_row['pid']);
}
echo $cat_form->render();
}
else
{
echo "<div><b>" . _AM_XTORRENT_PERM_CNOCATEGORY . "</b></div>";
}
echo "</div></fieldset><br />";
unset ($cat_form);
/*
* File permission form
*/
echo "
<fieldset><legend style='font-weight: bold; color: #900;'>" . _AM_XTORRENT_PERM_FPERMISSIONS . "</legend>\n
<div style='padding: 2px;'>\n";
$file_form = new XoopsGroupPermForm('', $xoopsModule->getVar('mid'), 'xtorrentownFilePerm', _AM_XTORRENT_PERM_FSELECTPERMISSIONS);
$result2 = $xoopsDB->query("SELECT lid, title FROM " . $xoopsDB->prefix('xtorrent_downloads'));
if ($xoopsDB->getRowsNum($result2))
{
while ($file_row = $xoopsDB->fetcharray($result2))
{
$file_form->addItem($file_row['lid'], $file_row['title'], 0);
}
echo $file_form->render();
}
else
{
echo "<div><b>" . _AM_XTORRENT_PERM_FNOFILES . "</b></div>";
}
echo "</div></fieldset><br />";
unset ($file_form);
echo _AM_XTORRENT_PERM_PERMSNOTE;
xoops_cp_footer();
?>