MC4WP_Integration_Manager::get_all PHP Method

get_all() public method

Get an integration instance
public get_all ( ) : MC4WP_Integration_Fixture[]
return MC4WP_Integration_Fixture[]
    public function get_all()
    {
        return $this->integrations;
    }

Usage Example

 /**
  * Show the Integration Settings page
  *
  * @internal
  */
 public function show_integrations_page()
 {
     if (!empty($_GET['integration'])) {
         $this->show_integration_settings_page($_GET['integration']);
         return;
     }
     $integrations = $this->integrations->get_all();
     require dirname(__FILE__) . '/views/integrations.php';
 }
All Usage Examples Of MC4WP_Integration_Manager::get_all