|
eZ Publish
[trunk]
|
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 46 of file ezorderstatus.php.
| static eZOrderStatus::create | ( | ) | [static] |
Creates a new order status and returns it.
Definition at line 281 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 296 of file ezorderstatus.php.
Referenced by fetchByStatus().
| static eZOrderStatus::definition | ( | ) | [static] |
Reimplemented from eZPersistentObject.
Definition at line 67 of file ezorderstatus.php.
Referenced by fetch(), fetchByStatus(), fetchList(), fetchMap(), fetchOrderedList(), and removeThis().
| eZOrderStatus::eZOrderStatus | ( | $ | row | ) |
Definition at line 59 of file ezorderstatus.php.
Referenced by create(), and createUndefined().
| static eZOrderStatus::fetch | ( | $ | id, |
| $ | asObject = true |
||
| ) | [static] |
Definition at line 115 of file ezorderstatus.php.
| static eZOrderStatus::fetchByStatus | ( | $ | statusID, |
| $ | asObject = true |
||
| ) | [static] |
Definition at line 128 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 184 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 144 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 223 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 206 of file ezorderstatus.php.
| static eZOrderStatus::flush | ( | ) | [static] |
Flushes all global caches for the statuses.
Definition at line 104 of file ezorderstatus.php.
Referenced by removeThis(), and storeCustom().
true if the status is considered an internal status. Definition at line 95 of file ezorderstatus.php.
| static eZOrderStatus::orderStatusCount | ( | $ | showInactive = false | ) | [static] |
Definition at line 243 of file ezorderstatus.php.
Will remove the current status from the database identifed by its DB ID.
Definition at line 259 of file ezorderstatus.php.
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 316 of file ezorderstatus.php.
| const eZOrderStatus::CUSTOM = 1000 |
Definition at line 57 of file ezorderstatus.php.
Referenced by isInternal(), and storeCustom().
| const eZOrderStatus::DELIVERED = 3 |
Definition at line 54 of file ezorderstatus.php.
| const eZOrderStatus::PENDING = 1 |
Definition at line 52 of file ezorderstatus.php.
Referenced by eZBasket\createOrder().
| const eZOrderStatus::PROCESSING = 2 |
Definition at line 53 of file ezorderstatus.php.
| const eZOrderStatus::UNDEFINED = 0 |
Definition at line 49 of file ezorderstatus.php.
Referenced by createUndefined().