File manager - Edit - /home/verseaumee/colorkeysstudio/wp-content/plugins/reddit-for-woocommerce/includes/Admin/Onboarding.php
Back
<?php /** * Registers the Reddit Setup Wizard page in Woo Admin. * * This class adds a standalone React-powered admin page at * `/wp-admin/admin.php?page=wc-admin&path=/reddit/onboarding` * which is typically used for onboarding workflows such as authentication, * ad account selection, and initial plugin setup. * * @package RedditForWooCommerce\Admin * @since 0.1.0 */ namespace RedditForWooCommerce\Admin; use RedditForWooCommerce\Utils\Helper; /** * Registers the WooCommerce Admin onboarding page for Reddit. * * This class adds a Woo Admin-powered page without a parent menu item. * The page is expected to be registered on the JS side via `addFilter( 'woocommerce_admin_pages_list' )` * and rendered using a React component. * * @since 0.1.0 */ class Onboarding { /** * Hooks the onboarding page registration into WooCommerce Admin. * * Registers the onboarding route using `wc_admin_register_page()` and assigns it a * unique ID using the plugin prefix. This page is accessible via direct URL only and * does not appear in the admin menu. * * @since 0.1.0 * * @return void */ public function register_hooks(): void { add_action( 'admin_menu', function () { wc_admin_register_page( array( 'title' => __( 'Reddit Setup Wizard', 'reddit-for-woocommerce' ), 'parent' => '', 'path' => '/reddit/onboarding', 'id' => Helper::with_prefix( 'onboarding' ), ) ); } ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.5.7 | Generation time: 0 |
proxy
|
phpinfo
|
Settings