function pay::set_completed in Pay 7
Same name and namespace in other branches
- 6 includes/handlers/pay.inc \pay::set_completed()
1 call to pay::set_completed()
- pay_transaction::update_status in includes/
handlers/ pay_transaction.inc
File
- includes/
handlers/ pay.inc, line 105 - The base class for the Payment API.
Class
- pay
- @file The base class for the Payment API.
Code
function set_completed($val = NULL) {
if ($val) {
$this->completed = $this
->timestamp_value($val);
}
}