Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function get_config( $post_id ) { |
||
19 | $config = new Config(); |
||
20 | |||
21 | $config->storename = get_post_meta( $post_id, '_pronamic_gateway_ems_ecommerce_storename', true ); |
||
|
|||
22 | $config->secret = get_post_meta( $post_id, '_pronamic_gateway_ems_ecommerce_secret', true ); |
||
23 | $config->mode = get_post_meta( $post_id, '_pronamic_gateway_mode', true ); |
||
24 | $config->order_id = get_post_meta( $post_id, '_pronamic_gateway_ems_ecommerce_order_id', true ); |
||
25 | |||
26 | return $config; |
||
27 | } |
||
29 |