function payment_update_7103 in Payment 7
Sets the exportable status for existing payment methods.
File
- ./
payment.install, line 328 - Installation and uninstallation functions.
Code
function payment_update_7103(array &$sandbox) {
db_update('payment_method')
->condition('module', 'payment')
->fields(array(
'status' => ENTITY_CUSTOM,
))
->execute();
}