WC_Connect_Loader::init PHP Method

init() public method

Bootstrap our plugin and hook into WP/WC core.
public init ( )
        public function init()
        {
            if (!$this->check_tos()) {
                return;
            }
            $this->load_dependencies();
            $this->attach_hooks();
            $this->schedule_service_schemas_fetch();
        }
WC_Connect_Loader