Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function get_config( $post_id ) { |
||
19 | $config = new Config(); |
||
20 | |||
21 | $config->merchant_id = get_post_meta( $post_id, '_pronamic_gateway_omnikassa_merchant_id', true ); |
||
|
|||
22 | $config->secret_key = get_post_meta( $post_id, '_pronamic_gateway_omnikassa_secret_key', true ); |
||
23 | $config->key_version = get_post_meta( $post_id, '_pronamic_gateway_omnikassa_key_version', true ); |
||
24 | $config->order_id = get_post_meta( $post_id, '_pronamic_gateway_omnikassa_order_id', true ); |
||
25 | $config->mode = get_post_meta( $post_id, '_pronamic_gateway_mode', true ); |
||
26 | |||
27 | return $config; |
||
28 | } |
||
30 |