type-amp.php
1 year ago
type-content.php
10 months ago
type-dummy.php
1 year ago
type-gam.php
1 year ago
type-group.php
1 year ago
type-image.php
1 year ago
type-plain.php
1 year ago
type-unknown.php
1 year ago
type-group.php
126 lines
| 1 | <?php |
| 2 | /** |
| 3 | * This class represents the "Group" ad type. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.48.0 |
| 8 | */ |
| 9 | |
| 10 | namespace AdvancedAds\Ads\Types; |
| 11 | |
| 12 | use AdvancedAds\Constants; |
| 13 | use AdvancedAds\Ads\Ad_Group; |
| 14 | use AdvancedAds\Interfaces\Ad_Type; |
| 15 | |
| 16 | defined( 'ABSPATH' ) || exit; |
| 17 | |
| 18 | /** |
| 19 | * Type Group. |
| 20 | */ |
| 21 | class Group implements Ad_Type { |
| 22 | |
| 23 | /** |
| 24 | * Get the unique identifier (ID) of the ad type. |
| 25 | * |
| 26 | * @return string The unique ID of the ad type. |
| 27 | */ |
| 28 | public function get_id(): string { |
| 29 | return 'group'; |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Get the class name of the object as a string. |
| 34 | * |
| 35 | * @return string |
| 36 | */ |
| 37 | public function get_classname(): string { |
| 38 | return Ad_Group::class; |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * Get the title or name of the ad type. |
| 43 | * |
| 44 | * @return string The title of the ad type. |
| 45 | */ |
| 46 | public function get_title(): string { |
| 47 | return __( 'Ad Group', 'advanced-ads' ); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Get a description of the ad type. |
| 52 | * |
| 53 | * @return string The description of the ad type. |
| 54 | */ |
| 55 | public function get_description(): string { |
| 56 | return __( 'Choose an existing ad group. Use this type when you want to assign the same display and visitor conditions to all ads in that group.', 'advanced-ads' ); |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Check if this ad type requires premium. |
| 61 | * |
| 62 | * @return bool True if premium is required; otherwise, false. |
| 63 | */ |
| 64 | public function is_premium(): bool { |
| 65 | return false; |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Get the URL for upgrading to this ad type. |
| 70 | * |
| 71 | * @return string The upgrade URL for the ad type. |
| 72 | */ |
| 73 | public function get_upgrade_url(): string { |
| 74 | return ''; |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Get the URL for upgrading to this ad type. |
| 79 | * |
| 80 | * @return string The upgrade URL for the ad type. |
| 81 | */ |
| 82 | public function get_image(): string { |
| 83 | return ADVADS_BASE_URL . 'assets/img/ad-types/group.svg'; |
| 84 | } |
| 85 | |
| 86 | /** |
| 87 | * Check if this ad type has size parameters. |
| 88 | * |
| 89 | * @return bool True if has size parameters; otherwise, false. |
| 90 | */ |
| 91 | public function has_size(): bool { |
| 92 | return true; |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * Output for the ad parameters metabox |
| 97 | * |
| 98 | * @param Ad_Group $ad Ad instance. |
| 99 | * |
| 100 | * @return void |
| 101 | */ |
| 102 | public function render_parameters( $ad ): void { |
| 103 | ?> |
| 104 | <label for="advads-group-id" class="label"> |
| 105 | <?php esc_html_e( 'Ad Group', 'advanced-ads' ); ?> |
| 106 | </label> |
| 107 | |
| 108 | <div> |
| 109 | <?php |
| 110 | wp_dropdown_categories( |
| 111 | [ |
| 112 | 'name' => 'advanced_ad[output][group_id]', |
| 113 | 'id' => 'advads-group-id', |
| 114 | 'selected' => $ad->get_group_id() ?? '', |
| 115 | 'taxonomy' => Constants::TAXONOMY_GROUP, |
| 116 | 'hide_empty' => false, |
| 117 | 'show_option_none' => esc_html__( 'Select a group', 'advanced-ads' ), |
| 118 | ] |
| 119 | ); |
| 120 | ?> |
| 121 | </div> |
| 122 | <hr/> |
| 123 | <?php |
| 124 | } |
| 125 | } |
| 126 |