Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F871942
constants.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, May 8, 6:17 AM
Size
1 KB
Mime Type
text/x-php
Expires
Sat, May 10, 6:17 AM (1 d, 11 h)
Engine
blob
Format
Raw Data
Handle
617742
Attached To
rMINC Modules.In-Commerce
constants.php
View Options
<?php
/**
* @version $Id: constants.php 12924 2009-11-12 19:19:07Z alex $
* @package In-Commerce
* @copyright Copyright (C) 1997 - 2009 Intechnic. All rights reserved.
* @license Commercial License
* This software is protected by copyright law and international treaties.
* Unauthorized reproduction or unlicensed usage of the code of this program,
* or any portion of it may result in severe civil and criminal penalties,
* and will be prosecuted to the maximum extent possible under the law
* See http://www.in-portal.org/commercial-license for copyright notices and details.
*/
// order statuses
define
(
'ORDER_STATUS_INCOMPLETE'
,
0
);
define
(
'ORDER_STATUS_PENDING'
,
1
);
define
(
'ORDER_STATUS_BACKORDERS'
,
2
);
define
(
'ORDER_STATUS_TOSHIP'
,
3
);
define
(
'ORDER_STATUS_PROCESSED'
,
4
);
define
(
'ORDER_STATUS_DENIED'
,
5
);
define
(
'ORDER_STATUS_ARCHIVED'
,
6
);
/**
* ID of order, that 100% not in database
*
*/
define
(
'FAKE_ORDER_ID'
,
-
1
);
define
(
'PRODUCT_TYPE_TANGIBLE'
,
1
);
define
(
'PRODUCT_TYPE_SUBSCRIPTION'
,
2
);
define
(
'PRODUCT_TYPE_SERVICE'
,
3
);
define
(
'PRODUCT_TYPE_DOWNLOADABLE'
,
4
);
define
(
'PRODUCT_TYPE_PACKAGE'
,
5
);
// payment gateway processing satuses
define
(
'SHIPPING_CONTROL_DIRECT'
,
3
);
define
(
'SHIPPING_CONTROL_PREAUTH'
,
4
);
// gift certificate statuses
define
(
'gcENABLED'
,
1
);
define
(
'gcUSED'
,
2
);
define
(
'gcDISABLED'
,
0
);
define
(
'USPS_LABEL_FOLDER'
,
WRITEABLE
.
'/user_files/labels/'
);
Event Timeline
Log In to Comment