Astra_Ext_White_Label_Markup::plugins_page( array $plugins )
White labels the plugins page.
Description
Parameters
- $plugins
-
(array) (Required) Plugins Array.
Return
(array)
Source
File: classes/class-astra-ext-white-label-markup.php
public function plugins_page( $plugins ) {
$key = plugin_basename( ASTRA_EXT_DIR . 'astra-addon.php' );
if ( isset( $plugins[ $key ] ) && false !== self::astra_pro_whitelabel_name() ) {
$plugins[ $key ]['Name'] = self::astra_pro_whitelabel_name();
$plugins[ $key ]['Description'] = self::astra_pro_whitelabel_description();
}
$author = self::astra_pro_whitelabel_author();
$author_uri = self::astra_pro_whitelabel_author_url();
if ( ! empty( $author ) ) {
$plugins[ $key ]['Author'] = $author;
$plugins[ $key ]['AuthorName'] = $author;
}
if ( ! empty( $author_uri ) ) {
$plugins[ $key ]['AuthorURI'] = $author_uri;
$plugins[ $key ]['PluginURI'] = $author_uri;
}
return $plugins;
}
Expand full source code Collapse full source code View on Trac