@@ -38,29 +38,29 @@ discard block |
||
| 38 | 38 | 'advanced' => false |
| 39 | 39 | ), |
| 40 | 40 | 'items' => array( |
| 41 | - 'title' => __( 'Items to buy', 'invoicing' ), |
|
| 42 | - 'desc' => __( 'Enter comma separated list of invoicing item id and quantity (item_id|quantity). Ex. 101|2 ', 'invoicing' ), |
|
| 43 | - 'type' => 'text', |
|
| 44 | - 'desc_tip' => true, |
|
| 45 | - 'default' => '', |
|
| 46 | - 'placeholder' => __('Items to buy','invoicing'), |
|
| 47 | - 'advanced' => false |
|
| 41 | + 'title' => __( 'Items to buy', 'invoicing' ), |
|
| 42 | + 'desc' => __( 'Enter comma separated list of invoicing item id and quantity (item_id|quantity). Ex. 101|2 ', 'invoicing' ), |
|
| 43 | + 'type' => 'text', |
|
| 44 | + 'desc_tip' => true, |
|
| 45 | + 'default' => '', |
|
| 46 | + 'placeholder' => __('Items to buy','invoicing'), |
|
| 47 | + 'advanced' => false |
|
| 48 | 48 | ), |
| 49 | 49 | 'label' => array( |
| 50 | - 'title' => __( 'Button Label', 'invoicing' ), |
|
| 51 | - 'desc' => __( 'Enter button label. Default "Buy Now".', 'invoicing' ), |
|
| 52 | - 'type' => 'text', |
|
| 53 | - 'desc_tip' => true, |
|
| 54 | - 'default' => __( 'Buy Now', 'invoicing' ), |
|
| 55 | - 'advanced' => false |
|
| 50 | + 'title' => __( 'Button Label', 'invoicing' ), |
|
| 51 | + 'desc' => __( 'Enter button label. Default "Buy Now".', 'invoicing' ), |
|
| 52 | + 'type' => 'text', |
|
| 53 | + 'desc_tip' => true, |
|
| 54 | + 'default' => __( 'Buy Now', 'invoicing' ), |
|
| 55 | + 'advanced' => false |
|
| 56 | 56 | ), |
| 57 | 57 | 'post_id' => array( |
| 58 | - 'title' => __( 'Post ID', 'invoicing' ), |
|
| 59 | - 'desc' => __( 'Enter related post ID. This is for 3rd party add ons and not mandatory field.', 'invoicing' ), |
|
| 60 | - 'type' => 'number', |
|
| 61 | - 'desc_tip' => true, |
|
| 62 | - 'default' => '', |
|
| 63 | - 'advanced' => true |
|
| 58 | + 'title' => __( 'Post ID', 'invoicing' ), |
|
| 59 | + 'desc' => __( 'Enter related post ID. This is for 3rd party add ons and not mandatory field.', 'invoicing' ), |
|
| 60 | + 'type' => 'number', |
|
| 61 | + 'desc_tip' => true, |
|
| 62 | + 'default' => '', |
|
| 63 | + 'advanced' => true |
|
| 64 | 64 | ), |
| 65 | 65 | ) |
| 66 | 66 | |
@@ -70,43 +70,43 @@ discard block |
||
| 70 | 70 | parent::__construct( $options ); |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | - /** |
|
| 74 | - * The Super block output function. |
|
| 75 | - * |
|
| 76 | - * @param array $args |
|
| 77 | - * @param array $widget_args |
|
| 78 | - * @param string $content |
|
| 79 | - * |
|
| 80 | - * @return string |
|
| 81 | - */ |
|
| 73 | + /** |
|
| 74 | + * The Super block output function. |
|
| 75 | + * |
|
| 76 | + * @param array $args |
|
| 77 | + * @param array $widget_args |
|
| 78 | + * @param string $content |
|
| 79 | + * |
|
| 80 | + * @return string |
|
| 81 | + */ |
|
| 82 | 82 | public function output( $args = array(), $widget_args = array(), $content = '' ) { |
| 83 | 83 | |
| 84 | - $defaults = array( |
|
| 85 | - 'items' => '', // should be used like: item_id|quantity,item_id|quantity,item_id|quantity |
|
| 86 | - 'label' => __( 'Buy Now', 'invoicing' ), // the button title |
|
| 87 | - 'post_id' => '', // any related post_id |
|
| 88 | - ); |
|
| 84 | + $defaults = array( |
|
| 85 | + 'items' => '', // should be used like: item_id|quantity,item_id|quantity,item_id|quantity |
|
| 86 | + 'label' => __( 'Buy Now', 'invoicing' ), // the button title |
|
| 87 | + 'post_id' => '', // any related post_id |
|
| 88 | + ); |
|
| 89 | 89 | |
| 90 | - /** |
|
| 91 | - * Parse incoming $args into an array and merge it with $defaults |
|
| 92 | - */ |
|
| 93 | - $args = wp_parse_args( $args, $defaults ); |
|
| 90 | + /** |
|
| 91 | + * Parse incoming $args into an array and merge it with $defaults |
|
| 92 | + */ |
|
| 93 | + $args = wp_parse_args( $args, $defaults ); |
|
| 94 | 94 | |
| 95 | - $html = '<div class="wpi-buy-button-wrapper wpi-g">'; |
|
| 95 | + $html = '<div class="wpi-buy-button-wrapper wpi-g">'; |
|
| 96 | 96 | |
| 97 | - if ( empty( $args['items'] ) ) { |
|
| 98 | - $html .= __( 'No items selected', 'invoicing' ); |
|
| 99 | - } else { |
|
| 100 | - $post_id = isset( $args['post_id'] ) && is_numeric( $args['post_id'] ) ? sanitize_text_field( $args['post_id'] ) : 0; |
|
| 101 | - $label = isset( $args['label'] ) ? sanitize_text_field( $args['label'] ) : __( 'Buy Now', 'invoicing' ); |
|
| 102 | - $items = esc_attr( $args['items'] ); |
|
| 103 | - $html .= "<button class='button button-primary wpi-buy-button' type='button' onclick=\"wpi_buy(this, '$items','$post_id');\">$label</button>"; |
|
| 104 | - } |
|
| 97 | + if ( empty( $args['items'] ) ) { |
|
| 98 | + $html .= __( 'No items selected', 'invoicing' ); |
|
| 99 | + } else { |
|
| 100 | + $post_id = isset( $args['post_id'] ) && is_numeric( $args['post_id'] ) ? sanitize_text_field( $args['post_id'] ) : 0; |
|
| 101 | + $label = isset( $args['label'] ) ? sanitize_text_field( $args['label'] ) : __( 'Buy Now', 'invoicing' ); |
|
| 102 | + $items = esc_attr( $args['items'] ); |
|
| 103 | + $html .= "<button class='button button-primary wpi-buy-button' type='button' onclick=\"wpi_buy(this, '$items','$post_id');\">$label</button>"; |
|
| 104 | + } |
|
| 105 | 105 | |
| 106 | - $html .= wp_nonce_field( 'wpinv_buy_items', 'wpinv_buy_nonce', true, false ); |
|
| 107 | - $html .= '</div>'; |
|
| 106 | + $html .= wp_nonce_field( 'wpinv_buy_items', 'wpinv_buy_nonce', true, false ); |
|
| 107 | + $html .= '</div>'; |
|
| 108 | 108 | |
| 109 | - return $html; |
|
| 109 | + return $html; |
|
| 110 | 110 | |
| 111 | 111 | } |
| 112 | 112 | |
@@ -1,271 +1,271 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | - exit; |
|
| 4 | + exit; |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | if ( ! class_exists( "AyeCode_Connect_Helper" ) ) { |
| 8 | - /** |
|
| 9 | - * Allow the quick setup and connection of our AyeCode Connect plugin. |
|
| 10 | - * |
|
| 11 | - * Class AyeCode_Connect_Helper |
|
| 12 | - */ |
|
| 13 | - class AyeCode_Connect_Helper { |
|
| 14 | - |
|
| 15 | - // Hold the version number |
|
| 16 | - var $version = "1.0.3"; |
|
| 17 | - |
|
| 18 | - // Hold the default strings. |
|
| 19 | - var $strings = array(); |
|
| 20 | - |
|
| 21 | - // Hold the default pages. |
|
| 22 | - var $pages = array(); |
|
| 23 | - |
|
| 24 | - /** |
|
| 25 | - * The constructor. |
|
| 26 | - * |
|
| 27 | - * AyeCode_Connect_Helper constructor. |
|
| 28 | - * |
|
| 29 | - * @param array $strings |
|
| 30 | - * @param array $pages |
|
| 31 | - */ |
|
| 32 | - public function __construct( $strings = array(), $pages = array() ) { |
|
| 33 | - |
|
| 34 | - // Only fire if not localhost and the current user has the right permissions. |
|
| 35 | - if ( ! $this->is_localhost() && current_user_can( 'manage_options' ) ) { |
|
| 36 | - |
|
| 37 | - |
|
| 38 | - // set default strings |
|
| 39 | - $default_strings = array( |
|
| 40 | - 'connect_title' => __( "Thanks for choosing an AyeCode Product!" ), |
|
| 41 | - 'connect_external' => __( "Please confirm you wish to connect your site?" ), |
|
| 42 | - 'connect' => sprintf( __( "<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s" ), "<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>", "</a>" ), |
|
| 43 | - 'connect_button' => __( "Connect Site" ), |
|
| 44 | - 'connecting_button' => __( "Connecting..." ), |
|
| 45 | - 'error_localhost' => __( "This service will only work with a live domain, not a localhost." ), |
|
| 46 | - 'error' => __( "Something went wrong, please refresh and try again." ), |
|
| 47 | - ); |
|
| 48 | - $this->strings = array_merge( $default_strings, $strings ); |
|
| 49 | - |
|
| 50 | - |
|
| 51 | - // set default pages |
|
| 52 | - $default_pages = array(); |
|
| 53 | - $this->pages = array_merge( $default_pages, $pages ); |
|
| 54 | - |
|
| 55 | - // maybe show connect site notice |
|
| 56 | - add_action( 'admin_notices', array( $this, 'ayecode_connect_install_notice' ) ); |
|
| 57 | - |
|
| 58 | - // add ajax action if not already added |
|
| 59 | - if ( ! has_action( 'wp_ajax_ayecode_connect_helper' ) ) { |
|
| 60 | - add_action( 'wp_ajax_ayecode_connect_helper', array( $this, 'ayecode_connect_install' ) ); |
|
| 61 | - } |
|
| 62 | - } |
|
| 63 | - |
|
| 64 | - // add ajax action if not already added |
|
| 65 | - if ( ! has_action( 'wp_ajax_nopriv_ayecode_connect_helper_installed' ) ) { |
|
| 66 | - add_action( 'wp_ajax_nopriv_ayecode_connect_helper_installed', array( $this, 'ayecode_connect_helper_installed' ) ); |
|
| 67 | - } |
|
| 68 | - |
|
| 69 | - } |
|
| 70 | - |
|
| 71 | - /** |
|
| 72 | - * Give a way to check we can connect via a external redirect. |
|
| 73 | - */ |
|
| 74 | - public function ayecode_connect_helper_installed(){ |
|
| 75 | - $active = array( |
|
| 76 | - 'gd' => defined('GEODIRECTORY_VERSION') && version_compare(GEODIRECTORY_VERSION,'2.0.0.79','>') ? 1 : 0, |
|
| 77 | - 'uwp' => defined('USERSWP_VERSION') && version_compare(USERSWP_VERSION,'1.2.1.5','>') ? 1 : 0, |
|
| 78 | - 'wpi' => defined('WPINV_VERSION') && version_compare(WPINV_VERSION,'1.0.14','>') ? 1 : 0, |
|
| 79 | - ); |
|
| 80 | - wp_send_json_success( $active ); |
|
| 81 | - wp_die(); |
|
| 82 | - } |
|
| 83 | - |
|
| 84 | - /** |
|
| 85 | - * Get slug from path |
|
| 86 | - * |
|
| 87 | - * @param string $key |
|
| 88 | - * |
|
| 89 | - * @return string |
|
| 90 | - */ |
|
| 91 | - private function format_plugin_slug( $key ) { |
|
| 92 | - $slug = explode( '/', $key ); |
|
| 93 | - $slug = explode( '.', end( $slug ) ); |
|
| 94 | - |
|
| 95 | - return $slug[0]; |
|
| 96 | - } |
|
| 97 | - |
|
| 98 | - /** |
|
| 99 | - * Install and activate the AyeCode Connect Plugin |
|
| 100 | - */ |
|
| 101 | - public function ayecode_connect_install() { |
|
| 102 | - |
|
| 103 | - // bail if localhost |
|
| 104 | - if ( $this->is_localhost() ) { |
|
| 105 | - wp_send_json_error( $this->strings['error_localhost'] ); |
|
| 106 | - } |
|
| 107 | - |
|
| 108 | - // Explicitly clear the event. |
|
| 109 | - wp_clear_scheduled_hook( 'geodir_plugin_background_installer', func_get_args() ); |
|
| 110 | - |
|
| 111 | - $success = true; |
|
| 112 | - $plugin_slug = "ayecode-connect"; |
|
| 113 | - if ( ! empty( $plugin_slug ) ) { |
|
| 114 | - require_once( ABSPATH . 'wp-admin/includes/file.php' ); |
|
| 115 | - require_once( ABSPATH . 'wp-admin/includes/plugin-install.php' ); |
|
| 116 | - require_once( ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' ); |
|
| 117 | - require_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
| 118 | - |
|
| 119 | - WP_Filesystem(); |
|
| 120 | - |
|
| 121 | - $skin = new Automatic_Upgrader_Skin; |
|
| 122 | - $upgrader = new WP_Upgrader( $skin ); |
|
| 123 | - $installed_plugins = array_map( array( $this, 'format_plugin_slug' ), array_keys( get_plugins() ) ); |
|
| 124 | - $plugin_slug = $plugin_slug; |
|
| 125 | - $plugin = $plugin_slug . '/' . $plugin_slug . '.php'; |
|
| 126 | - $installed = false; |
|
| 127 | - $activate = false; |
|
| 128 | - |
|
| 129 | - // See if the plugin is installed already |
|
| 130 | - if ( in_array( $plugin_slug, $installed_plugins ) ) { |
|
| 131 | - $installed = true; |
|
| 132 | - $activate = ! is_plugin_active( $plugin ); |
|
| 133 | - } |
|
| 134 | - |
|
| 135 | - // Install this thing! |
|
| 136 | - if ( ! $installed ) { |
|
| 137 | - |
|
| 138 | - // Suppress feedback |
|
| 139 | - ob_start(); |
|
| 140 | - |
|
| 141 | - try { |
|
| 142 | - $plugin_information = plugins_api( 'plugin_information', array( |
|
| 143 | - 'slug' => $plugin_slug, |
|
| 144 | - 'fields' => array( |
|
| 145 | - 'short_description' => false, |
|
| 146 | - 'sections' => false, |
|
| 147 | - 'requires' => false, |
|
| 148 | - 'rating' => false, |
|
| 149 | - 'ratings' => false, |
|
| 150 | - 'downloaded' => false, |
|
| 151 | - 'last_updated' => false, |
|
| 152 | - 'added' => false, |
|
| 153 | - 'tags' => false, |
|
| 154 | - 'homepage' => false, |
|
| 155 | - 'donate_link' => false, |
|
| 156 | - 'author_profile' => false, |
|
| 157 | - 'author' => false, |
|
| 158 | - ), |
|
| 159 | - ) ); |
|
| 160 | - |
|
| 161 | - if ( is_wp_error( $plugin_information ) ) { |
|
| 162 | - throw new Exception( $plugin_information->get_error_message() ); |
|
| 163 | - } |
|
| 164 | - |
|
| 165 | - $package = $plugin_information->download_link; |
|
| 166 | - $download = $upgrader->download_package( $package ); |
|
| 167 | - |
|
| 168 | - if ( is_wp_error( $download ) ) { |
|
| 169 | - throw new Exception( $download->get_error_message() ); |
|
| 170 | - } |
|
| 171 | - |
|
| 172 | - $working_dir = $upgrader->unpack_package( $download, true ); |
|
| 173 | - |
|
| 174 | - if ( is_wp_error( $working_dir ) ) { |
|
| 175 | - throw new Exception( $working_dir->get_error_message() ); |
|
| 176 | - } |
|
| 177 | - |
|
| 178 | - $result = $upgrader->install_package( array( |
|
| 179 | - 'source' => $working_dir, |
|
| 180 | - 'destination' => WP_PLUGIN_DIR, |
|
| 181 | - 'clear_destination' => false, |
|
| 182 | - 'abort_if_destination_exists' => false, |
|
| 183 | - 'clear_working' => true, |
|
| 184 | - 'hook_extra' => array( |
|
| 185 | - 'type' => 'plugin', |
|
| 186 | - 'action' => 'install', |
|
| 187 | - ), |
|
| 188 | - ) ); |
|
| 189 | - |
|
| 190 | - if ( is_wp_error( $result ) ) { |
|
| 191 | - throw new Exception( $result->get_error_message() ); |
|
| 192 | - } |
|
| 193 | - |
|
| 194 | - $activate = true; |
|
| 195 | - |
|
| 196 | - } catch ( Exception $e ) { |
|
| 197 | - $success = false; |
|
| 198 | - } |
|
| 199 | - |
|
| 200 | - // Discard feedback |
|
| 201 | - ob_end_clean(); |
|
| 202 | - } |
|
| 203 | - |
|
| 204 | - wp_clean_plugins_cache(); |
|
| 205 | - |
|
| 206 | - // Activate this thing |
|
| 207 | - if ( $activate ) { |
|
| 208 | - try { |
|
| 209 | - $result = activate_plugin( $plugin ); |
|
| 210 | - |
|
| 211 | - if ( is_wp_error( $result ) ) { |
|
| 212 | - $success = false; |
|
| 213 | - } else { |
|
| 214 | - $success = true; |
|
| 215 | - } |
|
| 216 | - } catch ( Exception $e ) { |
|
| 217 | - $success = false; |
|
| 218 | - } |
|
| 219 | - } |
|
| 220 | - } |
|
| 221 | - |
|
| 222 | - if ( $success && function_exists( 'ayecode_connect_args' ) ) { |
|
| 223 | - ayecode_connect();// init |
|
| 224 | - $args = ayecode_connect_args(); |
|
| 225 | - $client = new AyeCode_Connect( $args ); |
|
| 226 | - $redirect_to = ! empty( $_POST['redirect_to'] ) ? esc_url_raw( $_POST['redirect_to'] ) : ''; |
|
| 227 | - $redirect = $client->build_connect_url( $redirect_to ); |
|
| 228 | - wp_send_json_success( array( 'connect_url' => $redirect ) ); |
|
| 229 | - } else { |
|
| 230 | - wp_send_json_error( $this->strings['error_localhost'] ); |
|
| 231 | - } |
|
| 232 | - wp_die(); |
|
| 233 | - } |
|
| 234 | - |
|
| 235 | - /** |
|
| 236 | - * Check if maybe localhost. |
|
| 237 | - * |
|
| 238 | - * @return bool |
|
| 239 | - */ |
|
| 240 | - public function is_localhost() { |
|
| 241 | - $localhost = false; |
|
| 242 | - |
|
| 243 | - $host = isset( $_SERVER['HTTP_HOST'] ) ? $_SERVER['HTTP_HOST'] : ''; |
|
| 244 | - $localhost_domains = array( |
|
| 245 | - 'localhost', |
|
| 246 | - 'localhost.localdomain', |
|
| 247 | - '127.0.0.1', |
|
| 248 | - '::1' |
|
| 249 | - ); |
|
| 250 | - |
|
| 251 | - if ( in_array( $host, $localhost_domains ) ) { |
|
| 252 | - $localhost = true; |
|
| 253 | - } |
|
| 254 | - |
|
| 255 | - return $localhost; |
|
| 256 | - } |
|
| 257 | - |
|
| 258 | - /** |
|
| 259 | - * Show notice to connect site. |
|
| 260 | - */ |
|
| 261 | - public function ayecode_connect_install_notice() { |
|
| 262 | - if ( $this->maybe_show() ) { |
|
| 263 | - $connect_title_string = $this->strings['connect_title']; |
|
| 264 | - $connect_external_string = $this->strings['connect_external']; |
|
| 265 | - $connect_string = $this->strings['connect']; |
|
| 266 | - $connect_button_string = $this->strings['connect_button']; |
|
| 267 | - $connecting_button_string = $this->strings['connecting_button']; |
|
| 268 | - ?> |
|
| 8 | + /** |
|
| 9 | + * Allow the quick setup and connection of our AyeCode Connect plugin. |
|
| 10 | + * |
|
| 11 | + * Class AyeCode_Connect_Helper |
|
| 12 | + */ |
|
| 13 | + class AyeCode_Connect_Helper { |
|
| 14 | + |
|
| 15 | + // Hold the version number |
|
| 16 | + var $version = "1.0.3"; |
|
| 17 | + |
|
| 18 | + // Hold the default strings. |
|
| 19 | + var $strings = array(); |
|
| 20 | + |
|
| 21 | + // Hold the default pages. |
|
| 22 | + var $pages = array(); |
|
| 23 | + |
|
| 24 | + /** |
|
| 25 | + * The constructor. |
|
| 26 | + * |
|
| 27 | + * AyeCode_Connect_Helper constructor. |
|
| 28 | + * |
|
| 29 | + * @param array $strings |
|
| 30 | + * @param array $pages |
|
| 31 | + */ |
|
| 32 | + public function __construct( $strings = array(), $pages = array() ) { |
|
| 33 | + |
|
| 34 | + // Only fire if not localhost and the current user has the right permissions. |
|
| 35 | + if ( ! $this->is_localhost() && current_user_can( 'manage_options' ) ) { |
|
| 36 | + |
|
| 37 | + |
|
| 38 | + // set default strings |
|
| 39 | + $default_strings = array( |
|
| 40 | + 'connect_title' => __( "Thanks for choosing an AyeCode Product!" ), |
|
| 41 | + 'connect_external' => __( "Please confirm you wish to connect your site?" ), |
|
| 42 | + 'connect' => sprintf( __( "<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s" ), "<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>", "</a>" ), |
|
| 43 | + 'connect_button' => __( "Connect Site" ), |
|
| 44 | + 'connecting_button' => __( "Connecting..." ), |
|
| 45 | + 'error_localhost' => __( "This service will only work with a live domain, not a localhost." ), |
|
| 46 | + 'error' => __( "Something went wrong, please refresh and try again." ), |
|
| 47 | + ); |
|
| 48 | + $this->strings = array_merge( $default_strings, $strings ); |
|
| 49 | + |
|
| 50 | + |
|
| 51 | + // set default pages |
|
| 52 | + $default_pages = array(); |
|
| 53 | + $this->pages = array_merge( $default_pages, $pages ); |
|
| 54 | + |
|
| 55 | + // maybe show connect site notice |
|
| 56 | + add_action( 'admin_notices', array( $this, 'ayecode_connect_install_notice' ) ); |
|
| 57 | + |
|
| 58 | + // add ajax action if not already added |
|
| 59 | + if ( ! has_action( 'wp_ajax_ayecode_connect_helper' ) ) { |
|
| 60 | + add_action( 'wp_ajax_ayecode_connect_helper', array( $this, 'ayecode_connect_install' ) ); |
|
| 61 | + } |
|
| 62 | + } |
|
| 63 | + |
|
| 64 | + // add ajax action if not already added |
|
| 65 | + if ( ! has_action( 'wp_ajax_nopriv_ayecode_connect_helper_installed' ) ) { |
|
| 66 | + add_action( 'wp_ajax_nopriv_ayecode_connect_helper_installed', array( $this, 'ayecode_connect_helper_installed' ) ); |
|
| 67 | + } |
|
| 68 | + |
|
| 69 | + } |
|
| 70 | + |
|
| 71 | + /** |
|
| 72 | + * Give a way to check we can connect via a external redirect. |
|
| 73 | + */ |
|
| 74 | + public function ayecode_connect_helper_installed(){ |
|
| 75 | + $active = array( |
|
| 76 | + 'gd' => defined('GEODIRECTORY_VERSION') && version_compare(GEODIRECTORY_VERSION,'2.0.0.79','>') ? 1 : 0, |
|
| 77 | + 'uwp' => defined('USERSWP_VERSION') && version_compare(USERSWP_VERSION,'1.2.1.5','>') ? 1 : 0, |
|
| 78 | + 'wpi' => defined('WPINV_VERSION') && version_compare(WPINV_VERSION,'1.0.14','>') ? 1 : 0, |
|
| 79 | + ); |
|
| 80 | + wp_send_json_success( $active ); |
|
| 81 | + wp_die(); |
|
| 82 | + } |
|
| 83 | + |
|
| 84 | + /** |
|
| 85 | + * Get slug from path |
|
| 86 | + * |
|
| 87 | + * @param string $key |
|
| 88 | + * |
|
| 89 | + * @return string |
|
| 90 | + */ |
|
| 91 | + private function format_plugin_slug( $key ) { |
|
| 92 | + $slug = explode( '/', $key ); |
|
| 93 | + $slug = explode( '.', end( $slug ) ); |
|
| 94 | + |
|
| 95 | + return $slug[0]; |
|
| 96 | + } |
|
| 97 | + |
|
| 98 | + /** |
|
| 99 | + * Install and activate the AyeCode Connect Plugin |
|
| 100 | + */ |
|
| 101 | + public function ayecode_connect_install() { |
|
| 102 | + |
|
| 103 | + // bail if localhost |
|
| 104 | + if ( $this->is_localhost() ) { |
|
| 105 | + wp_send_json_error( $this->strings['error_localhost'] ); |
|
| 106 | + } |
|
| 107 | + |
|
| 108 | + // Explicitly clear the event. |
|
| 109 | + wp_clear_scheduled_hook( 'geodir_plugin_background_installer', func_get_args() ); |
|
| 110 | + |
|
| 111 | + $success = true; |
|
| 112 | + $plugin_slug = "ayecode-connect"; |
|
| 113 | + if ( ! empty( $plugin_slug ) ) { |
|
| 114 | + require_once( ABSPATH . 'wp-admin/includes/file.php' ); |
|
| 115 | + require_once( ABSPATH . 'wp-admin/includes/plugin-install.php' ); |
|
| 116 | + require_once( ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' ); |
|
| 117 | + require_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
| 118 | + |
|
| 119 | + WP_Filesystem(); |
|
| 120 | + |
|
| 121 | + $skin = new Automatic_Upgrader_Skin; |
|
| 122 | + $upgrader = new WP_Upgrader( $skin ); |
|
| 123 | + $installed_plugins = array_map( array( $this, 'format_plugin_slug' ), array_keys( get_plugins() ) ); |
|
| 124 | + $plugin_slug = $plugin_slug; |
|
| 125 | + $plugin = $plugin_slug . '/' . $plugin_slug . '.php'; |
|
| 126 | + $installed = false; |
|
| 127 | + $activate = false; |
|
| 128 | + |
|
| 129 | + // See if the plugin is installed already |
|
| 130 | + if ( in_array( $plugin_slug, $installed_plugins ) ) { |
|
| 131 | + $installed = true; |
|
| 132 | + $activate = ! is_plugin_active( $plugin ); |
|
| 133 | + } |
|
| 134 | + |
|
| 135 | + // Install this thing! |
|
| 136 | + if ( ! $installed ) { |
|
| 137 | + |
|
| 138 | + // Suppress feedback |
|
| 139 | + ob_start(); |
|
| 140 | + |
|
| 141 | + try { |
|
| 142 | + $plugin_information = plugins_api( 'plugin_information', array( |
|
| 143 | + 'slug' => $plugin_slug, |
|
| 144 | + 'fields' => array( |
|
| 145 | + 'short_description' => false, |
|
| 146 | + 'sections' => false, |
|
| 147 | + 'requires' => false, |
|
| 148 | + 'rating' => false, |
|
| 149 | + 'ratings' => false, |
|
| 150 | + 'downloaded' => false, |
|
| 151 | + 'last_updated' => false, |
|
| 152 | + 'added' => false, |
|
| 153 | + 'tags' => false, |
|
| 154 | + 'homepage' => false, |
|
| 155 | + 'donate_link' => false, |
|
| 156 | + 'author_profile' => false, |
|
| 157 | + 'author' => false, |
|
| 158 | + ), |
|
| 159 | + ) ); |
|
| 160 | + |
|
| 161 | + if ( is_wp_error( $plugin_information ) ) { |
|
| 162 | + throw new Exception( $plugin_information->get_error_message() ); |
|
| 163 | + } |
|
| 164 | + |
|
| 165 | + $package = $plugin_information->download_link; |
|
| 166 | + $download = $upgrader->download_package( $package ); |
|
| 167 | + |
|
| 168 | + if ( is_wp_error( $download ) ) { |
|
| 169 | + throw new Exception( $download->get_error_message() ); |
|
| 170 | + } |
|
| 171 | + |
|
| 172 | + $working_dir = $upgrader->unpack_package( $download, true ); |
|
| 173 | + |
|
| 174 | + if ( is_wp_error( $working_dir ) ) { |
|
| 175 | + throw new Exception( $working_dir->get_error_message() ); |
|
| 176 | + } |
|
| 177 | + |
|
| 178 | + $result = $upgrader->install_package( array( |
|
| 179 | + 'source' => $working_dir, |
|
| 180 | + 'destination' => WP_PLUGIN_DIR, |
|
| 181 | + 'clear_destination' => false, |
|
| 182 | + 'abort_if_destination_exists' => false, |
|
| 183 | + 'clear_working' => true, |
|
| 184 | + 'hook_extra' => array( |
|
| 185 | + 'type' => 'plugin', |
|
| 186 | + 'action' => 'install', |
|
| 187 | + ), |
|
| 188 | + ) ); |
|
| 189 | + |
|
| 190 | + if ( is_wp_error( $result ) ) { |
|
| 191 | + throw new Exception( $result->get_error_message() ); |
|
| 192 | + } |
|
| 193 | + |
|
| 194 | + $activate = true; |
|
| 195 | + |
|
| 196 | + } catch ( Exception $e ) { |
|
| 197 | + $success = false; |
|
| 198 | + } |
|
| 199 | + |
|
| 200 | + // Discard feedback |
|
| 201 | + ob_end_clean(); |
|
| 202 | + } |
|
| 203 | + |
|
| 204 | + wp_clean_plugins_cache(); |
|
| 205 | + |
|
| 206 | + // Activate this thing |
|
| 207 | + if ( $activate ) { |
|
| 208 | + try { |
|
| 209 | + $result = activate_plugin( $plugin ); |
|
| 210 | + |
|
| 211 | + if ( is_wp_error( $result ) ) { |
|
| 212 | + $success = false; |
|
| 213 | + } else { |
|
| 214 | + $success = true; |
|
| 215 | + } |
|
| 216 | + } catch ( Exception $e ) { |
|
| 217 | + $success = false; |
|
| 218 | + } |
|
| 219 | + } |
|
| 220 | + } |
|
| 221 | + |
|
| 222 | + if ( $success && function_exists( 'ayecode_connect_args' ) ) { |
|
| 223 | + ayecode_connect();// init |
|
| 224 | + $args = ayecode_connect_args(); |
|
| 225 | + $client = new AyeCode_Connect( $args ); |
|
| 226 | + $redirect_to = ! empty( $_POST['redirect_to'] ) ? esc_url_raw( $_POST['redirect_to'] ) : ''; |
|
| 227 | + $redirect = $client->build_connect_url( $redirect_to ); |
|
| 228 | + wp_send_json_success( array( 'connect_url' => $redirect ) ); |
|
| 229 | + } else { |
|
| 230 | + wp_send_json_error( $this->strings['error_localhost'] ); |
|
| 231 | + } |
|
| 232 | + wp_die(); |
|
| 233 | + } |
|
| 234 | + |
|
| 235 | + /** |
|
| 236 | + * Check if maybe localhost. |
|
| 237 | + * |
|
| 238 | + * @return bool |
|
| 239 | + */ |
|
| 240 | + public function is_localhost() { |
|
| 241 | + $localhost = false; |
|
| 242 | + |
|
| 243 | + $host = isset( $_SERVER['HTTP_HOST'] ) ? $_SERVER['HTTP_HOST'] : ''; |
|
| 244 | + $localhost_domains = array( |
|
| 245 | + 'localhost', |
|
| 246 | + 'localhost.localdomain', |
|
| 247 | + '127.0.0.1', |
|
| 248 | + '::1' |
|
| 249 | + ); |
|
| 250 | + |
|
| 251 | + if ( in_array( $host, $localhost_domains ) ) { |
|
| 252 | + $localhost = true; |
|
| 253 | + } |
|
| 254 | + |
|
| 255 | + return $localhost; |
|
| 256 | + } |
|
| 257 | + |
|
| 258 | + /** |
|
| 259 | + * Show notice to connect site. |
|
| 260 | + */ |
|
| 261 | + public function ayecode_connect_install_notice() { |
|
| 262 | + if ( $this->maybe_show() ) { |
|
| 263 | + $connect_title_string = $this->strings['connect_title']; |
|
| 264 | + $connect_external_string = $this->strings['connect_external']; |
|
| 265 | + $connect_string = $this->strings['connect']; |
|
| 266 | + $connect_button_string = $this->strings['connect_button']; |
|
| 267 | + $connecting_button_string = $this->strings['connecting_button']; |
|
| 268 | + ?> |
|
| 269 | 269 | <div class="notice notice-info acch-notice"> |
| 270 | 270 | <span class="acch-float-left"> |
| 271 | 271 | <svg width="61px" height="61px" viewBox="0 0 61 61" version="1.1" |
@@ -304,8 +304,8 @@ discard block |
||
| 304 | 304 | <h3 class="acch-title"><?php echo esc_attr( $connect_title_string ); ?></h3> |
| 305 | 305 | <p> |
| 306 | 306 | <?php |
| 307 | - echo $connect_string; |
|
| 308 | - ?> |
|
| 307 | + echo $connect_string; |
|
| 308 | + ?> |
|
| 309 | 309 | </p> |
| 310 | 310 | </span> |
| 311 | 311 | |
@@ -318,9 +318,9 @@ discard block |
||
| 318 | 318 | </div> |
| 319 | 319 | |
| 320 | 320 | <?php |
| 321 | - // only include the popup HTML if needed. |
|
| 322 | - if ( ! empty( $_REQUEST['external-connect-request'] ) ) { |
|
| 323 | - ?> |
|
| 321 | + // only include the popup HTML if needed. |
|
| 322 | + if ( ! empty( $_REQUEST['external-connect-request'] ) ) { |
|
| 323 | + ?> |
|
| 324 | 324 | <div id="ayecode-connect-helper-external-confirm" style="display:none;"> |
| 325 | 325 | <div class="noticex notice-info acch-notice" style="border: none;"> |
| 326 | 326 | <span class="acch-float-left"> |
@@ -369,23 +369,23 @@ discard block |
||
| 369 | 369 | </div> |
| 370 | 370 | </div> |
| 371 | 371 | <?php |
| 372 | - } |
|
| 373 | - |
|
| 374 | - // add required scripts |
|
| 375 | - $this->script(); |
|
| 376 | - } |
|
| 377 | - } |
|
| 378 | - |
|
| 379 | - /** |
|
| 380 | - * Get the JS Script. |
|
| 381 | - */ |
|
| 382 | - public function script() { |
|
| 383 | - |
|
| 384 | - // add thickbox if external request is requested |
|
| 385 | - if ( ! empty( $_REQUEST['external-connect-request'] ) ) { |
|
| 386 | - add_thickbox(); |
|
| 387 | - } |
|
| 388 | - ?> |
|
| 372 | + } |
|
| 373 | + |
|
| 374 | + // add required scripts |
|
| 375 | + $this->script(); |
|
| 376 | + } |
|
| 377 | + } |
|
| 378 | + |
|
| 379 | + /** |
|
| 380 | + * Get the JS Script. |
|
| 381 | + */ |
|
| 382 | + public function script() { |
|
| 383 | + |
|
| 384 | + // add thickbox if external request is requested |
|
| 385 | + if ( ! empty( $_REQUEST['external-connect-request'] ) ) { |
|
| 386 | + add_thickbox(); |
|
| 387 | + } |
|
| 388 | + ?> |
|
| 389 | 389 | <style> |
| 390 | 390 | .acch-title { |
| 391 | 391 | margin: 0; |
@@ -454,43 +454,43 @@ discard block |
||
| 454 | 454 | |
| 455 | 455 | |
| 456 | 456 | <?php |
| 457 | - // add thickbox if external request is requested |
|
| 458 | - if(! empty( $_REQUEST['external-connect-request'] )) { |
|
| 459 | - ?> |
|
| 457 | + // add thickbox if external request is requested |
|
| 458 | + if(! empty( $_REQUEST['external-connect-request'] )) { |
|
| 459 | + ?> |
|
| 460 | 460 | jQuery(function () { |
| 461 | 461 | setTimeout(function () { |
| 462 | 462 | tb_show("AyeCode Connect", "?TB_inline?width=300&height=80&inlineId=ayecode-connect-helper-external-confirm"); |
| 463 | 463 | }, 200); |
| 464 | 464 | }); |
| 465 | 465 | <?php |
| 466 | - } |
|
| 467 | - ?> |
|
| 466 | + } |
|
| 467 | + ?> |
|
| 468 | 468 | |
| 469 | 469 | </script> |
| 470 | 470 | <?php |
| 471 | - } |
|
| 472 | - |
|
| 473 | - /** |
|
| 474 | - * Decide what pages to show on. |
|
| 475 | - * |
|
| 476 | - * @return bool |
|
| 477 | - */ |
|
| 478 | - public function maybe_show() { |
|
| 479 | - $show = false; |
|
| 480 | - |
|
| 481 | - // check if on a page set to show |
|
| 482 | - if ( isset( $_REQUEST['page'] ) && in_array( $_REQUEST['page'], $this->pages ) ) { |
|
| 483 | - |
|
| 484 | - // check if not active and connected |
|
| 485 | - if ( ! defined( 'AYECODE_CONNECT_VERSION' ) || ! get_option( 'ayecode_connect_blog_token' ) ) { |
|
| 486 | - $show = true; |
|
| 487 | - } |
|
| 471 | + } |
|
| 472 | + |
|
| 473 | + /** |
|
| 474 | + * Decide what pages to show on. |
|
| 475 | + * |
|
| 476 | + * @return bool |
|
| 477 | + */ |
|
| 478 | + public function maybe_show() { |
|
| 479 | + $show = false; |
|
| 480 | + |
|
| 481 | + // check if on a page set to show |
|
| 482 | + if ( isset( $_REQUEST['page'] ) && in_array( $_REQUEST['page'], $this->pages ) ) { |
|
| 483 | + |
|
| 484 | + // check if not active and connected |
|
| 485 | + if ( ! defined( 'AYECODE_CONNECT_VERSION' ) || ! get_option( 'ayecode_connect_blog_token' ) ) { |
|
| 486 | + $show = true; |
|
| 487 | + } |
|
| 488 | 488 | |
| 489 | - } |
|
| 489 | + } |
|
| 490 | 490 | |
| 491 | - return $show; |
|
| 492 | - } |
|
| 491 | + return $show; |
|
| 492 | + } |
|
| 493 | 493 | |
| 494 | - } |
|
| 494 | + } |
|
| 495 | 495 | |
| 496 | 496 | } |
@@ -3,102 +3,102 @@ discard block |
||
| 3 | 3 | class SD_Hello_World extends WP_Super_Duper { |
| 4 | 4 | |
| 5 | 5 | |
| 6 | - public $arguments; |
|
| 7 | - |
|
| 8 | - /** |
|
| 9 | - * Sets up the widgets name etc |
|
| 10 | - */ |
|
| 11 | - public function __construct() { |
|
| 12 | - |
|
| 13 | - $options = array( |
|
| 14 | - 'textdomain' => 'super-duper', |
|
| 15 | - // textdomain of the plugin/theme (used to prefix the Gutenberg block) |
|
| 16 | - 'block-icon' => 'fas fa-globe-americas', |
|
| 17 | - // Dash icon name for the block: https://developer.wordpress.org/resource/dashicons/#arrow-right |
|
| 18 | - // OR font-awesome 5 class name: fas fa-globe-americas |
|
| 19 | - 'block-category' => 'widgets', |
|
| 20 | - // the category for the block, 'common', 'formatting', 'layout', 'widgets', 'embed'. |
|
| 21 | - 'block-keywords' => "['hello','world']", |
|
| 22 | - // used in the block search, MAX 3 |
|
| 23 | - 'block-output' => array( // the block visual output elements as an array |
|
| 24 | - array( |
|
| 25 | - 'element' => 'p', |
|
| 26 | - 'title' => __( 'Placeholder', 'hello-world' ), |
|
| 27 | - 'class' => '[%className%]', |
|
| 28 | - 'content' => 'Hello: [%after_text%]' // block properties can be added by wrapping them in [%name%] |
|
| 29 | - ) |
|
| 30 | - ), |
|
| 31 | - 'block-wrap' => '', // You can specify the type of element to wrap the block `div` or `span` etc.. Or blank for no wrap at all. |
|
| 32 | - 'class_name' => __CLASS__, |
|
| 33 | - // The calling class name |
|
| 34 | - 'base_id' => 'hello_world', |
|
| 35 | - // this is used as the widget id and the shortcode id. |
|
| 36 | - 'name' => __( 'Hello World', 'hello-world' ), |
|
| 37 | - // the name of the widget/block |
|
| 38 | - 'widget_ops' => array( |
|
| 39 | - 'classname' => 'hello-world-class', |
|
| 40 | - // widget class |
|
| 41 | - 'description' => esc_html__( 'This is an example that will take a text parameter and output it after `Hello:`.', 'hello-world' ), |
|
| 42 | - // widget description |
|
| 43 | - ), |
|
| 44 | - 'no_wrap' => true, // This will prevent the widget being wrapped in the containing widget class div. |
|
| 45 | - 'arguments' => array( // these are the arguments that will be used in the widget, shortcode and block settings. |
|
| 46 | - 'after_text' => array( // this is the input name='' |
|
| 47 | - 'title' => __( 'Text after hello:', 'hello-world' ), |
|
| 48 | - // input title |
|
| 49 | - 'desc' => __( 'This is the text that will appear after `Hello:`.', 'hello-world' ), |
|
| 50 | - // input description |
|
| 51 | - 'type' => 'text', |
|
| 52 | - // the type of input, test, select, checkbox etc. |
|
| 53 | - 'placeholder' => 'World', |
|
| 54 | - // the input placeholder text. |
|
| 55 | - 'desc_tip' => true, |
|
| 56 | - // if the input should show the widget description text as a tooltip. |
|
| 57 | - 'default' => 'World', |
|
| 58 | - // the input default value. |
|
| 59 | - 'advanced' => false |
|
| 60 | - // not yet implemented |
|
| 61 | - ), |
|
| 62 | - ) |
|
| 63 | - ); |
|
| 64 | - |
|
| 65 | - parent::__construct( $options ); |
|
| 66 | - } |
|
| 67 | - |
|
| 68 | - |
|
| 69 | - /** |
|
| 70 | - * This is the output function for the widget, shortcode and block (front end). |
|
| 71 | - * |
|
| 72 | - * @param array $args The arguments values. |
|
| 73 | - * @param array $widget_args The widget arguments when used. |
|
| 74 | - * @param string $content The shortcode content argument |
|
| 75 | - * |
|
| 76 | - * @return string |
|
| 77 | - */ |
|
| 78 | - public function output( $args = array(), $widget_args = array(), $content = '' ) { |
|
| 79 | - |
|
| 80 | - /** |
|
| 81 | - * @var string $after_text |
|
| 82 | - * @var string $another_input This is added by filter below. |
|
| 83 | - */ |
|
| 84 | - extract( $args, EXTR_SKIP ); |
|
| 85 | - |
|
| 86 | - /* |
|
| 6 | + public $arguments; |
|
| 7 | + |
|
| 8 | + /** |
|
| 9 | + * Sets up the widgets name etc |
|
| 10 | + */ |
|
| 11 | + public function __construct() { |
|
| 12 | + |
|
| 13 | + $options = array( |
|
| 14 | + 'textdomain' => 'super-duper', |
|
| 15 | + // textdomain of the plugin/theme (used to prefix the Gutenberg block) |
|
| 16 | + 'block-icon' => 'fas fa-globe-americas', |
|
| 17 | + // Dash icon name for the block: https://developer.wordpress.org/resource/dashicons/#arrow-right |
|
| 18 | + // OR font-awesome 5 class name: fas fa-globe-americas |
|
| 19 | + 'block-category' => 'widgets', |
|
| 20 | + // the category for the block, 'common', 'formatting', 'layout', 'widgets', 'embed'. |
|
| 21 | + 'block-keywords' => "['hello','world']", |
|
| 22 | + // used in the block search, MAX 3 |
|
| 23 | + 'block-output' => array( // the block visual output elements as an array |
|
| 24 | + array( |
|
| 25 | + 'element' => 'p', |
|
| 26 | + 'title' => __( 'Placeholder', 'hello-world' ), |
|
| 27 | + 'class' => '[%className%]', |
|
| 28 | + 'content' => 'Hello: [%after_text%]' // block properties can be added by wrapping them in [%name%] |
|
| 29 | + ) |
|
| 30 | + ), |
|
| 31 | + 'block-wrap' => '', // You can specify the type of element to wrap the block `div` or `span` etc.. Or blank for no wrap at all. |
|
| 32 | + 'class_name' => __CLASS__, |
|
| 33 | + // The calling class name |
|
| 34 | + 'base_id' => 'hello_world', |
|
| 35 | + // this is used as the widget id and the shortcode id. |
|
| 36 | + 'name' => __( 'Hello World', 'hello-world' ), |
|
| 37 | + // the name of the widget/block |
|
| 38 | + 'widget_ops' => array( |
|
| 39 | + 'classname' => 'hello-world-class', |
|
| 40 | + // widget class |
|
| 41 | + 'description' => esc_html__( 'This is an example that will take a text parameter and output it after `Hello:`.', 'hello-world' ), |
|
| 42 | + // widget description |
|
| 43 | + ), |
|
| 44 | + 'no_wrap' => true, // This will prevent the widget being wrapped in the containing widget class div. |
|
| 45 | + 'arguments' => array( // these are the arguments that will be used in the widget, shortcode and block settings. |
|
| 46 | + 'after_text' => array( // this is the input name='' |
|
| 47 | + 'title' => __( 'Text after hello:', 'hello-world' ), |
|
| 48 | + // input title |
|
| 49 | + 'desc' => __( 'This is the text that will appear after `Hello:`.', 'hello-world' ), |
|
| 50 | + // input description |
|
| 51 | + 'type' => 'text', |
|
| 52 | + // the type of input, test, select, checkbox etc. |
|
| 53 | + 'placeholder' => 'World', |
|
| 54 | + // the input placeholder text. |
|
| 55 | + 'desc_tip' => true, |
|
| 56 | + // if the input should show the widget description text as a tooltip. |
|
| 57 | + 'default' => 'World', |
|
| 58 | + // the input default value. |
|
| 59 | + 'advanced' => false |
|
| 60 | + // not yet implemented |
|
| 61 | + ), |
|
| 62 | + ) |
|
| 63 | + ); |
|
| 64 | + |
|
| 65 | + parent::__construct( $options ); |
|
| 66 | + } |
|
| 67 | + |
|
| 68 | + |
|
| 69 | + /** |
|
| 70 | + * This is the output function for the widget, shortcode and block (front end). |
|
| 71 | + * |
|
| 72 | + * @param array $args The arguments values. |
|
| 73 | + * @param array $widget_args The widget arguments when used. |
|
| 74 | + * @param string $content The shortcode content argument |
|
| 75 | + * |
|
| 76 | + * @return string |
|
| 77 | + */ |
|
| 78 | + public function output( $args = array(), $widget_args = array(), $content = '' ) { |
|
| 79 | + |
|
| 80 | + /** |
|
| 81 | + * @var string $after_text |
|
| 82 | + * @var string $another_input This is added by filter below. |
|
| 83 | + */ |
|
| 84 | + extract( $args, EXTR_SKIP ); |
|
| 85 | + |
|
| 86 | + /* |
|
| 87 | 87 | * This value is added by filter so might not exist if filter is removed so we check. |
| 88 | 88 | */ |
| 89 | - if ( ! isset( $another_input ) ) { |
|
| 90 | - $another_input = ''; |
|
| 91 | - } |
|
| 89 | + if ( ! isset( $another_input ) ) { |
|
| 90 | + $another_input = ''; |
|
| 91 | + } |
|
| 92 | 92 | |
| 93 | - return "Hello: " . $after_text . "" . $another_input; |
|
| 93 | + return "Hello: " . $after_text . "" . $another_input; |
|
| 94 | 94 | |
| 95 | - } |
|
| 95 | + } |
|
| 96 | 96 | |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | // register it. |
| 100 | 100 | add_action( 'widgets_init', function () { |
| 101 | - register_widget( 'SD_Hello_World' ); |
|
| 101 | + register_widget( 'SD_Hello_World' ); |
|
| 102 | 102 | } ); |
| 103 | 103 | |
| 104 | 104 | |
@@ -111,26 +111,26 @@ discard block |
||
| 111 | 111 | */ |
| 112 | 112 | function _my_extra_arguments( $options ) { |
| 113 | 113 | |
| 114 | - /* |
|
| 114 | + /* |
|
| 115 | 115 | * Add a new input option. |
| 116 | 116 | */ |
| 117 | - $options['arguments']['another_input'] = array( |
|
| 118 | - 'name' => 'another_input', // this is the input name='' |
|
| 119 | - 'title' => __( 'Another input:', 'hello-world' ), // input title |
|
| 120 | - 'desc' => __( 'This is an input added via filter.', 'hello-world' ), // input description |
|
| 121 | - 'type' => 'text', // the type of input, test, select, checkbox etc. |
|
| 122 | - 'placeholder' => 'Placeholder text', // the input placeholder text. |
|
| 123 | - 'desc_tip' => true, // if the input should show the widget description text as a tooltip. |
|
| 124 | - 'default' => '', // the input default value. |
|
| 125 | - 'advanced' => false // not yet implemented |
|
| 126 | - ); |
|
| 127 | - |
|
| 128 | - /* |
|
| 117 | + $options['arguments']['another_input'] = array( |
|
| 118 | + 'name' => 'another_input', // this is the input name='' |
|
| 119 | + 'title' => __( 'Another input:', 'hello-world' ), // input title |
|
| 120 | + 'desc' => __( 'This is an input added via filter.', 'hello-world' ), // input description |
|
| 121 | + 'type' => 'text', // the type of input, test, select, checkbox etc. |
|
| 122 | + 'placeholder' => 'Placeholder text', // the input placeholder text. |
|
| 123 | + 'desc_tip' => true, // if the input should show the widget description text as a tooltip. |
|
| 124 | + 'default' => '', // the input default value. |
|
| 125 | + 'advanced' => false // not yet implemented |
|
| 126 | + ); |
|
| 127 | + |
|
| 128 | + /* |
|
| 129 | 129 | * Output the new option in the block output also. |
| 130 | 130 | */ |
| 131 | - $options['block-output']['element::p']['content'] = $options['block-output']['element::p']['content'] . " [%another_input%]";; |
|
| 131 | + $options['block-output']['element::p']['content'] = $options['block-output']['element::p']['content'] . " [%another_input%]";; |
|
| 132 | 132 | |
| 133 | - return $options; |
|
| 133 | + return $options; |
|
| 134 | 134 | } |
| 135 | 135 | |
| 136 | 136 | //add_filter( 'wp_super_duper_options_hello_world', '_my_extra_arguments' ); |
| 137 | 137 | \ No newline at end of file |
@@ -1,7 +1,7 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | - exit; // Exit if accessed directly |
|
| 4 | + exit; // Exit if accessed directly |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | /** |
@@ -11,81 +11,81 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | class AUI_Component_Alert { |
| 13 | 13 | |
| 14 | - /** |
|
| 15 | - * Build the component. |
|
| 16 | - * |
|
| 17 | - * @param array $args |
|
| 18 | - * |
|
| 19 | - * @return string The rendered component. |
|
| 20 | - */ |
|
| 21 | - public static function get($args = array()){ |
|
| 22 | - $defaults = array( |
|
| 23 | - 'type' => 'info', |
|
| 24 | - 'class' => '', |
|
| 25 | - 'icon' => '', |
|
| 26 | - 'heading' => '', |
|
| 27 | - 'content' => '', |
|
| 28 | - 'footer' => '', |
|
| 29 | - 'dismissible'=> false, |
|
| 30 | - 'data' => '', |
|
| 31 | - ); |
|
| 14 | + /** |
|
| 15 | + * Build the component. |
|
| 16 | + * |
|
| 17 | + * @param array $args |
|
| 18 | + * |
|
| 19 | + * @return string The rendered component. |
|
| 20 | + */ |
|
| 21 | + public static function get($args = array()){ |
|
| 22 | + $defaults = array( |
|
| 23 | + 'type' => 'info', |
|
| 24 | + 'class' => '', |
|
| 25 | + 'icon' => '', |
|
| 26 | + 'heading' => '', |
|
| 27 | + 'content' => '', |
|
| 28 | + 'footer' => '', |
|
| 29 | + 'dismissible'=> false, |
|
| 30 | + 'data' => '', |
|
| 31 | + ); |
|
| 32 | 32 | |
| 33 | - /** |
|
| 34 | - * Parse incoming $args into an array and merge it with $defaults |
|
| 35 | - */ |
|
| 36 | - $args = wp_parse_args( $args, $defaults ); |
|
| 37 | - $output = ''; |
|
| 38 | - if ( ! empty( $args['content'] ) ) { |
|
| 39 | - $type = sanitize_html_class( $args['type'] ); |
|
| 40 | - if($type=='error'){$type='danger';} |
|
| 41 | - $icon = !empty($args['icon']) ? "<i class='".esc_attr($args['icon'])."'></i>" : ''; |
|
| 33 | + /** |
|
| 34 | + * Parse incoming $args into an array and merge it with $defaults |
|
| 35 | + */ |
|
| 36 | + $args = wp_parse_args( $args, $defaults ); |
|
| 37 | + $output = ''; |
|
| 38 | + if ( ! empty( $args['content'] ) ) { |
|
| 39 | + $type = sanitize_html_class( $args['type'] ); |
|
| 40 | + if($type=='error'){$type='danger';} |
|
| 41 | + $icon = !empty($args['icon']) ? "<i class='".esc_attr($args['icon'])."'></i>" : ''; |
|
| 42 | 42 | |
| 43 | - // set default icon |
|
| 44 | - if(!$icon && $args['icon']!==false && $type){ |
|
| 45 | - if($type=='danger'){$icon = '<i class="fas fa-exclamation-circle"></i>';} |
|
| 46 | - elseif($type=='warning'){$icon = '<i class="fas fa-exclamation-triangle"></i>';} |
|
| 47 | - elseif($type=='success'){$icon = '<i class="fas fa-check-circle"></i>';} |
|
| 48 | - elseif($type=='info'){$icon = '<i class="fas fa-info-circle"></i>';} |
|
| 49 | - } |
|
| 43 | + // set default icon |
|
| 44 | + if(!$icon && $args['icon']!==false && $type){ |
|
| 45 | + if($type=='danger'){$icon = '<i class="fas fa-exclamation-circle"></i>';} |
|
| 46 | + elseif($type=='warning'){$icon = '<i class="fas fa-exclamation-triangle"></i>';} |
|
| 47 | + elseif($type=='success'){$icon = '<i class="fas fa-check-circle"></i>';} |
|
| 48 | + elseif($type=='info'){$icon = '<i class="fas fa-info-circle"></i>';} |
|
| 49 | + } |
|
| 50 | 50 | |
| 51 | - $data = ''; |
|
| 52 | - $class = !empty($args['class']) ? esc_attr($args['class']) : ''; |
|
| 53 | - if($args['dismissible']){$class .= " alert-dismissible fade show";} |
|
| 51 | + $data = ''; |
|
| 52 | + $class = !empty($args['class']) ? esc_attr($args['class']) : ''; |
|
| 53 | + if($args['dismissible']){$class .= " alert-dismissible fade show";} |
|
| 54 | 54 | |
| 55 | - // open |
|
| 56 | - $output .= '<div class="alert alert-' . $type . ' '.$class.'" role="alert" '.$data.'>'; |
|
| 55 | + // open |
|
| 56 | + $output .= '<div class="alert alert-' . $type . ' '.$class.'" role="alert" '.$data.'>'; |
|
| 57 | 57 | |
| 58 | - // heading |
|
| 59 | - if ( ! empty( $args['heading'] ) ) { |
|
| 60 | - $output .= '<h4 class="alert-heading">' . $args['heading'] . '</h4>'; |
|
| 61 | - } |
|
| 58 | + // heading |
|
| 59 | + if ( ! empty( $args['heading'] ) ) { |
|
| 60 | + $output .= '<h4 class="alert-heading">' . $args['heading'] . '</h4>'; |
|
| 61 | + } |
|
| 62 | 62 | |
| 63 | - // icon |
|
| 64 | - if ( ! empty( $icon) ) { |
|
| 65 | - $output .= $icon." "; |
|
| 66 | - } |
|
| 63 | + // icon |
|
| 64 | + if ( ! empty( $icon) ) { |
|
| 65 | + $output .= $icon." "; |
|
| 66 | + } |
|
| 67 | 67 | |
| 68 | - // content |
|
| 69 | - $output .= $args['content']; |
|
| 68 | + // content |
|
| 69 | + $output .= $args['content']; |
|
| 70 | 70 | |
| 71 | - // dismissible |
|
| 72 | - if($args['dismissible']){ |
|
| 73 | - $output .= '<button type="button" class="close" data-dismiss="alert" aria-label="Close">'; |
|
| 74 | - $output .= '<span aria-hidden="true">×</span>'; |
|
| 75 | - $output .= '</button>'; |
|
| 76 | - } |
|
| 71 | + // dismissible |
|
| 72 | + if($args['dismissible']){ |
|
| 73 | + $output .= '<button type="button" class="close" data-dismiss="alert" aria-label="Close">'; |
|
| 74 | + $output .= '<span aria-hidden="true">×</span>'; |
|
| 75 | + $output .= '</button>'; |
|
| 76 | + } |
|
| 77 | 77 | |
| 78 | - // footer |
|
| 79 | - if ( ! empty( $args['footer'] ) ) { |
|
| 80 | - $output .= '<hr>'; |
|
| 81 | - $output .= '<p class="mb-0">' . $args['footer'] . '</p>'; |
|
| 82 | - } |
|
| 78 | + // footer |
|
| 79 | + if ( ! empty( $args['footer'] ) ) { |
|
| 80 | + $output .= '<hr>'; |
|
| 81 | + $output .= '<p class="mb-0">' . $args['footer'] . '</p>'; |
|
| 82 | + } |
|
| 83 | 83 | |
| 84 | - // close |
|
| 85 | - $output .= '</div>'; |
|
| 86 | - } |
|
| 84 | + // close |
|
| 85 | + $output .= '</div>'; |
|
| 86 | + } |
|
| 87 | 87 | |
| 88 | - return $output; |
|
| 89 | - } |
|
| 88 | + return $output; |
|
| 89 | + } |
|
| 90 | 90 | |
| 91 | 91 | } |
| 92 | 92 | \ No newline at end of file |
@@ -1,7 +1,7 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | - exit; // Exit if accessed directly |
|
| 4 | + exit; // Exit if accessed directly |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | /** |
@@ -11,62 +11,62 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | class AUI_Component_Dropdown { |
| 13 | 13 | |
| 14 | - /** |
|
| 15 | - * Build the component. |
|
| 16 | - * |
|
| 17 | - * @param array $args |
|
| 18 | - * |
|
| 19 | - * @return string The rendered component. |
|
| 20 | - */ |
|
| 21 | - public static function get($args = array()){ |
|
| 22 | - $defaults = array( |
|
| 23 | - 'type' => 'button', |
|
| 24 | - 'href' => '#', |
|
| 25 | - 'class' => 'btn btn-primary dropdown-toggle', |
|
| 26 | - 'wrapper_class' => '', |
|
| 27 | - 'dropdown_menu_class' => '', |
|
| 28 | - 'id' => '', |
|
| 29 | - 'title' => '', |
|
| 30 | - 'value' => '', |
|
| 31 | - 'content' => '', |
|
| 32 | - 'icon' => '', |
|
| 33 | - 'hover_content' => '', |
|
| 34 | - 'hover_icon' => '', |
|
| 35 | - 'data-toggle' => 'dropdown', |
|
| 36 | - 'aria-haspopup' => 'true', |
|
| 37 | - 'aria-expanded' => 'false', |
|
| 38 | - 'dropdown_menu' => '', // unescaped html menu (non-preferred way) |
|
| 39 | - 'dropdown_items' => array(), // array of AUI calls |
|
| 14 | + /** |
|
| 15 | + * Build the component. |
|
| 16 | + * |
|
| 17 | + * @param array $args |
|
| 18 | + * |
|
| 19 | + * @return string The rendered component. |
|
| 20 | + */ |
|
| 21 | + public static function get($args = array()){ |
|
| 22 | + $defaults = array( |
|
| 23 | + 'type' => 'button', |
|
| 24 | + 'href' => '#', |
|
| 25 | + 'class' => 'btn btn-primary dropdown-toggle', |
|
| 26 | + 'wrapper_class' => '', |
|
| 27 | + 'dropdown_menu_class' => '', |
|
| 28 | + 'id' => '', |
|
| 29 | + 'title' => '', |
|
| 30 | + 'value' => '', |
|
| 31 | + 'content' => '', |
|
| 32 | + 'icon' => '', |
|
| 33 | + 'hover_content' => '', |
|
| 34 | + 'hover_icon' => '', |
|
| 35 | + 'data-toggle' => 'dropdown', |
|
| 36 | + 'aria-haspopup' => 'true', |
|
| 37 | + 'aria-expanded' => 'false', |
|
| 38 | + 'dropdown_menu' => '', // unescaped html menu (non-preferred way) |
|
| 39 | + 'dropdown_items' => array(), // array of AUI calls |
|
| 40 | 40 | |
| 41 | - ); |
|
| 41 | + ); |
|
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * Parse incoming $args into an array and merge it with $defaults |
|
| 45 | - */ |
|
| 46 | - $args = wp_parse_args( $args, $defaults ); |
|
| 47 | - $output = ''; |
|
| 48 | - if ( ! empty( $args['type'] ) ) { |
|
| 49 | - // wrapper open |
|
| 50 | - $output .= '<div class="dropdown '.AUI_Component_Helper::esc_classes($args['wrapper_class']).'">'; |
|
| 43 | + /** |
|
| 44 | + * Parse incoming $args into an array and merge it with $defaults |
|
| 45 | + */ |
|
| 46 | + $args = wp_parse_args( $args, $defaults ); |
|
| 47 | + $output = ''; |
|
| 48 | + if ( ! empty( $args['type'] ) ) { |
|
| 49 | + // wrapper open |
|
| 50 | + $output .= '<div class="dropdown '.AUI_Component_Helper::esc_classes($args['wrapper_class']).'">'; |
|
| 51 | 51 | |
| 52 | - // button part |
|
| 53 | - $output .= aui()->button($args); |
|
| 52 | + // button part |
|
| 53 | + $output .= aui()->button($args); |
|
| 54 | 54 | |
| 55 | - // dropdown-menu |
|
| 56 | - if(!empty($args['dropdown_menu'])){ |
|
| 57 | - $output .= $args['dropdown_menu']; |
|
| 58 | - }elseif(!empty($args['dropdown_items'])){ |
|
| 59 | - $output .= '<div class="dropdown-menu '.AUI_Component_Helper::esc_classes($args['dropdown_menu_class']).'" aria-labelledby="'.sanitize_html_class($args['id']).'">'; |
|
| 60 | - $output .= aui()->render($args['dropdown_items']); |
|
| 61 | - $output .= '</div>'; |
|
| 62 | - } |
|
| 55 | + // dropdown-menu |
|
| 56 | + if(!empty($args['dropdown_menu'])){ |
|
| 57 | + $output .= $args['dropdown_menu']; |
|
| 58 | + }elseif(!empty($args['dropdown_items'])){ |
|
| 59 | + $output .= '<div class="dropdown-menu '.AUI_Component_Helper::esc_classes($args['dropdown_menu_class']).'" aria-labelledby="'.sanitize_html_class($args['id']).'">'; |
|
| 60 | + $output .= aui()->render($args['dropdown_items']); |
|
| 61 | + $output .= '</div>'; |
|
| 62 | + } |
|
| 63 | 63 | |
| 64 | - // wrapper close |
|
| 65 | - $output .= '</div>'; |
|
| 64 | + // wrapper close |
|
| 65 | + $output .= '</div>'; |
|
| 66 | 66 | |
| 67 | - } |
|
| 67 | + } |
|
| 68 | 68 | |
| 69 | - return $output; |
|
| 70 | - } |
|
| 69 | + return $output; |
|
| 70 | + } |
|
| 71 | 71 | |
| 72 | 72 | } |
| 73 | 73 | \ No newline at end of file |
@@ -16,132 +16,132 @@ |
||
| 16 | 16 | |
| 17 | 17 | // If this file is called directly, abort. |
| 18 | 18 | if ( ! defined( 'WPINC' ) ) { |
| 19 | - die; |
|
| 19 | + die; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | class AyeCode_UI_Plugin { |
| 23 | 23 | |
| 24 | - /** |
|
| 25 | - * AUI Plugin constructor. |
|
| 26 | - * |
|
| 27 | - * @since 1.0.0 |
|
| 28 | - */ |
|
| 29 | - public function __construct() { |
|
| 30 | - |
|
| 31 | - // load AUI |
|
| 32 | - require_once( dirname( __FILE__ ) . '/ayecode-ui-loader.php' ); |
|
| 33 | - |
|
| 34 | - // Maybe show example page |
|
| 35 | - add_action( 'template_redirect', array( $this,'maybe_show_examples' ) ); |
|
| 36 | - } |
|
| 37 | - |
|
| 38 | - public function maybe_show_examples(){ |
|
| 39 | - if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){ |
|
| 40 | - echo "<head>"; |
|
| 41 | - wp_head(); |
|
| 42 | - echo "</head>"; |
|
| 43 | - echo "<body>"; |
|
| 44 | - echo $this->get_examples(); |
|
| 45 | - echo "</body>"; |
|
| 46 | - exit; |
|
| 47 | - } |
|
| 48 | - } |
|
| 49 | - |
|
| 50 | - public function get_examples(){ |
|
| 51 | - $output = ''; |
|
| 52 | - |
|
| 53 | - |
|
| 54 | - // open form |
|
| 55 | - $output .= "<form class='p-5 m-5 border rounded'>"; |
|
| 56 | - |
|
| 57 | - // input example |
|
| 58 | - $output .= aui()->input(array( |
|
| 59 | - 'type' => 'text', |
|
| 60 | - 'id' => 'text-example', |
|
| 61 | - 'name' => 'text-example', |
|
| 62 | - 'placeholder' => 'text placeholder', |
|
| 63 | - 'title' => 'Text input example', |
|
| 64 | - 'value' => '', |
|
| 65 | - 'required' => false, |
|
| 66 | - 'help_text' => 'help text', |
|
| 67 | - 'label' => 'Text input example label' |
|
| 68 | - )); |
|
| 69 | - |
|
| 70 | - // input example |
|
| 71 | - $output .= aui()->input(array( |
|
| 72 | - 'type' => 'url', |
|
| 73 | - 'id' => 'text-example2', |
|
| 74 | - 'name' => 'text-example', |
|
| 75 | - 'placeholder' => 'url placeholder', |
|
| 76 | - 'title' => 'Text input example', |
|
| 77 | - 'value' => '', |
|
| 78 | - 'required' => false, |
|
| 79 | - 'help_text' => 'help text', |
|
| 80 | - 'label' => 'Text input example label' |
|
| 81 | - )); |
|
| 82 | - |
|
| 83 | - // checkbox example |
|
| 84 | - $output .= aui()->input(array( |
|
| 85 | - 'type' => 'checkbox', |
|
| 86 | - 'id' => 'checkbox-example', |
|
| 87 | - 'name' => 'checkbox-example', |
|
| 88 | - 'placeholder' => 'checkbox-example', |
|
| 89 | - 'title' => 'Checkbox example', |
|
| 90 | - 'value' => '1', |
|
| 91 | - 'checked' => true, |
|
| 92 | - 'required' => false, |
|
| 93 | - 'help_text' => 'help text', |
|
| 94 | - 'label' => 'Checkbox checked' |
|
| 95 | - )); |
|
| 96 | - |
|
| 97 | - // checkbox example |
|
| 98 | - $output .= aui()->input(array( |
|
| 99 | - 'type' => 'checkbox', |
|
| 100 | - 'id' => 'checkbox-example2', |
|
| 101 | - 'name' => 'checkbox-example2', |
|
| 102 | - 'placeholder' => 'checkbox-example', |
|
| 103 | - 'title' => 'Checkbox example', |
|
| 104 | - 'value' => '1', |
|
| 105 | - 'checked' => false, |
|
| 106 | - 'required' => false, |
|
| 107 | - 'help_text' => 'help text', |
|
| 108 | - 'label' => 'Checkbox un-checked' |
|
| 109 | - )); |
|
| 110 | - |
|
| 111 | - // switch example |
|
| 112 | - $output .= aui()->input(array( |
|
| 113 | - 'type' => 'checkbox', |
|
| 114 | - 'id' => 'switch-example', |
|
| 115 | - 'name' => 'switch-example', |
|
| 116 | - 'placeholder' => 'checkbox-example', |
|
| 117 | - 'title' => 'Switch example', |
|
| 118 | - 'value' => '1', |
|
| 119 | - 'checked' => true, |
|
| 120 | - 'switch' => true, |
|
| 121 | - 'required' => false, |
|
| 122 | - 'help_text' => 'help text', |
|
| 123 | - 'label' => 'Switch on' |
|
| 124 | - )); |
|
| 125 | - |
|
| 126 | - // switch example |
|
| 127 | - $output .= aui()->input(array( |
|
| 128 | - 'type' => 'checkbox', |
|
| 129 | - 'id' => 'switch-example2', |
|
| 130 | - 'name' => 'switch-example2', |
|
| 131 | - 'placeholder' => 'checkbox-example', |
|
| 132 | - 'title' => 'Switch example', |
|
| 133 | - 'value' => '1', |
|
| 134 | - 'checked' => false, |
|
| 135 | - 'switch' => true, |
|
| 136 | - 'required' => false, |
|
| 137 | - 'help_text' => 'help text', |
|
| 138 | - 'label' => 'Switch off' |
|
| 139 | - )); |
|
| 140 | - |
|
| 141 | - // close form |
|
| 142 | - $output .= "</form>"; |
|
| 143 | - |
|
| 144 | - return $output; |
|
| 145 | - } |
|
| 24 | + /** |
|
| 25 | + * AUI Plugin constructor. |
|
| 26 | + * |
|
| 27 | + * @since 1.0.0 |
|
| 28 | + */ |
|
| 29 | + public function __construct() { |
|
| 30 | + |
|
| 31 | + // load AUI |
|
| 32 | + require_once( dirname( __FILE__ ) . '/ayecode-ui-loader.php' ); |
|
| 33 | + |
|
| 34 | + // Maybe show example page |
|
| 35 | + add_action( 'template_redirect', array( $this,'maybe_show_examples' ) ); |
|
| 36 | + } |
|
| 37 | + |
|
| 38 | + public function maybe_show_examples(){ |
|
| 39 | + if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){ |
|
| 40 | + echo "<head>"; |
|
| 41 | + wp_head(); |
|
| 42 | + echo "</head>"; |
|
| 43 | + echo "<body>"; |
|
| 44 | + echo $this->get_examples(); |
|
| 45 | + echo "</body>"; |
|
| 46 | + exit; |
|
| 47 | + } |
|
| 48 | + } |
|
| 49 | + |
|
| 50 | + public function get_examples(){ |
|
| 51 | + $output = ''; |
|
| 52 | + |
|
| 53 | + |
|
| 54 | + // open form |
|
| 55 | + $output .= "<form class='p-5 m-5 border rounded'>"; |
|
| 56 | + |
|
| 57 | + // input example |
|
| 58 | + $output .= aui()->input(array( |
|
| 59 | + 'type' => 'text', |
|
| 60 | + 'id' => 'text-example', |
|
| 61 | + 'name' => 'text-example', |
|
| 62 | + 'placeholder' => 'text placeholder', |
|
| 63 | + 'title' => 'Text input example', |
|
| 64 | + 'value' => '', |
|
| 65 | + 'required' => false, |
|
| 66 | + 'help_text' => 'help text', |
|
| 67 | + 'label' => 'Text input example label' |
|
| 68 | + )); |
|
| 69 | + |
|
| 70 | + // input example |
|
| 71 | + $output .= aui()->input(array( |
|
| 72 | + 'type' => 'url', |
|
| 73 | + 'id' => 'text-example2', |
|
| 74 | + 'name' => 'text-example', |
|
| 75 | + 'placeholder' => 'url placeholder', |
|
| 76 | + 'title' => 'Text input example', |
|
| 77 | + 'value' => '', |
|
| 78 | + 'required' => false, |
|
| 79 | + 'help_text' => 'help text', |
|
| 80 | + 'label' => 'Text input example label' |
|
| 81 | + )); |
|
| 82 | + |
|
| 83 | + // checkbox example |
|
| 84 | + $output .= aui()->input(array( |
|
| 85 | + 'type' => 'checkbox', |
|
| 86 | + 'id' => 'checkbox-example', |
|
| 87 | + 'name' => 'checkbox-example', |
|
| 88 | + 'placeholder' => 'checkbox-example', |
|
| 89 | + 'title' => 'Checkbox example', |
|
| 90 | + 'value' => '1', |
|
| 91 | + 'checked' => true, |
|
| 92 | + 'required' => false, |
|
| 93 | + 'help_text' => 'help text', |
|
| 94 | + 'label' => 'Checkbox checked' |
|
| 95 | + )); |
|
| 96 | + |
|
| 97 | + // checkbox example |
|
| 98 | + $output .= aui()->input(array( |
|
| 99 | + 'type' => 'checkbox', |
|
| 100 | + 'id' => 'checkbox-example2', |
|
| 101 | + 'name' => 'checkbox-example2', |
|
| 102 | + 'placeholder' => 'checkbox-example', |
|
| 103 | + 'title' => 'Checkbox example', |
|
| 104 | + 'value' => '1', |
|
| 105 | + 'checked' => false, |
|
| 106 | + 'required' => false, |
|
| 107 | + 'help_text' => 'help text', |
|
| 108 | + 'label' => 'Checkbox un-checked' |
|
| 109 | + )); |
|
| 110 | + |
|
| 111 | + // switch example |
|
| 112 | + $output .= aui()->input(array( |
|
| 113 | + 'type' => 'checkbox', |
|
| 114 | + 'id' => 'switch-example', |
|
| 115 | + 'name' => 'switch-example', |
|
| 116 | + 'placeholder' => 'checkbox-example', |
|
| 117 | + 'title' => 'Switch example', |
|
| 118 | + 'value' => '1', |
|
| 119 | + 'checked' => true, |
|
| 120 | + 'switch' => true, |
|
| 121 | + 'required' => false, |
|
| 122 | + 'help_text' => 'help text', |
|
| 123 | + 'label' => 'Switch on' |
|
| 124 | + )); |
|
| 125 | + |
|
| 126 | + // switch example |
|
| 127 | + $output .= aui()->input(array( |
|
| 128 | + 'type' => 'checkbox', |
|
| 129 | + 'id' => 'switch-example2', |
|
| 130 | + 'name' => 'switch-example2', |
|
| 131 | + 'placeholder' => 'checkbox-example', |
|
| 132 | + 'title' => 'Switch example', |
|
| 133 | + 'value' => '1', |
|
| 134 | + 'checked' => false, |
|
| 135 | + 'switch' => true, |
|
| 136 | + 'required' => false, |
|
| 137 | + 'help_text' => 'help text', |
|
| 138 | + 'label' => 'Switch off' |
|
| 139 | + )); |
|
| 140 | + |
|
| 141 | + // close form |
|
| 142 | + $output .= "</form>"; |
|
| 143 | + |
|
| 144 | + return $output; |
|
| 145 | + } |
|
| 146 | 146 | } |
| 147 | 147 | new AyeCode_UI_Plugin(); |
| 148 | 148 | \ No newline at end of file |
@@ -11,121 +11,121 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | class GetPaid_Cache_Helper { |
| 13 | 13 | |
| 14 | - /** |
|
| 15 | - * Transients to delete on shutdown. |
|
| 16 | - * |
|
| 17 | - * @var array Array of transient keys. |
|
| 18 | - */ |
|
| 19 | - private static $delete_transients = array(); |
|
| 20 | - |
|
| 21 | - /** |
|
| 22 | - * Hook in methods. |
|
| 23 | - */ |
|
| 24 | - public static function init() { |
|
| 25 | - add_action( 'shutdown', array( __CLASS__, 'delete_transients_on_shutdown' ), 10 ); |
|
| 26 | - add_action( 'wp', array( __CLASS__, 'prevent_caching' ) ); |
|
| 27 | - } |
|
| 28 | - |
|
| 29 | - /** |
|
| 30 | - * Add a transient to delete on shutdown. |
|
| 31 | - * |
|
| 32 | - * @since 1.0.19 |
|
| 33 | - * @param string|array $keys Transient key or keys. |
|
| 34 | - */ |
|
| 35 | - public static function queue_delete_transient( $keys ) { |
|
| 36 | - self::$delete_transients = array_unique( array_merge( is_array( $keys ) ? $keys : array( $keys ), self::$delete_transients ) ); |
|
| 37 | - } |
|
| 38 | - |
|
| 39 | - /** |
|
| 40 | - * Transients that don't need to be cleaned right away can be deleted on shutdown to avoid repetition. |
|
| 41 | - * |
|
| 42 | - * @since 1.0.19 |
|
| 43 | - */ |
|
| 44 | - public static function delete_transients_on_shutdown() { |
|
| 45 | - if ( self::$delete_transients ) { |
|
| 46 | - foreach ( self::$delete_transients as $key ) { |
|
| 47 | - delete_transient( $key ); |
|
| 48 | - } |
|
| 49 | - self::$delete_transients = array(); |
|
| 50 | - } |
|
| 51 | - } |
|
| 52 | - |
|
| 53 | - /** |
|
| 54 | - * Get prefix for use with wp_cache_set. Allows all cache in a group to be invalidated at once. |
|
| 55 | - * |
|
| 56 | - * @param string $group Group of cache to get. |
|
| 57 | - * @return string |
|
| 58 | - */ |
|
| 59 | - public static function get_cache_prefix( $group ) { |
|
| 60 | - // Get cache key. |
|
| 61 | - $prefix = wp_cache_get( 'getpaid_' . $group . '_cache_prefix', $group ); |
|
| 62 | - |
|
| 63 | - if ( false === $prefix ) { |
|
| 64 | - $prefix = microtime(); |
|
| 65 | - wp_cache_set( 'getpaid_' . $group . '_cache_prefix', $prefix, $group ); |
|
| 66 | - } |
|
| 67 | - |
|
| 68 | - return 'getpaid_cache_' . $prefix . '_'; |
|
| 69 | - } |
|
| 70 | - |
|
| 71 | - /** |
|
| 72 | - * Invalidate cache group. |
|
| 73 | - * |
|
| 74 | - * @param string $group Group of cache to clear. |
|
| 75 | - * @since 1.0.19 |
|
| 76 | - */ |
|
| 77 | - public static function invalidate_cache_group( $group ) { |
|
| 78 | - wp_cache_set( 'getpaid_' . $group . '_cache_prefix', microtime(), $group ); |
|
| 79 | - } |
|
| 80 | - |
|
| 81 | - /** |
|
| 82 | - * Prevent caching on certain pages |
|
| 83 | - */ |
|
| 84 | - public static function prevent_caching() { |
|
| 85 | - if ( ! is_blog_installed() ) { |
|
| 86 | - return; |
|
| 87 | - } |
|
| 88 | - |
|
| 89 | - if ( wpinv_is_checkout() || wpinv_is_success_page() || wpinv_is_invoice_history_page() || wpinv_is_subscriptions_history_page() ) { |
|
| 90 | - self::set_nocache_constants(); |
|
| 91 | - nocache_headers(); |
|
| 92 | - } |
|
| 93 | - |
|
| 94 | - } |
|
| 95 | - |
|
| 96 | - /** |
|
| 97 | - * Get transient version. |
|
| 98 | - * |
|
| 99 | - * |
|
| 100 | - * @param string $group Name for the group of transients we need to invalidate. |
|
| 101 | - * @param boolean $refresh true to force a new version. |
|
| 102 | - * @return string transient version based on time(), 10 digits. |
|
| 103 | - */ |
|
| 104 | - public static function get_transient_version( $group, $refresh = false ) { |
|
| 105 | - $transient_name = $group . '-transient-version'; |
|
| 106 | - $transient_value = get_transient( $transient_name ); |
|
| 107 | - |
|
| 108 | - if ( false === $transient_value || true === $refresh ) { |
|
| 109 | - $transient_value = (string) time(); |
|
| 110 | - |
|
| 111 | - set_transient( $transient_name, $transient_value ); |
|
| 112 | - } |
|
| 113 | - |
|
| 114 | - return $transient_value; |
|
| 115 | - } |
|
| 116 | - |
|
| 117 | - /** |
|
| 118 | - * Set constants to prevent caching by some plugins. |
|
| 119 | - * |
|
| 120 | - * @param mixed $return Value to return. Previously hooked into a filter. |
|
| 121 | - * @return mixed |
|
| 122 | - */ |
|
| 123 | - public static function set_nocache_constants( $return = true ) { |
|
| 124 | - getpaid_maybe_define_constant( 'DONOTCACHEPAGE', true ); |
|
| 125 | - getpaid_maybe_define_constant( 'DONOTCACHEOBJECT', true ); |
|
| 126 | - getpaid_maybe_define_constant( 'DONOTCACHEDB', true ); |
|
| 127 | - return $return; |
|
| 128 | - } |
|
| 14 | + /** |
|
| 15 | + * Transients to delete on shutdown. |
|
| 16 | + * |
|
| 17 | + * @var array Array of transient keys. |
|
| 18 | + */ |
|
| 19 | + private static $delete_transients = array(); |
|
| 20 | + |
|
| 21 | + /** |
|
| 22 | + * Hook in methods. |
|
| 23 | + */ |
|
| 24 | + public static function init() { |
|
| 25 | + add_action( 'shutdown', array( __CLASS__, 'delete_transients_on_shutdown' ), 10 ); |
|
| 26 | + add_action( 'wp', array( __CLASS__, 'prevent_caching' ) ); |
|
| 27 | + } |
|
| 28 | + |
|
| 29 | + /** |
|
| 30 | + * Add a transient to delete on shutdown. |
|
| 31 | + * |
|
| 32 | + * @since 1.0.19 |
|
| 33 | + * @param string|array $keys Transient key or keys. |
|
| 34 | + */ |
|
| 35 | + public static function queue_delete_transient( $keys ) { |
|
| 36 | + self::$delete_transients = array_unique( array_merge( is_array( $keys ) ? $keys : array( $keys ), self::$delete_transients ) ); |
|
| 37 | + } |
|
| 38 | + |
|
| 39 | + /** |
|
| 40 | + * Transients that don't need to be cleaned right away can be deleted on shutdown to avoid repetition. |
|
| 41 | + * |
|
| 42 | + * @since 1.0.19 |
|
| 43 | + */ |
|
| 44 | + public static function delete_transients_on_shutdown() { |
|
| 45 | + if ( self::$delete_transients ) { |
|
| 46 | + foreach ( self::$delete_transients as $key ) { |
|
| 47 | + delete_transient( $key ); |
|
| 48 | + } |
|
| 49 | + self::$delete_transients = array(); |
|
| 50 | + } |
|
| 51 | + } |
|
| 52 | + |
|
| 53 | + /** |
|
| 54 | + * Get prefix for use with wp_cache_set. Allows all cache in a group to be invalidated at once. |
|
| 55 | + * |
|
| 56 | + * @param string $group Group of cache to get. |
|
| 57 | + * @return string |
|
| 58 | + */ |
|
| 59 | + public static function get_cache_prefix( $group ) { |
|
| 60 | + // Get cache key. |
|
| 61 | + $prefix = wp_cache_get( 'getpaid_' . $group . '_cache_prefix', $group ); |
|
| 62 | + |
|
| 63 | + if ( false === $prefix ) { |
|
| 64 | + $prefix = microtime(); |
|
| 65 | + wp_cache_set( 'getpaid_' . $group . '_cache_prefix', $prefix, $group ); |
|
| 66 | + } |
|
| 67 | + |
|
| 68 | + return 'getpaid_cache_' . $prefix . '_'; |
|
| 69 | + } |
|
| 70 | + |
|
| 71 | + /** |
|
| 72 | + * Invalidate cache group. |
|
| 73 | + * |
|
| 74 | + * @param string $group Group of cache to clear. |
|
| 75 | + * @since 1.0.19 |
|
| 76 | + */ |
|
| 77 | + public static function invalidate_cache_group( $group ) { |
|
| 78 | + wp_cache_set( 'getpaid_' . $group . '_cache_prefix', microtime(), $group ); |
|
| 79 | + } |
|
| 80 | + |
|
| 81 | + /** |
|
| 82 | + * Prevent caching on certain pages |
|
| 83 | + */ |
|
| 84 | + public static function prevent_caching() { |
|
| 85 | + if ( ! is_blog_installed() ) { |
|
| 86 | + return; |
|
| 87 | + } |
|
| 88 | + |
|
| 89 | + if ( wpinv_is_checkout() || wpinv_is_success_page() || wpinv_is_invoice_history_page() || wpinv_is_subscriptions_history_page() ) { |
|
| 90 | + self::set_nocache_constants(); |
|
| 91 | + nocache_headers(); |
|
| 92 | + } |
|
| 93 | + |
|
| 94 | + } |
|
| 95 | + |
|
| 96 | + /** |
|
| 97 | + * Get transient version. |
|
| 98 | + * |
|
| 99 | + * |
|
| 100 | + * @param string $group Name for the group of transients we need to invalidate. |
|
| 101 | + * @param boolean $refresh true to force a new version. |
|
| 102 | + * @return string transient version based on time(), 10 digits. |
|
| 103 | + */ |
|
| 104 | + public static function get_transient_version( $group, $refresh = false ) { |
|
| 105 | + $transient_name = $group . '-transient-version'; |
|
| 106 | + $transient_value = get_transient( $transient_name ); |
|
| 107 | + |
|
| 108 | + if ( false === $transient_value || true === $refresh ) { |
|
| 109 | + $transient_value = (string) time(); |
|
| 110 | + |
|
| 111 | + set_transient( $transient_name, $transient_value ); |
|
| 112 | + } |
|
| 113 | + |
|
| 114 | + return $transient_value; |
|
| 115 | + } |
|
| 116 | + |
|
| 117 | + /** |
|
| 118 | + * Set constants to prevent caching by some plugins. |
|
| 119 | + * |
|
| 120 | + * @param mixed $return Value to return. Previously hooked into a filter. |
|
| 121 | + * @return mixed |
|
| 122 | + */ |
|
| 123 | + public static function set_nocache_constants( $return = true ) { |
|
| 124 | + getpaid_maybe_define_constant( 'DONOTCACHEPAGE', true ); |
|
| 125 | + getpaid_maybe_define_constant( 'DONOTCACHEOBJECT', true ); |
|
| 126 | + getpaid_maybe_define_constant( 'DONOTCACHEDB', true ); |
|
| 127 | + return $return; |
|
| 128 | + } |
|
| 129 | 129 | |
| 130 | 130 | } |
| 131 | 131 | |
@@ -15,104 +15,104 @@ |
||
| 15 | 15 | */ |
| 16 | 16 | class GetPaid_Meta_Data implements JsonSerializable { |
| 17 | 17 | |
| 18 | - /** |
|
| 19 | - * Current data for metadata |
|
| 20 | - * |
|
| 21 | - * @since 1.0.19 |
|
| 22 | - * @var array |
|
| 23 | - */ |
|
| 24 | - protected $current_data; |
|
| 18 | + /** |
|
| 19 | + * Current data for metadata |
|
| 20 | + * |
|
| 21 | + * @since 1.0.19 |
|
| 22 | + * @var array |
|
| 23 | + */ |
|
| 24 | + protected $current_data; |
|
| 25 | 25 | |
| 26 | - /** |
|
| 27 | - * Metadata data |
|
| 28 | - * |
|
| 29 | - * @since 1.0.19 |
|
| 30 | - * @var array |
|
| 31 | - */ |
|
| 32 | - protected $data; |
|
| 26 | + /** |
|
| 27 | + * Metadata data |
|
| 28 | + * |
|
| 29 | + * @since 1.0.19 |
|
| 30 | + * @var array |
|
| 31 | + */ |
|
| 32 | + protected $data; |
|
| 33 | 33 | |
| 34 | - /** |
|
| 35 | - * Constructor. |
|
| 36 | - * |
|
| 37 | - * @param array $meta Data to wrap behind this function. |
|
| 38 | - */ |
|
| 39 | - public function __construct( $meta = array() ) { |
|
| 40 | - $this->current_data = $meta; |
|
| 41 | - $this->apply_changes(); |
|
| 42 | - } |
|
| 34 | + /** |
|
| 35 | + * Constructor. |
|
| 36 | + * |
|
| 37 | + * @param array $meta Data to wrap behind this function. |
|
| 38 | + */ |
|
| 39 | + public function __construct( $meta = array() ) { |
|
| 40 | + $this->current_data = $meta; |
|
| 41 | + $this->apply_changes(); |
|
| 42 | + } |
|
| 43 | 43 | |
| 44 | - /** |
|
| 45 | - * When converted to JSON. |
|
| 46 | - * |
|
| 47 | - * @return object|array |
|
| 48 | - */ |
|
| 49 | - public function jsonSerialize() { |
|
| 50 | - return $this->get_data(); |
|
| 51 | - } |
|
| 44 | + /** |
|
| 45 | + * When converted to JSON. |
|
| 46 | + * |
|
| 47 | + * @return object|array |
|
| 48 | + */ |
|
| 49 | + public function jsonSerialize() { |
|
| 50 | + return $this->get_data(); |
|
| 51 | + } |
|
| 52 | 52 | |
| 53 | - /** |
|
| 54 | - * Merge changes with data and clear. |
|
| 55 | - */ |
|
| 56 | - public function apply_changes() { |
|
| 57 | - $this->data = $this->current_data; |
|
| 58 | - } |
|
| 53 | + /** |
|
| 54 | + * Merge changes with data and clear. |
|
| 55 | + */ |
|
| 56 | + public function apply_changes() { |
|
| 57 | + $this->data = $this->current_data; |
|
| 58 | + } |
|
| 59 | 59 | |
| 60 | - /** |
|
| 61 | - * Creates or updates a property in the metadata object. |
|
| 62 | - * |
|
| 63 | - * @param string $key Key to set. |
|
| 64 | - * @param mixed $value Value to set. |
|
| 65 | - */ |
|
| 66 | - public function __set( $key, $value ) { |
|
| 67 | - $this->current_data[ $key ] = $value; |
|
| 68 | - } |
|
| 60 | + /** |
|
| 61 | + * Creates or updates a property in the metadata object. |
|
| 62 | + * |
|
| 63 | + * @param string $key Key to set. |
|
| 64 | + * @param mixed $value Value to set. |
|
| 65 | + */ |
|
| 66 | + public function __set( $key, $value ) { |
|
| 67 | + $this->current_data[ $key ] = $value; |
|
| 68 | + } |
|
| 69 | 69 | |
| 70 | - /** |
|
| 71 | - * Checks if a given key exists in our data. This is called internally |
|
| 72 | - * by `empty` and `isset`. |
|
| 73 | - * |
|
| 74 | - * @param string $key Key to check if set. |
|
| 75 | - * |
|
| 76 | - * @return bool |
|
| 77 | - */ |
|
| 78 | - public function __isset( $key ) { |
|
| 79 | - return array_key_exists( $key, $this->current_data ); |
|
| 80 | - } |
|
| 70 | + /** |
|
| 71 | + * Checks if a given key exists in our data. This is called internally |
|
| 72 | + * by `empty` and `isset`. |
|
| 73 | + * |
|
| 74 | + * @param string $key Key to check if set. |
|
| 75 | + * |
|
| 76 | + * @return bool |
|
| 77 | + */ |
|
| 78 | + public function __isset( $key ) { |
|
| 79 | + return array_key_exists( $key, $this->current_data ); |
|
| 80 | + } |
|
| 81 | 81 | |
| 82 | - /** |
|
| 83 | - * Returns the value of any property. |
|
| 84 | - * |
|
| 85 | - * @param string $key Key to get. |
|
| 86 | - * @return mixed Property value or NULL if it does not exists |
|
| 87 | - */ |
|
| 88 | - public function __get( $key ) { |
|
| 89 | - if ( array_key_exists( $key, $this->current_data ) ) { |
|
| 90 | - return $this->current_data[ $key ]; |
|
| 91 | - } |
|
| 92 | - return null; |
|
| 93 | - } |
|
| 82 | + /** |
|
| 83 | + * Returns the value of any property. |
|
| 84 | + * |
|
| 85 | + * @param string $key Key to get. |
|
| 86 | + * @return mixed Property value or NULL if it does not exists |
|
| 87 | + */ |
|
| 88 | + public function __get( $key ) { |
|
| 89 | + if ( array_key_exists( $key, $this->current_data ) ) { |
|
| 90 | + return $this->current_data[ $key ]; |
|
| 91 | + } |
|
| 92 | + return null; |
|
| 93 | + } |
|
| 94 | 94 | |
| 95 | - /** |
|
| 96 | - * Return data changes only. |
|
| 97 | - * |
|
| 98 | - * @return array |
|
| 99 | - */ |
|
| 100 | - public function get_changes() { |
|
| 101 | - $changes = array(); |
|
| 102 | - foreach ( $this->current_data as $id => $value ) { |
|
| 103 | - if ( ! array_key_exists( $id, $this->data ) || $value !== $this->data[ $id ] ) { |
|
| 104 | - $changes[ $id ] = $value; |
|
| 105 | - } |
|
| 106 | - } |
|
| 107 | - return $changes; |
|
| 108 | - } |
|
| 95 | + /** |
|
| 96 | + * Return data changes only. |
|
| 97 | + * |
|
| 98 | + * @return array |
|
| 99 | + */ |
|
| 100 | + public function get_changes() { |
|
| 101 | + $changes = array(); |
|
| 102 | + foreach ( $this->current_data as $id => $value ) { |
|
| 103 | + if ( ! array_key_exists( $id, $this->data ) || $value !== $this->data[ $id ] ) { |
|
| 104 | + $changes[ $id ] = $value; |
|
| 105 | + } |
|
| 106 | + } |
|
| 107 | + return $changes; |
|
| 108 | + } |
|
| 109 | 109 | |
| 110 | - /** |
|
| 111 | - * Return all data as an array. |
|
| 112 | - * |
|
| 113 | - * @return array |
|
| 114 | - */ |
|
| 115 | - public function get_data() { |
|
| 116 | - return $this->data; |
|
| 117 | - } |
|
| 110 | + /** |
|
| 111 | + * Return all data as an array. |
|
| 112 | + * |
|
| 113 | + * @return array |
|
| 114 | + */ |
|
| 115 | + public function get_data() { |
|
| 116 | + return $this->data; |
|
| 117 | + } |
|
| 118 | 118 | } |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | - exit; // Exit if accessed directly |
|
| 11 | + exit; // Exit if accessed directly |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | /** |
@@ -17,10 +17,10 @@ discard block |
||
| 17 | 17 | class GetPaid_Meta_Box_Item_Info { |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | - * Output the metabox. |
|
| 21 | - * |
|
| 22 | - * @param WP_Post $post |
|
| 23 | - */ |
|
| 20 | + * Output the metabox. |
|
| 21 | + * |
|
| 22 | + * @param WP_Post $post |
|
| 23 | + */ |
|
| 24 | 24 | public static function output( $post ) { |
| 25 | 25 | |
| 26 | 26 | // Prepare the item. |
@@ -97,9 +97,9 @@ discard block |
||
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | /** |
| 100 | - * Returns item type tolltip. |
|
| 101 | - * |
|
| 102 | - */ |
|
| 100 | + * Returns item type tolltip. |
|
| 101 | + * |
|
| 102 | + */ |
|
| 103 | 103 | public static function get_tooltip( $post ) { |
| 104 | 104 | |
| 105 | 105 | ob_start(); |