????
| Current Path : /home2/morganrand/public_html/ecommerce/os/catalog/admin/includes/boxes/ |
| Current File : /home2/morganrand/public_html/ecommerce/os/catalog/admin/includes/boxes/configuration_r.php |
<?php
/*
$Id: configuration_r.php,v 1.1 2004/08/25 22:55:41 akhan Exp $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2002 osCommerce
Released under the GNU General Public License
*/
?>
<!-- configuration //-->
<tr>
<td>
<?php
$heading = array();
$contents = array();
$heading[] = array('text' => BOX_HEADING_CONFIGURATION);
if ($selected_box == 'configuration') {
$cfg_groups = '';
$configuration_groups_query = tep_db_query("select configuration_group_id as cgID, configuration_group_title as cgTitle from " . TABLE_CONFIGURATION_GROUP . " where visible = '1' order by sort_order");
while ($configuration_groups = tep_db_fetch_array($configuration_groups_query)) {
$cfg_groups .= ' ' . $configuration_groups['cgTitle'] . '<br>';
}
$contents[] = array('text' => $cfg_groups);
}
$box = new box;
echo $box->menuBox($heading, $contents);
?>
</td>
</tr>
<!-- configuration_eof //-->