|
eZ Publish
[4.2]
|
Handles statuses which can be used on orders. More...
Inheritance diagram for eZOrderStatus:
Collaboration diagram for eZOrderStatus:Public Member Functions | |
| eZOrderStatus ($row) | |
| isInternal () | |
| removeThis () | |
| storeCustom () | |
Static Public Member Functions | |
| static | create () |
| static | createUndefined () |
| static | definition () |
| static | fetch ($id, $asObject=true) |
| static | fetchByStatus ($statusID, $asObject=true) |
| static | fetchList ($asObject=true, $showInactive=false) |
| static | fetchMap ($asObject=true, $showInactive=false) |
| static | fetchOrderedList ($asObject=true, $showInactive=false) |
| static | fetchPolicyList ($showInactive=false) |
| static | flush () |
| static | orderStatusCount ($showInactive=false) |
Public Attributes | |
| const | CUSTOM = 1000 |
| const | DELIVERED = 3 |
| const | PENDING = 1 |
| const | PROCESSING = 2 |
| const | UNDEFINED = 0 |
Handles statuses which can be used on orders.
This encapsulates the information about a status using the database table ezorder_status.
This status can be selected on an order and is also stored in a history per order (eZOrderStatusHistory).
The status consists of a name, a global ID and whether it is considered active or not.
The following attributes are defined:
Some special attributes:
If the user creates a new status the function storeCustom() must be used, it will find the next available ID in the database and will use locking to avoid race conditions.
To fetch a given status use fetch() when you have the DB ID or fetchByStatus() if you have a status ID. To fetch lists use fetchList() or fetchOrderedList() for a list sorted by name. If you intend to lookup many statuses using the ID the map from fetchMap() might be useful. To find the number of statuses in the system use orderStatusCount().
Definition at line 66 of file ezorderstatus.php.
| static eZOrderStatus::create | ( | ) | [static] |
Creates a new order status and returns it.
Definition at line 301 of file ezorderstatus.php.
| static eZOrderStatus::createUndefined | ( | ) | [static] |
Creates an order status which contains 'Undefined' as name and 0 as status ID. This can be used whenever code expects a status object to work with.
Definition at line 316 of file ezorderstatus.php.
Referenced by fetchByStatus().
| static eZOrderStatus::definition | ( | ) | [static] |
Reimplemented from eZPersistentObject.
Definition at line 87 of file ezorderstatus.php.
Referenced by fetch(), fetchByStatus(), fetchList(), fetchMap(), fetchOrderedList(), and removeThis().
| eZOrderStatus::eZOrderStatus | ( | $ | row | ) |
Definition at line 79 of file ezorderstatus.php.
Referenced by create(), and createUndefined().
| static eZOrderStatus::fetch | ( | $ | id, |
| $ | asObject = true |
||
| ) | [static] |
Definition at line 135 of file ezorderstatus.php.
| static eZOrderStatus::fetchByStatus | ( | $ | statusID, |
| $ | asObject = true |
||
| ) | [static] |
Definition at line 148 of file ezorderstatus.php.
Referenced by eZOrder\statusName(), and eZOrder\statusObject().
| static eZOrderStatus::fetchList | ( | $ | asObject = true, |
| $ | showInactive = false |
||
| ) | [static] |
| $asObject | If true return them as objects. |
| $showInactive | If true it will include status items that are not active, default is false. |
Definition at line 204 of file ezorderstatus.php.
| static eZOrderStatus::fetchMap | ( | $ | asObject = true, |
| $ | showInactive = false |
||
| ) | [static] |
| $asObject | If true return them as objects. |
| $showInactive | If true it will include status items that are not active, default is false. |
Definition at line 164 of file ezorderstatus.php.
Referenced by eZOrderStatusHistory\fetchOrderStatus().
| static eZOrderStatus::fetchOrderedList | ( | $ | asObject = true, |
| $ | showInactive = false |
||
| ) | [static] |
| $asObject | If true return them as objects. |
| $showInactive | If true it will include status items that are not active, default is false. |
Definition at line 243 of file ezorderstatus.php.
Referenced by eZOrder\statusModificationList().
| static eZOrderStatus::fetchPolicyList | ( | $ | showInactive = false | ) | [static] |
| $asObject | If true return them as objects. |
| $showInactive | If true it will include status items that are not active, default is false. |
Definition at line 226 of file ezorderstatus.php.
| static eZOrderStatus::flush | ( | ) | [static] |
Flushes all global caches for the statuses.
Definition at line 124 of file ezorderstatus.php.
Referenced by removeThis(), and storeCustom().
| eZOrderStatus::isInternal | ( | ) |
true if the status is considered an internal status. Definition at line 115 of file ezorderstatus.php.
| static eZOrderStatus::orderStatusCount | ( | $ | showInactive = false | ) | [static] |
Definition at line 263 of file ezorderstatus.php.
| eZOrderStatus::removeThis | ( | ) |
Will remove the current status from the database identifed by its DB ID.
Definition at line 279 of file ezorderstatus.php.
| eZOrderStatus::storeCustom | ( | ) |
Stores a new custom order status. If there is no status ID yet it will acquire a new unique and store it with that. If it already has an ID it calls store() as normally.
Definition at line 336 of file ezorderstatus.php.
| const eZOrderStatus::CUSTOM = 1000 |
Definition at line 77 of file ezorderstatus.php.
Referenced by isInternal(), and storeCustom().
| const eZOrderStatus::DELIVERED = 3 |
Definition at line 74 of file ezorderstatus.php.
| const eZOrderStatus::PENDING = 1 |
Definition at line 72 of file ezorderstatus.php.
Referenced by eZBasket\createOrder().
| const eZOrderStatus::PROCESSING = 2 |
Definition at line 73 of file ezorderstatus.php.
| const eZOrderStatus::UNDEFINED = 0 |
Definition at line 69 of file ezorderstatus.php.
Referenced by createUndefined().