# give/4.16.8.1/src/DonationForms/ValueObjects/DesignSettingsImageStyle.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/DonationForms/ValueObjects/DesignSettingsImageStyle.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/DonationForms/ValueObjects/DesignSettingsImageStyle.php
- Modified: 2024-02-08T23:53:28+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/DonationForms/ValueObjects/DesignSettingsImageStyle.php#L10-L20`.

```php
<?php

namespace Give\DonationForms\ValueObjects;

use Give\Framework\Support\ValueObjects\Enum;

/**
 * @since 3.4.0
 *
 * @method static DonationFormErrorTypes BACKGROUND()
 * @method static DonationFormErrorTypes COVER()
 * @method static DonationFormErrorTypes ABOVE()
 * @method static DonationFormErrorTypes CENTER()
 * @method bool isBackground()
 * @method bool isCover()
 * @method bool isAbove()
 * @method bool isCenter()
 */
class DesignSettingsImageStyle extends Enum
{
    const BACKGROUND = 'background';
    const COVER = 'cover';
    const ABOVE = 'above';
    const CENTER = 'center';
}

```
