PluginProbe
LitCommerce: Multi-channel Selling Tool For WooCommerce / trunk
LitCommerce: Multi-channel Selling Tool For WooCommerce vtrunk
litcommerce / steps / EnableWooCommerceAPI.php

EnableWooCommerceAPI.php in LitCommerce: Multi-channel Selling Tool For WooCommerce trunk, at steps/EnableWooCommerceAPI.php

16 lines 307 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 class LitCommerce_EnableWooCommerceAPI implements LitCommerce_Automation
4 {
5 public function getName()
6 {
7 return __('Enable WooCommerce REST API', 'litcommerce');
8 }
9
10 public function runStep()
11 {
12 update_option('woocommerce_api_enabled', 'yes');
13 return new LitCommerce_Result_Object(true);
14 }
15 }
16