Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1124990
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, Sep 4, 1:58 AM
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Sep 6, 1:58 AM (4 h, 6 m)
Engine
blob
Format
Raw Data
Handle
727684
Attached To
rMINC Modules.In-Commerce
constants.php
View Options
<?php
/**
* @version $Id: constants.php 14258 2011-03-16 21:43:52Z 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/'
);
class
ProductInventory
{
const
DISABLED
=
0
;
const
BY_PRODUCT
=
1
;
const
BY_OPTIONS
=
2
;
}
class
ProductBackorder
{
const
AUTO
=
2
;
const
ALWAYS
=
1
;
const
NEVER
=
0
;
}
class
OptionCombinationPriceType
{
const
EQUALS
=
1
;
const
FLAT
=
2
;
const
PECENT
=
3
;
}
class
DiscountType
{
const
FLAT
=
1
;
const
PERCENT
=
2
;
}
class
DiscountItemType
{
const
PRODUCT
=
1
;
const
CATEGORY
=
2
;
const
WHOLE_ORDER
=
0
;
}
class
CouponType
{
const
FLAT
=
1
;
const
PERCENT
=
2
;
}
class
CouponItemType
{
const
PRODUCT
=
1
;
const
CATEGORY
=
2
;
const
WHOLE_ORDER
=
0
;
}
Event Timeline
Log In to Comment