/home/vianto5/heredit.mx/wp-content/plugins/code-snippets/php/Admin/Menus
NameSizeModeActions
Manage/-0755rm
Admin_Menu.php37230644editdlrm
Edit_Menu.php71850644editdlrm
Import_Menu.php19350644editdlrm
Settings_Menu.php98450644editdlrm
Welcome_Menu.php17100644editdlrm
Edit: /home/vianto5/heredit.mx/wp-content/plugins/code-snippets/php/Admin/Menus/Welcome_Menu.php (1710B)
client = $client; } /** * Load the welcome menu. * * @return void */ public function render() { echo '
'; } /** * Enqueue assets necessary for the welcome menu. * * @return void */ public function enqueue_assets() { $handle = 'code-snippets-welcome'; wp_enqueue_style( $handle, plugins_url( 'dist/welcome.css', PLUGIN_FILE ), self::$style_deps, PLUGIN_VERSION ); wp_enqueue_script( $handle, plugins_url( 'dist/welcome.js', PLUGIN_FILE ), self::$script_deps, PLUGIN_VERSION, true ); code_snippets()->localize_script( $handle ); wp_localize_script( $handle, 'CODE_SNIPPETS_WELCOME', [ 'banner' => $this->client->get_banner(), 'hero' => $this->client->get_hero_item(), 'changelog' => $this->client->get_changelog(), 'features' => $this->client->get_features(), 'partners' => $this->client->get_partners(), ] ); } }