Actions
2 years ago
Concerns
9 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
1 year ago
BillingAddress.php
2 years ago
Checkbox.php
2 years ago
Consent.php
2 years ago
Date.php
1 year ago
DonationAmount.php
2 years 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
105 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 | * @throws NameCollisionException |
| 24 | * @throws EmptyNameException |
| 25 | */ |
| 26 | public static function make($name): DonationAmount |
| 27 | { |
| 28 | return parent::make($name) |
| 29 | ->append( |
| 30 | Amount::make('amount'), |
| 31 | Hidden::make('currency') |
| 32 | ); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * @since 3.0.0 |
| 37 | */ |
| 38 | public function enableSubscriptions($enable = true): self |
| 39 | { |
| 40 | $this->subscriptionsEnabled = $enable; |
| 41 | |
| 42 | return $this; |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * @since 3.0.0 |
| 47 | */ |
| 48 | public function subscriptionDetailsAreFixed($fixed = true): self |
| 49 | { |
| 50 | $this->subscriptionDetailsAreFixed = $fixed; |
| 51 | |
| 52 | return $this; |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * @since 3.0.0 |
| 57 | * @throws NameCollisionException |
| 58 | */ |
| 59 | public function donationType(Field $field): self |
| 60 | { |
| 61 | $this->append($field); |
| 62 | |
| 63 | return $this; |
| 64 | } |
| 65 | |
| 66 | /** |
| 67 | * @since 3.0.0 |
| 68 | * @throws NameCollisionException |
| 69 | */ |
| 70 | public function subscriptionPeriod(Field $field): self |
| 71 | { |
| 72 | if ($this->subscriptionsEnabled){ |
| 73 | $this->append($field); |
| 74 | } |
| 75 | |
| 76 | return $this; |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * @since 3.0.0 |
| 81 | * @throws NameCollisionException |
| 82 | */ |
| 83 | public function subscriptionFrequency(Field $field): self |
| 84 | { |
| 85 | if ($this->subscriptionsEnabled){ |
| 86 | $this->append($field); |
| 87 | } |
| 88 | |
| 89 | return $this; |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * @since 3.0.0 |
| 94 | * @throws NameCollisionException |
| 95 | */ |
| 96 | public function subscriptionInstallments(Field $field): self |
| 97 | { |
| 98 | if ($this->subscriptionsEnabled){ |
| 99 | $this->append($field); |
| 100 | } |
| 101 | |
| 102 | return $this; |
| 103 | } |
| 104 | } |
| 105 |