Ad_Repository.php
1 year ago
Group_Repository.php
1 year ago
ad-ajax.php
1 year ago
ad-debug.php
1 year ago
ad-expiration.php
1 year ago
ad-model.php
1 week ago
ad-select.php
1 year ago
ad.php
1 year ago
ad_group.php
1 year ago
ad_placements.php
1 year ago
ad_type_abstract.php
1 year ago
ad_type_content.php
1 year ago
ad_type_dummy.php
1 year ago
ad_type_group.php
1 year ago
ad_type_image.php
1 year ago
ad_type_plain.php
1 year ago
class-admin.php
1 year ago
class-advanced-ads-plugin.php
1 year ago
gadsense-dummy.php
1 year ago
in-content-injector.php
2 months ago
placements-ad-label-position.php
1 year ago
ad-model.php
22 lines
| 1 | <?php // phpcs:ignoreFileName |
| 2 | |
| 3 | /** |
| 4 | * Advanced Ads Model |
| 5 | * |
| 6 | * @deprecated 2.0.0 |
| 7 | */ |
| 8 | class Advanced_Ads_Model { |
| 9 | |
| 10 | /** |
| 11 | * Get the array with ad placements |
| 12 | * |
| 13 | * @since 1.1.0 |
| 14 | * @deprecated 2.0.0 Use `wp_advads_get_placements()` instead |
| 15 | * |
| 16 | * @return array $ad_placements |
| 17 | */ |
| 18 | public function get_ad_placements_array() { |
| 19 | return wp_advads_get_placements(); |
| 20 | } |
| 21 | } |
| 22 |