abstracts
1 year ago
admin
1 year ago
ads
1 year ago
compatibility
1 year ago
crons
1 year ago
frontend
1 year ago
groups
1 year ago
importers
1 year ago
installation
1 year ago
interfaces
1 year ago
placements
1 year ago
rest
1 year ago
traits
1 year ago
utilities
1 year ago
array_ad_conditions.php
1 year ago
cap_map.php
3 years ago
class-assets-registry.php
1 year ago
class-autoloader.php
1 year ago
class-constants.php
1 year ago
class-entities.php
1 year ago
class-modal.php
1 year ago
class-modules.php
1 year ago
class-options.php
1 year ago
class-plugin.php
1 year ago
class-post-data.php
1 year ago
class-shortcodes.php
1 year ago
class-upgrades.php
1 year ago
class-widget.php
1 year ago
default-hooks.php
1 year ago
functions-ad.php
1 year ago
functions-conditional.php
1 year ago
functions-core.php
1 year ago
functions-group.php
1 year ago
functions-placement.php
1 year ago
functions.php
1 year ago
index.php
2 years ago
load_modules.php
2 years ago
class-constants.php
171 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Constants. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.48.2 |
| 8 | */ |
| 9 | |
| 10 | namespace AdvancedAds; |
| 11 | |
| 12 | defined( 'ABSPATH' ) || exit; |
| 13 | |
| 14 | /** |
| 15 | * Constants. |
| 16 | */ |
| 17 | class Constants { |
| 18 | /** |
| 19 | * Rest API base. |
| 20 | * |
| 21 | * @var string |
| 22 | */ |
| 23 | const REST_BASE = 'advanced-ads/v1'; |
| 24 | |
| 25 | /** |
| 26 | * Prefix of selectors (id, class) in the frontend |
| 27 | * can be changed by options |
| 28 | * |
| 29 | * @var string |
| 30 | */ |
| 31 | const DEFAULT_FRONTEND_PREFIX = 'advads-'; |
| 32 | |
| 33 | /** |
| 34 | * Constant representing the slug for the hidden page in the Advanced Ads plugin. |
| 35 | * |
| 36 | * @var string HIDDEN_PAGE_SLUG The slug for the hidden page. |
| 37 | */ |
| 38 | const HIDDEN_PAGE_SLUG = 'advanced_ads_hidden_page_slug'; |
| 39 | |
| 40 | /* Entity Types ------------------- */ |
| 41 | |
| 42 | /** |
| 43 | * The ad entity type. |
| 44 | * |
| 45 | * @var string |
| 46 | */ |
| 47 | const ENTITY_AD = 'ad'; |
| 48 | |
| 49 | /** |
| 50 | * The group entity type. |
| 51 | * |
| 52 | * @var string |
| 53 | */ |
| 54 | const ENTITY_GROUP = 'group'; |
| 55 | |
| 56 | /** |
| 57 | * The placement entity type. |
| 58 | * |
| 59 | * @var string |
| 60 | */ |
| 61 | const ENTITY_PLACEMENT = 'placement'; |
| 62 | |
| 63 | /* Post Types and Taxonomies Slugs ------------------- */ |
| 64 | |
| 65 | /** |
| 66 | * The ad post type slug. |
| 67 | * |
| 68 | * @var string |
| 69 | */ |
| 70 | const POST_TYPE_AD = 'advanced_ads'; |
| 71 | |
| 72 | /** |
| 73 | * The placement post type slug. |
| 74 | * |
| 75 | * @var string |
| 76 | */ |
| 77 | const POST_TYPE_PLACEMENT = 'advanced_ads_plcmnt'; |
| 78 | |
| 79 | /** |
| 80 | * The group taxonomy slug. |
| 81 | * |
| 82 | * @var string |
| 83 | */ |
| 84 | const TAXONOMY_GROUP = 'advanced_ads_groups'; |
| 85 | |
| 86 | /* Post Types Status ------------------- */ |
| 87 | |
| 88 | /** |
| 89 | * Ad post expired status |
| 90 | * |
| 91 | * @var string |
| 92 | */ |
| 93 | const AD_STATUS_EXPIRED = 'advanced_ads_expired'; |
| 94 | |
| 95 | /** |
| 96 | * Ad post expiring status |
| 97 | * |
| 98 | * @var string |
| 99 | */ |
| 100 | const AD_STATUS_EXPIRING = 'advanced_ads_expiring'; |
| 101 | |
| 102 | /* Cron Jobs Hooks ------------------- */ |
| 103 | |
| 104 | /** |
| 105 | * Ad expiration cron job hook. |
| 106 | * |
| 107 | * @var string |
| 108 | */ |
| 109 | const CRON_JOB_AD_EXPIRATION = 'advanced-ads-ad-expiration'; |
| 110 | |
| 111 | /* Meta keys ------------------- */ |
| 112 | |
| 113 | /** |
| 114 | * Ad metakey for expiry time. |
| 115 | * |
| 116 | * @var string |
| 117 | */ |
| 118 | const AD_META_EXPIRATION_TIME = 'advanced_ads_expiration_time'; |
| 119 | |
| 120 | /* User Meta Keys ------------------- */ |
| 121 | |
| 122 | /** |
| 123 | * Wizard notice dismiss. |
| 124 | * |
| 125 | * @var string |
| 126 | */ |
| 127 | const USER_WIZARD_DISMISS = 'advanced-ads-notice-wizard-dismiss'; |
| 128 | |
| 129 | /* Option keys ------------------- */ |
| 130 | |
| 131 | /** |
| 132 | * Option key for the completion status of the wizard. |
| 133 | * |
| 134 | * @var string |
| 135 | */ |
| 136 | const OPTION_WIZARD_COMPLETED = '_advanced_ads_wizard_completed'; |
| 137 | |
| 138 | /** |
| 139 | * Option key for adblocker settings. |
| 140 | * |
| 141 | * @var string |
| 142 | */ |
| 143 | const OPTION_ADBLOCKER_SETTINGS = 'advanced-ads-adblocker'; |
| 144 | |
| 145 | /* Entity: Group ------------------- */ |
| 146 | |
| 147 | /** |
| 148 | * Default ad group weight |
| 149 | */ |
| 150 | const GROUP_AD_DEFAULT_WEIGHT = 10; |
| 151 | |
| 152 | /* Misc ---------------------------- */ |
| 153 | |
| 154 | const ADDONS_NON_COMPATIBLE_VERSIONS = [ |
| 155 | '1.1.3' => 'advanced-ads-adsense-in-feed', // Advanced Ads – Google AdSense In-feed Placement. |
| 156 | '2.5.0' => 'advanced-ads-gam', // GAM. |
| 157 | '1.0.8' => 'advanced-ads-genesis', // Genesis. |
| 158 | '1.3.5' => 'advanced-ads-geo', // Geo. |
| 159 | '1.7.9' => 'advanced-ads-layer', // Layer Ads. |
| 160 | '0.1.3' => 'advanced-ads-page-peel', // Page Peel. |
| 161 | '2.28.0' => 'advanced-ads-pro', // Pro. |
| 162 | '1.12.3' => 'advanced-ads-responsive', // AMP former Responsive Ads. |
| 163 | '1.4.5' => 'advanced-ads-selling', // Selling. |
| 164 | '1.4.10' => 'slider-ads', // Slider. |
| 165 | '1.8.6' => 'advanced-ads-sticky', // Sticky Ads. |
| 166 | '2.8.1' => 'advanced-ads-tracking', // Tracking. |
| 167 | '1.0.7' => 'ads-for-visual-composer', // Visual Composer. |
| 168 | '1.1.0' => 'advanced-ads-browser-language', // Browser Language. |
| 169 | ]; |
| 170 | } |
| 171 |