'' . esc_html__( 'Settings', 'custom-fonts' ) . '', ); return array_merge( $action_links, $links ); } /** * White labels the plugins page. * * @param array $plugins Plugins Array. * @return array */ public function plugins_page( $plugins ) { if ( ! is_callable( 'Astra_Ext_White_Label_Markup::get_whitelabel_string' ) ) { return $plugins; } if ( ! isset( $plugins[ BSF_CUSTOM_FONTS_BASE ] ) ) { return $plugins; } // Set White Labels. $name = Astra_Ext_White_Label_Markup::get_whitelabel_string( 'bsf-custom-fonts', 'name' ); $description = Astra_Ext_White_Label_Markup::get_whitelabel_string( 'bsf-custom-fonts', 'description' ); $author = Astra_Ext_White_Label_Markup::get_whitelabel_string( 'astra-agency', 'author' ); $author_uri = Astra_Ext_White_Label_Markup::get_whitelabel_string( 'astra-agency', 'author_url' ); if ( ! empty( $name ) ) { $plugins[ BSF_CUSTOM_FONTS_BASE ]['Name'] = $name; // Remove Plugin URI if Agency White Label name is set. $plugins[ BSF_CUSTOM_FONTS_BASE ]['PluginURI'] = ''; } if ( ! empty( $description ) ) { $plugins[ BSF_CUSTOM_FONTS_BASE ]['Description'] = $description; } if ( ! empty( $author ) ) { $plugins[ BSF_CUSTOM_FONTS_BASE ]['Author'] = $author; } if ( ! empty( $author_uri ) ) { $plugins[ BSF_CUSTOM_FONTS_BASE ]['AuthorURI'] = $author_uri; } return $plugins; } /** * White labels the Custom fonts menu title * * @since 1.0.2 * @param string $title custom fonts menu title. * @return string $title updated custom fonts menu title. */ public function white_label_custom_fonts_title( $title ) { if ( is_callable( 'Astra_Ext_White_Label_Markup::get_whitelabel_string' ) ) { $name = Astra_Ext_White_Label_Markup::get_whitelabel_string( 'bsf-custom-fonts', 'name' ); if ( ! empty( $name ) ) { $title = $name; } } return $title; } /** * Remove a "view details" link from the plugin list table * * @since 1.0.2 * * @param array $plugin_meta List of links. * @param string $plugin_file Relative path to the main plugin file from the plugins directory. * @param array $plugin_data Data from the plugin headers. * @return array */ public function plugin_links( $plugin_meta, $plugin_file, $plugin_data ) { if ( is_callable( 'Astra_Ext_White_Label_Markup::get_whitelabel_string' ) ) { if ( BSF_CUSTOM_FONTS_BASE == $plugin_file ) { // Set White Labels. $name = Astra_Ext_White_Label_Markup::get_whitelabel_string( 'bsf-custom-fonts', 'name' ); $description = Astra_Ext_White_Label_Markup::get_whitelabel_string( 'bsf-custom-fonts', 'description' ); if ( ! empty( $name ) ) { // Remove Plugin URI if Agency White Label name is set. unset( $plugin_meta[2] ); } } } return $plugin_meta; } /** * Add White Label setting's * * @since 1.0.2 * * @param array $settings White label setting. * @return array */ public static function settings( $settings = array() ) { $settings['bsf-custom-fonts'] = array( 'name' => '', 'description' => '', ); return $settings; } /** * Add White Label form * * @since 1.0.2 * * @param array $settings White label setting. * @return void */ public static function add_white_lavel_form( $settings = array() ) { require_once BSF_CUSTOM_FONTS_DIR . 'includes/white-label.php'; } } /** * Kicking this off by calling 'set_instance()' method */ Bsf_Custom_Fonts_White_Label::set_instance(); endif;