# give/4.16.8.1/src/TestData/Addons.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.8.1. 68 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/TestData/Addons.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/TestData/Addons.php
- Modified: 2021-11-23T23:55:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.8.1/code/src/TestData/Addons.php#L10-L20`.

```php
<?php

namespace Give\TestData;

use Give\TestData\Addons\CurrencySwitcher\ServiceProvider as CurrencySwitcher;
use Give\TestData\Addons\FeeRecovery\ServiceProvider as FeeRecovery;
use Give\TestData\Addons\Funds\ServiceProvider as Funds;
use Give\TestData\Addons\ManualDonations\ServiceProvider as ManualDonations;
use Give\TestData\Addons\RecurringDonations\ServiceProvider as RecurringDonations;

/**
 * Class Addons
 * @package Give\TestData\Helpers
 */
class Addons
{
    /**
     * Get add-ons
     *
     * @since 1.0.0
     * @return array[]
     */
    public static function getAddons()
    {
        return [
            [
                'isActive' => defined('GIVE_FUNDS_VERSION'),
                'serviceProvider' => Funds::class,
            ],
            [
                'isActive' => defined('GIVE_CURRENCY_SWITCHER_VERSION'),
                'serviceProvider' => CurrencySwitcher::class,
            ],
            [
                'isActive' => defined('GIVE_RECURRING_VERSION'),
                'serviceProvider' => RecurringDonations::class,
            ],
            [
                'isActive' => defined('GIVE_FEE_RECOVERY_VERSION'),
                'serviceProvider' => FeeRecovery::class,
            ],
            [
                'isActive' => defined('GIVE_MD_VERSION'),
                'serviceProvider' => ManualDonations::class,
            ],
            [
                'isActive' => defined('GIVE_FUNDS_ADDON_VERSION'),
                'serviceProvider' => Funds::class,
            ],
        ];
    }

    /**
     * Get active add-ons
     * @since 1.0.0
     * @return array[]
     */
    public static function getActiveAddons()
    {
        return array_filter(
            self::getAddons(),
            function ($addon) {
                return $addon['isActive'];
            }
        );
    }
}

```
