Current Path : /var/www/html/clients/rebirth.e-nk.ru/sources/acp_loaders/ |
Current File : /var/www/html/clients/rebirth.e-nk.ru/sources/acp_loaders/acp_pages_content.php |
<?php /* +--------------------------------------------------------------------------- | Invision Power Board | ======================================== | by Matthew Mecham | (c) 2004 Invision Power Services | Nullified by Terabyte | ======================================== +--------------------------------------------------------------------------- | INVISION POWER BOARD IS NOT FREE SOFTWARE! | +--------------------------------------------------------------------------- | | > CONTROL PANEL PAGES FILE | > Script written by Matt Mecham | > Date started: Fri 8th April 2005 (12:07) | +--------------------------------------------------------------------------- */ //=========================================================================== // Simple library that holds all the links for the admin cp //=========================================================================== // CAT_ID => array( PAGE_ID => (PAGE_NAME, URL ) ) // $PAGES[ $cat_id ][$page_id][0] = Page name // $PAGES[ $cat_id ][$page_id][1] = Url // $PAGES[ $cat_id ][$page_id][2] = Look for folder before showing // $PAGES[ $cat_id ][$page_id][3] = URL type: 1 = Board URL 0 = ACP URL // $PAGES[ $cat_id ][$page_id][4] = Item icon: 1= redirect 0 = Normal $CATS[] = array( 'Forum Control' ); $PAGES[] = array( 1 => array( 'Manage Forums' , 'section=content&act=forum' ), 2 => array( 'Add New Category' , 'section=content&act=forum&code=new&type=category' ), 3 => array( 'Add New Forum' , 'section=content&act=forum&code=new&type=forum' ), 4 => array( 'Manage Permissions' , 'section=content&act=group&code=permsplash'), // 6 => array( 'Moderators' , 'section=content&act=mod' ), 7 => array( 'Topic Multi-Moderation' , 'section=content&act=multimod' ), 8 => array( 'Trash Can Set-Up' , 'section=tools&act=op&code=findsetting&key=trashcanset-up', '', 0, 1 ), ); $CATS[] = array( 'Users and Groups' ); $PAGES[] = array( 1 => array ( 'Manage Members' , 'section=content&act=mem&code=search' ), 2 => array ( 'Add New Member' , 'section=content&act=mem&code=add' ), 3 => array ( 'Manage Ranks' , 'section=content&act=mem&code=title'), 4 => array ( 'Manage User Groups' , 'section=content&act=group' ), 5 => array ( 'Manage Validating' , 'section=content&act=mtools&code=mod' ), 6 => array ( 'Manage Locked' , 'section=content&act=mtools&code=lock' ), 9 => array ( 'Custom Profile Fields' , 'section=content&act=field' ), 11 => array ( 'IP Member Tools' , 'section=content&act=mtools' ), 12 => array ( 'Member Settings' , 'section=tools&act=op&code=findsetting&key=userprofiles', '', 0, 1 ), ); $CATS[] = array( 'Subscriptions' ); $PAGES[] = array( 1 => array( 'Manage Payment Gateways' , 'section=content&act=msubs&code=index-gateways' ), 2 => array( 'Manage Packages' , 'section=content&act=msubs&code=index-packages' ), 3 => array( 'Manage Transactions' , 'section=content&act=msubs&code=index-tools' ), 4 => array( 'Manage Currencies' , 'section=content&act=msubs&code=currency' , ), 5 => array( 'Manually Add Transaction' , 'section=content&act=msubs&code=addtransaction' ), 6 => array( 'Install Payment Gateways' , 'section=content&act=msubs&code=install-index' ), 9 => array( 'Subscription Settings' , 'section=tools&act=op&code=findsetting&key='.urlencode('subscriptionsmanager'), '', 0, 1 ), ); $CATS[] = array( 'Calendars' ); $PAGES[] = array( 1 => array( 'Calendar Manager' , 'section=content&act=calendars&code=calendar_list' ), 2 => array( 'Add New Calendar' , 'section=content&act=calendars&code=calendar_add' ), ); $CATS[] = array( 'RSS Management' ); $PAGES[] = array( 1 => array( 'RSS Export Manager' , 'section=content&act=rssexport&code=rssexport_overview' ), 2 => array( 'RSS Import Manager' , 'section=content&act=rssimport&code=rssimport_overview' ), ); $CATS[] = array( 'Custom BBCode' ); $PAGES[] = array( 1 => array( 'Custom BBCode Manager' , 'section=content&act=bbcode&code=bbcode' ), 2 => array( 'Add New BBCode' , 'section=content&act=bbcode&code=bbcode_add' ), ); $CATS[] = array( 'Word & Ban Filters' ); $PAGES[] = array( 1 => array( 'Manage Badword Filters', 'section=content&act=babw&code=badword' ), 2 => array( 'Manage Ban Filters' , 'section=content&act=babw&code=ban' ), ); $CATS[] = array( 'Attachments' ); $PAGES[] = array( 1 => array( 'Attachment Types' , 'section=content&act=attach&code=types' ), 2 => array( 'Attachment Stats' , 'section=content&act=attach&code=stats' ), 3 => array( 'Attachment Search' , 'section=content&act=attach&code=search' ), ); ?>