<?php
//Copyright (c) Florian Grannemann
//Last change in version: 2.0 Alpha 3
/*
******************************************************************************
ADbNewsSender 2
Copyright (C) 2009 Florian Grannemann (hide@address.com)
Website: http://adbnewssender.sf.net
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
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.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/
******************************************************************************
*/
//Do not edit anything unless you realy REALY know what you are doing!
$admin_modules=array();
//$admin_modules["type"] type of modul (newlsetter: nl or global: global)
//admin_modules:
//specified here:
//$admin_modules["type"][Modnumber]["file"]="filename.php.inc"; //filename
//$admin_modules["type"][Modnumber]["specialheaders"] :path to special headers file in the specialheaders directory. It will get included into the <HEAD></HEAD>-Area (optional)
//e.g: $admin_modules["type"][Modnumber]["specialheaders"]="header.php";
//This file will get included via the php include() function. so you can use php in the special header file or html, java[script] or what ever you want.
//specified in the language file (lang_admin_modules.php.inc):
//$admin_modules["type"][Modnumber]["menuname"] : name in the global/newsletter menu
//and $admin_modules["type"][Modnumber]["title"]: Page title of the modul
//call: /admin/index.php?modul=moduletype|number
//Default modules
//please don't change the modul numbers of the default modules or their order.
//global modules:
//*******************
$admin_modules["global"]=array();
//Admin index:
$admin_modules["global"][0]["file"]="admin_index.php.inc";
//global config:
$admin_modules["global"][1]["file"]="global_config.php.inc";
//$admin_modules["global"][1]["specialheaders"]="";
//Newsletter management:
$admin_modules["global"][2]["file"]="NLmanagement.php.inc";
//$admin_modules["global"][2]["specialheaders"]="";
//search for updates:
$admin_modules["global"][3]["file"]="update.php.inc";
//$admin_modules["global"][3]["specialheaders"]="";
//Newsletter modules:
//*******************
$admin_modules["nl"]=array();
//Send Newsletter:
$admin_modules["nl"][0]["file"]="SendNL.php.inc";
$admin_modules["nl"][0]["specialheaders"]="specialheaders/sendNL.php.inc";
//view/delete ML entrys
$admin_modules["nl"][1]["file"]="viewMLentries.php.inc";
//$admin_modules["nl"][1]["specialheaders"]="";
//view/delete PL entrys
$admin_modules["nl"][2]["file"]="viewPLentries.php.inc";
//$admin_modules["nl"][2]["specialheaders"]="";
//Newsletter settings
$admin_modules["nl"][3]["file"]="NLsettings.php.inc";
//$admin_modules["nl"][3]["specialheaders"]="";
//Archive management
$admin_modules["nl"][4]["file"]="NLarchive.php.inc";
//$admin_modules["nl"][4]["specialheaders"]="";
//Drafts management
$admin_modules["nl"][5]["file"]="drafts.php.inc";
$admin_modules["nl"][5]["specialheaders"]="specialheaders/drafts.php.inc";
//add your modules here
?>