' . __( 'Settings' ) . ''; return $links; } public function add_plugin_meta_links( $meta, $file ) { if ( $file !== plugin_basename( WPEX_FILE ) ) { return $meta; } $upgradeable = apply_filters( 'wpextra_upgradeable', true ); $meta[] = '' . __( 'Documentation' ) . ''; if ( !$upgradeable ) { $meta[] = '' . __( 'Support' ) . ''; } else { $meta[] = '' . __( 'Donate', 'wp-extra' ) . ''; $meta[] = '' . str_repeat( '', 5 ) . ''; } return $meta; } }