$summary[] = "test";
$summary[] = $members;
- $events = $this->get_events_summary();
- $summary[] = $events;
- $summary[] = $this->get_coupons_summary();
- $summary[] = "packages str";
+ if ( defined("GLM_MEMBERS_EVENTS_PLUGIN_PATH") ) {
+ $events = $this->get_events_summary();
+ $summary[] = $events;
+ }
+ if ( defined("GLM_MEMBERS_COUPONS_PLUGIN_PATH") ) {
+ $summary[] = $this->get_coupons_summary();
+ }
+ if ( defined("GLM_MEMBERS_PACKAGING_PLUGIN_PATH") ) {
+ $summary[] = "packages str";
+ }
return rest_ensure_response( array_values( $summary ) );
},