Small code review changes

This commit is contained in:
Jonathan Belcher 2017-12-07 11:47:33 -05:00
parent a2743e6d25
commit 9695bc4183
1 changed files with 6 additions and 8 deletions

View File

@ -513,24 +513,22 @@ class WC_Admin_Addons {
* Should an extension be shown on the featured page.
*
* @param object $item
*
* @return boolean
*/
public static function show_extension( $item ) {
$location = WC()->countries->get_base_country();
$show = true;
if ( isset( $item->geowhitelist ) && ! in_array( $location, $item->geowhitelist ) ) {
$show = false;
if ( isset( $item->geowhitelist ) && ! in_array( $location, $item->geowhitelist, true ) ) {
return false;
}
if ( isset( $item->geoblacklist ) && in_array( $location, $item->geoblacklist ) ) {
$show = false;
if ( isset( $item->geoblacklist ) && in_array( $location, $item->geoblacklist, true ) ) {
return false;
}
if ( is_plugin_active( $item->plugin ) ) {
$show = false;
return false;
}
return $show;
return true;
}
}