class-gutenberg.php
162 lines
| 1 | <?php |
| 2 | |
| 3 | class Advanced_Ads_Gutenberg { |
| 4 | |
| 5 | private static $instance; |
| 6 | |
| 7 | private static $css_class; |
| 8 | |
| 9 | private function __construct() { |
| 10 | add_action( 'init', array( $this, 'init' ) ); |
| 11 | add_action( 'admin_enqueue_scripts', array( $this, 'register_scripts' ) ); |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Register blocks |
| 16 | */ |
| 17 | public function init() { |
| 18 | if ( !function_exists( 'register_block_type' ) ) { |
| 19 | // no Gutenberg, Abort |
| 20 | return; |
| 21 | } |
| 22 | |
| 23 | register_block_type( 'advads/gblock', array( |
| 24 | 'editor_script' => ADVADS_BASE . '/gutenberg-ad', |
| 25 | 'render_callback' => array( $this, 'render_ad_selector' ), |
| 26 | ) ); |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * register back end scripts |
| 31 | */ |
| 32 | public function register_scripts() { |
| 33 | if ( !function_exists( 'register_block_type' ) ) { |
| 34 | // no Gutenberg, Abort |
| 35 | return; |
| 36 | } |
| 37 | |
| 38 | wp_register_script( |
| 39 | ADVADS_BASE . '/gutenberg-ad', |
| 40 | ADVADS_BASE_URL . 'modules/gutenberg/js/advanced-ads.block.js', |
| 41 | array( 'wp-blocks', 'wp-element' ) |
| 42 | ); |
| 43 | |
| 44 | $model = Advanced_Ads::get_instance()->get_model(); |
| 45 | |
| 46 | $all_ads = Advanced_Ads::get_ads( array( 'post_status' => array( 'publish' ), 'orderby' => 'title', 'order' => 'ASC' ) ); |
| 47 | $all_groups = $model->get_ad_groups(); |
| 48 | $all_placements = Advanced_Ads::get_ad_placements_array(); |
| 49 | |
| 50 | $ads = array(); |
| 51 | $groups = array(); |
| 52 | $placements = array(); |
| 53 | |
| 54 | foreach ( $all_ads as $ad ) { |
| 55 | $ads[] = array( 'id' => $ad->ID, 'title' => $ad->post_title ); |
| 56 | } |
| 57 | |
| 58 | foreach ( $all_groups as $gr ) { |
| 59 | $groups[] = array( 'id' => $gr->term_id, 'name' => $gr->name ); |
| 60 | } |
| 61 | |
| 62 | if ( is_array( $all_placements ) ) { |
| 63 | ksort( $all_placements ); |
| 64 | } |
| 65 | |
| 66 | foreach( $all_placements as $key => $value ) { |
| 67 | if ( 'sidebar_widget' == $value['type'] ) { |
| 68 | $placements[] = array( 'id' => $key, 'name' => $value['name'] ); |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | if ( empty( $placements ) ) { |
| 73 | $placements = false; |
| 74 | } |
| 75 | |
| 76 | $i18n = array( |
| 77 | '--empty--' => __( '--empty--', 'advanced-ads' ), |
| 78 | 'advads' => __( 'Advanced Ads', 'advanced-ads' ), |
| 79 | 'ads' => __( 'Ads', 'advanced-ads' ), |
| 80 | 'adGroups' => __( 'Ad Groups', 'advanced-ads' ), |
| 81 | 'placements' => __( 'Placements', 'advanced-ads' ), |
| 82 | ); |
| 83 | |
| 84 | $inline_script = wp_json_encode( |
| 85 | array( |
| 86 | 'ads' => $ads, |
| 87 | 'groups' => $groups, |
| 88 | 'placements' => $placements, |
| 89 | 'editLinks' => array( |
| 90 | 'group' => admin_url( 'admin.php?page=advanced-ads-groups' ), |
| 91 | 'placement' => admin_url( 'admin.php?page=advanced-ads-placements' ), |
| 92 | 'ad' => admin_url( 'post.php?post=%ID%&action=edit' ), |
| 93 | ), |
| 94 | 'i18n' => $i18n |
| 95 | ) |
| 96 | ); |
| 97 | |
| 98 | // put the inline code with the global variable right before the block's JS file |
| 99 | wp_add_inline_script( ADVADS_BASE . '/gutenberg-ad', 'var advadsGutenberg = ' . $inline_script, 'before' ); |
| 100 | |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Server side rendering for single ad block |
| 105 | */ |
| 106 | public static function render_ad_selector( $attr ) { |
| 107 | ob_start(); |
| 108 | |
| 109 | if ( !isset( $attr['itemID'] ) ) { |
| 110 | ob_end_clean(); |
| 111 | return ''; |
| 112 | } |
| 113 | |
| 114 | // the item is an ad |
| 115 | if ( 0 === strpos( $attr['itemID'], 'ad_' ) ) { |
| 116 | |
| 117 | $id = substr( $attr['itemID'], 3 ); |
| 118 | |
| 119 | // add CSS classes to the wrapper via filter |
| 120 | if ( isset( $attr['className'] ) ) { |
| 121 | echo get_ad( absint( $id ), array( 'output' => array( 'class' => explode( ' ', $attr['className'] ) ) ) ); |
| 122 | } else { |
| 123 | the_ad( absint( $id ) ); |
| 124 | } |
| 125 | |
| 126 | } elseif ( 0 === strpos( $attr['itemID'], 'group_' ) ) { |
| 127 | |
| 128 | $id = substr( $attr['itemID'], 6 ); |
| 129 | |
| 130 | if ( isset( $attr['className'] ) ) { |
| 131 | echo get_ad_group( $id, array( 'output' => array( 'class' => explode( ' ', $attr['className'] ) ) ) ); |
| 132 | } else { |
| 133 | the_ad_group( $id ); |
| 134 | } |
| 135 | |
| 136 | } elseif ( 0 === strpos( $attr['itemID'], 'place_' ) ) { |
| 137 | |
| 138 | $id = substr( $attr['itemID'], 6 ); |
| 139 | |
| 140 | if ( isset( $attr['className'] ) ) { |
| 141 | echo get_ad_placement( $id, array( 'output' => array( 'class' => explode( ' ', $attr['className'] ) ) ) ); |
| 142 | } else { |
| 143 | the_ad_placement( $id ); |
| 144 | } |
| 145 | |
| 146 | } |
| 147 | |
| 148 | return ob_get_clean(); |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Return the unique instance |
| 153 | */ |
| 154 | public static function get_instance() { |
| 155 | if ( null == self::$instance ) { |
| 156 | self::$instance = new self; |
| 157 | } |
| 158 | return self::$instance; |
| 159 | } |
| 160 | |
| 161 | } |
| 162 |