{--ADMIN_ORDER_SELECT_COLUMN_' . strtoupper($item) . '--}'; } // END - foreach // Return the output return $OUT; } //----------------------------------------------------------------------------- // Wrapper functions for configuration entries //----------------------------------------------------------------------------- // Getter for 'order_multi_page' config entry function getOrderMultiPage () { // Do we have cache? if (!isset($GLOBALS[__FUNCTION__])) { // Determine it $GLOBALS[__FUNCTION__] = getConfig('order_multi_page'); } // END - if // Return cache return $GLOBALS[__FUNCTION__]; } // Determines wether 'order_multi_page' is set to 'Y' function isOrderMultiPageEnabled () { // Do we have cache? if (!isset($GLOBALS[__FUNCTION__])) { // Determine it $GLOBALS[__FUNCTION__] = (getOrderMultiPage() == 'Y'); } // END - if // Return cache return $GLOBALS[__FUNCTION__]; } // [EOF] ?>