/**
  * Returns true if on the admin gateway settings page for this gateway
  *
  * @since 2.0
  * @see SV_WC_Plugin::is_plugin_settings()
  * @return boolean true if on the admin gateway settings page
  */
 public function is_plugin_settings()
 {
     foreach ($this->get_gateway_class_names() as $gateway_class_name) {
         if (SV_WC_Plugin_Compatibility::is_payment_gateway_configuration_page($gateway_class_name)) {
             return true;
         }
     }
     return false;
 }
 /**
  * Returns true if on the gateway settings page
  *
  * @since 2.1
  * @see SV_WC_Plugin::is_plugin_settings()
  * @return boolean true if on the admin gateway settings page
  */
 public function is_plugin_settings()
 {
     return SV_WC_Plugin_Compatibility::is_payment_gateway_configuration_page($this->gateway_class_name);
 }