readme for "inc.adminmenue.php"

/**************************************************************************/
/* PHP-NUKE-Addon AE-Webring                                              */
/* ======================                                                 */
/* Andreas Ellsel, 29.11.2001                                             */
/* Comments to a.ellsel@shiba.de / http://php-nuke.shiba.de               */
/* Version 1.3.0                                                          */
/* Last changes: 17.03.2002                                               */
/* include in Mainfile 	for   adminblock()                                */
/**************************************************************************/

insert the following 4 red lines in mainfile.php


function adminblock() {
    global $admin, $prefix, $dbi;
    if (is_admin($admin)) {
	$result ..............
	.....................
	..... sql_num_rows($result, $dbi);
	$content .= "· "._UDOWNLOADS.": $num";
	  #  start AE-Webring Admin
	     $aewebringmodulename = "Webring";                                  
	     include("modules/$aewebringmodulename/options/inc.adminmenue.php");
	  #  end AE-Webring Admin
	themesidebox($title, $content);
    }
}