32 lines
1.0 KiB
PHP
32 lines
1.0 KiB
PHP
<?php
|
|
/* ----------------------------------------------------------------------
|
|
|
|
MyOOS [Shopsystem]
|
|
https://www.oos-shop.de
|
|
|
|
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
|
----------------------------------------------------------------------
|
|
Released under the GNU General Public License
|
|
---------------------------------------------------------------------- */
|
|
|
|
/** ensure this file is being included by a parent file */
|
|
defined( 'OOS_VALID_MOD' ) OR die( 'Direct Access to this location is not allowed.' );
|
|
|
|
|
|
define('WARN_INSTALL_EXISTENCE', 'false');
|
|
define('WARN_CONFIG_WRITEABLE', 'false');
|
|
define('WARN_DOWNLOAD_DIRECTORY_NOT_READABLE', 'false');
|
|
|
|
define('ACCOUNT_COMPANY_VAT_ID_CHECK', 'true');
|
|
|
|
define('OOS_PAGE_TYPE_MAINPAGE', 1);
|
|
define('OOS_PAGE_TYPE_CATALOG', 2);
|
|
define('OOS_PAGE_TYPE_PRODUCTS', 3);
|
|
define('OOS_PAGE_TYPE_SERVICE', 4);
|
|
define('OOS_PAGE_TYPE_CHECKOUT', 5);
|
|
define('OOS_PAGE_TYPE_ACCOUNT', 6);
|
|
define('OOS_PAGE_TYPE_REVIEWS', 7);
|
|
|
|
define('LOGIN_FOR_PRICE', 'false');
|
|
|