Actions
2 years ago
Concerns
10 months ago
Contracts
3 years ago
Exceptions
2 years ago
Facades
4 years ago
LegacyNodes
3 years ago
Properties
1 year ago
ValueObjects
2 years ago
Amount.php
2 years ago
Authentication.php
2 years ago
BillingAddress.php
2 years ago
Checkbox.php
2 years ago
Consent.php
2 years ago
Date.php
1 year ago
DonationAmount.php
5 days ago
DonationForm.php
2 years ago
DonationSummary.php
2 years ago
Element.php
3 years ago
Email.php
2 years ago
Factory.php
4 years ago
Field.php
2 years ago
File.php
1 year ago
Form.php
3 years ago
Group.php
3 years ago
Hidden.php
3 years ago
Honeypot.php
1 year ago
Html.php
3 years ago
MultiSelect.php
1 year ago
Name.php
2 years ago
Option.php
2 years ago
Paragraph.php
2 years ago
Password.php
2 years ago
PaymentGateways.php
2 years ago
Phone.php
1 year ago
Radio.php
2 years ago
Section.php
2 years ago
SecurityChallenge.php
1 year ago
Select.php
2 years ago
Text.php
2 years ago
Textarea.php
2 years ago
Types.php
2 years ago
Url.php
2 years ago
DonationAmount.php
109 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Give\Framework\FieldsAPI; |
| 6 | |
| 7 | use Give\Framework\FieldsAPI\Exceptions\EmptyNameException; |
| 8 | use Give\Framework\FieldsAPI\Exceptions\NameCollisionException; |
| 9 | |
| 10 | class DonationAmount extends Group |
| 11 | { |
| 12 | const TYPE = 'donationAmount'; |
| 13 | /** |
| 14 | * @var boolean |
| 15 | */ |
| 16 | public $subscriptionsEnabled = false; |
| 17 | /** |
| 18 | * @var boolean |
| 19 | */ |
| 20 | public $subscriptionDetailsAreFixed = false; |
| 21 | |
| 22 | /** |
| 23 | * @since 4.16.5 Add levelId hidden field to donation amount group. |
| 24 | * @since 3.0.0 |
| 25 | * |
| 26 | * @throws NameCollisionException |
| 27 | * @throws EmptyNameException |
| 28 | */ |
| 29 | public static function make($name): DonationAmount |
| 30 | { |
| 31 | return parent::make($name) |
| 32 | ->append( |
| 33 | Amount::make('amount'), |
| 34 | Hidden::make('currency'), |
| 35 | Hidden::make('levelId') |
| 36 | ); |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * @since 3.0.0 |
| 41 | */ |
| 42 | public function enableSubscriptions($enable = true): self |
| 43 | { |
| 44 | $this->subscriptionsEnabled = $enable; |
| 45 | |
| 46 | return $this; |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * @since 3.0.0 |
| 51 | */ |
| 52 | public function subscriptionDetailsAreFixed($fixed = true): self |
| 53 | { |
| 54 | $this->subscriptionDetailsAreFixed = $fixed; |
| 55 | |
| 56 | return $this; |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * @since 3.0.0 |
| 61 | * @throws NameCollisionException |
| 62 | */ |
| 63 | public function donationType(Field $field): self |
| 64 | { |
| 65 | $this->append($field); |
| 66 | |
| 67 | return $this; |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * @since 3.0.0 |
| 72 | * @throws NameCollisionException |
| 73 | */ |
| 74 | public function subscriptionPeriod(Field $field): self |
| 75 | { |
| 76 | if ($this->subscriptionsEnabled){ |
| 77 | $this->append($field); |
| 78 | } |
| 79 | |
| 80 | return $this; |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * @since 3.0.0 |
| 85 | * @throws NameCollisionException |
| 86 | */ |
| 87 | public function subscriptionFrequency(Field $field): self |
| 88 | { |
| 89 | if ($this->subscriptionsEnabled){ |
| 90 | $this->append($field); |
| 91 | } |
| 92 | |
| 93 | return $this; |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * @since 3.0.0 |
| 98 | * @throws NameCollisionException |
| 99 | */ |
| 100 | public function subscriptionInstallments(Field $field): self |
| 101 | { |
| 102 | if ($this->subscriptionsEnabled){ |
| 103 | $this->append($field); |
| 104 | } |
| 105 | |
| 106 | return $this; |
| 107 | } |
| 108 | } |
| 109 |