0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
postnuke
/
0.764-3
/
standard
/
htdocs
/
modules
/
Sniffer
/
[
Home
]
File: pnadmin.php
<?php // File: $Id: pnadmin.php 15630 2005-02-04 06:35:42Z jorg $ // ---------------------------------------------------------------------- // POST-NUKE Content Management System // Copyright (C) 2001 by the Post-Nuke Development Team. // http://www.postnuke.com/ // ---------------------------------------------------------------------- // Based on: // PHP-NUKE Web Portal System - http://phpnuke.org/ // Thatware - http://thatware.org/ // ---------------------------------------------------------------------- // LICENSE // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License (GPL) // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // To read the license please visit http://www.gnu.org/copyleft/gpl.html // ---------------------------------------------------------------------- // Original Author of file: Mark West // Purpose of file: Sniffer Admin GUI // ---------------------------------------------------------------------- /** * Sniffer Module * * @package PostNuke_Utility_Modules * @subpackage Sniffer * @version $Id: pnadmin.php 15630 2005-02-04 06:35:42Z jorg $ * @author Mark West * @link http://www.postnuke.com The PostNuke Home Page * @copyright Copyright (C) 2002 by the PostNuke Development Team * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License */ /** * the main administration function * * This function is the default function, and is called whenever the * module is called without defining arguments. * As such it can be used for a number of things, but most commonly * it either just shows the module menu and returns or calls whatever * the module designer feels should be the default function (often this * is the view() function) * * @author The PostNuke Development Team * @return output The main module admin page. */ function Sniffer_admin_main() { // Security check - important to do this as early as possible to avoid // potential security holes or just too much wasted processing. For the // main function we want to check that the user has at least edit privilege // for some item within this component, or else they won't be able to do // anything and so we refuse access altogether. The lowest level of access // for administration depends on the particular module, but it is generally // either 'edit' or 'delete' if (!pnSecAuthAction(0, 'Sniffer::', '::', ACCESS_EDIT)) { return pnVarPrepHTMLDisplay(_MODULENOAUTH); } // get the object // Note: we're calling a technically private API function but since we're // in the module that's defined the API then this seems ok (ish...). $browserinfo = pnModAPIFunc('Sniffer', 'user', 'get'); // Create output object - this object will store all of our output so that // we can return it easily when required $pnRender =& new pnRender('Sniffer'); // assign the object // Note: we assign the object by reference to avoid duplication in memory $pnRender->assign_by_ref('browserinfo', $browserinfo); // Return the output that has been generated by this function return $pnRender->fetch('sniffer_admin_main.htm'); } ?>