array_ad_conditions.php
10 years ago
cap_map.php
10 years ago
functions.php
11 years ago
load_modules.php
9 years ago
array_ad_conditions.php
100 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * conditions under which to (not) show an ad |
| 5 | * I don’t like huge arrays like this to clutter my classes |
| 6 | * and anyway, this might be needed on multiple places |
| 7 | * |
| 8 | * at the bottom, you find a filter to be able to extend / remove your own elements |
| 9 | * |
| 10 | * elements |
| 11 | * key - internal id of the condition; needs to be unique, obviously |
| 12 | * label - title in the dashboard |
| 13 | * description - (optional) description displayed in the dashboard |
| 14 | * type - information / markup type |
| 15 | * idfield - input field for comma separated lists of ids |
| 16 | * radio - radio button |
| 17 | * others - added to not trigger internal sanitization |
| 18 | * |
| 19 | * note: ’idfield’ always has a {field}_not version that is created automatically and being its own condition |
| 20 | * |
| 21 | * @deprecated since 1.7 |
| 22 | */ |
| 23 | |
| 24 | // avoid direct execution |
| 25 | if ( ! class_exists( 'Advanced_Ads', false ) ) { |
| 26 | die(); |
| 27 | } |
| 28 | |
| 29 | $advanced_ads_slug = Advanced_Ads::get_instance()->get_plugin_slug(); |
| 30 | |
| 31 | $advanced_ads_ad_conditions = array( |
| 32 | 'enabled' => array( // dummy, to let the validation of the general ad conditions past |
| 33 | // 'label' => __('Post Types', $advanced_ads_slug), |
| 34 | // 'description' => __('Choose the public post types on which to display the ad.', $advanced_ads_slug), |
| 35 | 'type' => 'other', |
| 36 | // 'callback' => array('Advanced_Ads_Display_Condition_Callbacks', 'post_types') |
| 37 | ), |
| 38 | 'posttypes' => array( |
| 39 | 'label' => __( 'Post Types', $advanced_ads_slug ), |
| 40 | 'description' => __( 'Choose the public post types on which to display the ad.', $advanced_ads_slug ), |
| 41 | 'type' => 'textvalues', |
| 42 | 'callback' => array('Advanced_Ads_Display_Condition_Callbacks', 'post_types') |
| 43 | ), |
| 44 | 'categoryids' => array( |
| 45 | 'label' => __( 'Categories, Tags and Taxonomies', $advanced_ads_slug ), |
| 46 | 'description' => __( 'Choose terms from public category, tag and other taxonomies a post must belong to in order to have ads.', $advanced_ads_slug ), |
| 47 | 'type' => 'idfield', |
| 48 | 'callback' => array('Advanced_Ads_Display_Condition_Callbacks', 'terms') |
| 49 | ), |
| 50 | 'categoryarchiveids' => array( |
| 51 | 'label' => __( 'Category Archives', $advanced_ads_slug ), |
| 52 | 'description' => __( 'comma seperated IDs of category archives', $advanced_ads_slug ), |
| 53 | 'type' => 'idfield', |
| 54 | 'callback' => array('Advanced_Ads_Display_Condition_Callbacks', 'category_archives') |
| 55 | ), |
| 56 | 'postids' => array( |
| 57 | 'label' => __( 'Individual Posts, Pages and Public Post Types', $advanced_ads_slug ), |
| 58 | 'description' => __( 'Choose on which individual posts, pages and public post type pages you want to display or hide ads.', $advanced_ads_slug ), |
| 59 | 'type' => 'other', |
| 60 | 'callback' => array('Advanced_Ads_Display_Condition_Callbacks', 'single_posts') |
| 61 | ), |
| 62 | 'is_front_page' => array( |
| 63 | 'label' => __( 'Home Page', $advanced_ads_slug ), |
| 64 | 'description' => __( 'show on Home page', $advanced_ads_slug ), |
| 65 | 'type' => 'radio', |
| 66 | ), |
| 67 | 'is_singular' => array( |
| 68 | 'label' => __( 'Singular Pages', $advanced_ads_slug ), |
| 69 | 'description' => __( 'show on singular pages/posts', $advanced_ads_slug ), |
| 70 | 'type' => 'radio', |
| 71 | ), |
| 72 | 'is_archive' => array( |
| 73 | 'label' => __( 'Archive Pages', $advanced_ads_slug ), |
| 74 | 'description' => __( 'show on any type of archive page (category, tag, author and date)', $advanced_ads_slug ), |
| 75 | 'type' => 'radio', |
| 76 | ), |
| 77 | 'is_search' => array( |
| 78 | 'label' => __( 'Search Results', $advanced_ads_slug ), |
| 79 | 'description' => __( 'show on search result pages', $advanced_ads_slug ), |
| 80 | 'type' => 'radio', |
| 81 | ), |
| 82 | 'is_404' => array( |
| 83 | 'label' => __( '404 Page', $advanced_ads_slug ), |
| 84 | 'description' => __( 'show on 404 error page', $advanced_ads_slug ), |
| 85 | 'type' => 'radio', |
| 86 | ), |
| 87 | 'is_attachment' => array( |
| 88 | 'label' => __( 'Attachment Pages', $advanced_ads_slug ), |
| 89 | 'description' => __( 'show on attachment pages', $advanced_ads_slug ), |
| 90 | 'type' => 'radio', |
| 91 | ), |
| 92 | 'is_main_query' => array( |
| 93 | 'label' => __( 'Secondary Queries', $advanced_ads_slug ), |
| 94 | 'description' => __( 'allow ads in secondary queries', $advanced_ads_slug ), |
| 95 | 'type' => 'radio', |
| 96 | ) |
| 97 | ); |
| 98 | |
| 99 | return apply_filters( 'advanced-ads-conditions', $advanced_ads_ad_conditions ); |
| 100 |