loadScripts(); } } /** * Adds Extendify menu to admin panel. * * @return void */ public function addAdminMenu() { $raw = \wp_remote_get(EXTENDIFY_URL . 'public/assets/extendify-logo.svg'); if (\is_wp_error($raw)) { $svg = ''; } else { $svg = \wp_remote_retrieve_body($raw); } add_menu_page( 'Extendify', 'Extendify', App::$requiredCapability, 'extendify', [ $this, 'createAdminPage', ], // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_encode 'data:image/svg+xml;base64,' . base64_encode($svg) ); } /** * Settings page output * * @since 1.0.0 * * @return void */ public function createAdminPage() { ?>