Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
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_icepay_merchant_id', true ); |
||
|
|||
22 | $config->secret_code = get_post_meta( $post_id, '_pronamic_gateway_icepay_secret_code', true ); |
||
23 | $config->order_id = get_post_meta( $post_id, '_pronamic_gateway_icepay_order_id', true ); |
||
24 | |||
25 | return $config; |
||
26 | } |
||
28 |