/home/vianto5/heredit.mx/wp-content/plugins/code-snippets/php/Admin/Menus
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(),
]
);
}
}