47 lines
1.5 KiB
PHP
47 lines
1.5 KiB
PHP
<?php
|
|
/* ----------------------------------------------------------------------
|
|
$Id: tools.php 437 2013-06-22 15:33:30Z r23 $
|
|
|
|
MyOOS [Shopsystem]
|
|
https://www.oos-shop.de
|
|
|
|
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
|
----------------------------------------------------------------------
|
|
Based on:
|
|
|
|
File: tools.php,v 1.20 2002/03/16 00:20:11 hpdl
|
|
----------------------------------------------------------------------
|
|
osCommerce, Open Source E-Commerce Solutions
|
|
http://www.oscommerce.com
|
|
|
|
Copyright (c) 2003 osCommerce
|
|
----------------------------------------------------------------------
|
|
Released under the GNU General Public License
|
|
---------------------------------------------------------------------- */
|
|
|
|
$bActive = ($_SESSION['selected_box'] == 'tools' ) ? TRUE : FALSE;
|
|
|
|
$aBlocks[] = array(
|
|
'heading' => BOX_HEADING_TOOLS,
|
|
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=tools'),
|
|
'icon' => 'fa fa-database',
|
|
'active' => $bActive,
|
|
'contents' => array(
|
|
array(
|
|
'code' => $aContents['mail'],
|
|
'title' => BOX_TOOLS_MAIL,
|
|
'link' => oos_admin_files_boxes('mail', 'selected_box=tools')
|
|
),
|
|
array(
|
|
'code' => $aContents['newsletters'],
|
|
'title' => BOX_TOOLS_NEWSLETTER_MANAGER,
|
|
'link' => oos_admin_files_boxes('newsletters', 'selected_box=tools')
|
|
),
|
|
array(
|
|
'code' => $aContents['whos_online'],
|
|
'title' => BOX_TOOLS_WHOS_ONLINE,
|
|
'link' => oos_admin_files_boxes('whos_online', 'selected_box=tools')
|
|
),
|
|
),
|
|
);
|