| @@ -11,9 +11,9 @@ | ||
| 11 | 11 | * ConvertKit Forms data stored locally from the API. |
| 12 | 12 | * |
| 13 | 13 | * @since 1.9.6 |
| 14 | 14 | */ |
| 15 | -class ConvertKit_Resource_Forms extends ConvertKit_Resource_V4 { | |
| 15 | +class ConvertKit_Resource_Forms extends ConvertKit_Resource { | |
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | 18 | * Holds the Settings Key that stores site wide ConvertKit settings |
| 19 | 19 | * |
| @@ -36,87 +36,25 @@ | ||
| 36 | 36 | * @param bool|string $context Context. |
| 37 | 37 | */ |
| 38 | 38 | public function __construct( $context = false ) { |
| 39 | 39 | |
| 40 | - // Initialize the API if the Access Token has been defined in the Plugin Settings. | |
| 40 | + // Initialize the API if the API Key and Secret have been defined in the Plugin Settings. | |
| 41 | 41 | $settings = new ConvertKit_Settings(); |
| 42 | - if ( $settings->has_access_and_refresh_token() ) { | |
| 43 | - $this->api = new ConvertKit_API_V4( | |
| 44 | - CONVERTKIT_OAUTH_CLIENT_ID, | |
| 45 | - CONVERTKIT_OAUTH_CLIENT_REDIRECT_URI, | |
| 46 | - $settings->get_access_token(), | |
| 47 | - $settings->get_refresh_token(), | |
| 42 | + if ( $settings->has_api_key_and_secret() ) { | |
| 43 | + $this->api = new ConvertKit_API( | |
| 44 | + $settings->get_api_key(), | |
| 45 | + $settings->get_api_secret(), | |
| 48 | 46 | $settings->debug_enabled(), |
| 49 | 47 | $context |
| 50 | 48 | ); |
| 51 | 49 | } |
| 52 | 50 | |
| 53 | - // Get last query time and existing resources. | |
| 54 | - $this->last_queried = get_option( $this->settings_name . '_last_queried' ); | |
| 55 | - $this->resources = get_option( $this->settings_name ); | |
| 51 | + // Call parent initialization function. | |
| 52 | + parent::init(); | |
| 56 | 53 | |
| 57 | 54 | } |
| 58 | 55 | |
| 59 | 56 | /** |
| 60 | - * Fetches resources (forms, landing pages or tags) from the API, storing them in the options table | |
| 61 | - * with a last queried timestamp. | |
| 62 | - * | |
| 63 | - * If the refresh results in a 401, removes the access and refresh tokens from the settings. | |
| 64 | - * | |
| 65 | - * @since 3.1.2 | |
| 66 | - * | |
| 67 | - * @return WP_Error|array | |
| 68 | - */ | |
| 69 | - public function refresh() { | |
| 70 | - | |
| 71 | - // Call parent refresh method. | |
| 72 | - $result = parent::refresh(); | |
| 73 | - | |
| 74 | - // If an error occurred, maybe delete credentials from the Plugin's settings | |
| 75 | - // if the error is a 401 unauthorized. | |
| 76 | - if ( is_wp_error( $result ) ) { | |
| 77 | - convertkit_maybe_delete_credentials( $result, CONVERTKIT_OAUTH_CLIENT_ID ); | |
| 78 | - } | |
| 79 | - | |
| 80 | - return $result; | |
| 81 | - | |
| 82 | - } | |
| 83 | - | |
| 84 | - /** | |
| 85 | - * Returns all inline forms based on the sort order. | |
| 86 | - * | |
| 87 | - * @since 2.7.3 | |
| 88 | - * | |
| 89 | - * @return bool|array | |
| 90 | - */ | |
| 91 | - public function get_inline() { | |
| 92 | - | |
| 93 | - // If the ConvertKit WordPress Libraries are < 1.3.6 (e.g. loaded by an outdated | |
| 94 | - // addon), or a WordPress site updates this Plugin before other ConvertKit Plugins, | |
| 95 | - // get_by() won't be available and will cause an E_ERROR, crashing the site. | |
| 96 | - // @see https://wordpress.org/support/topic/error-1795/. | |
| 97 | - if ( ! method_exists( $this, 'get_by' ) ) { // @phpstan-ignore-line Older WordPress Libraries won't have this function. | |
| 98 | - return false; | |
| 99 | - } | |
| 100 | - | |
| 101 | - return $this->get_by( 'format', array( 'inline' ) ); | |
| 102 | - | |
| 103 | - } | |
| 104 | - | |
| 105 | - /** | |
| 106 | - * Returns whether any inline forms exist in the options table. | |
| 107 | - * | |
| 108 | - * @since 2.7.3 | |
| 109 | - * | |
| 110 | - * @return bool | |
| 111 | - */ | |
| 112 | - public function inline_exist() { | |
| 113 | - | |
| 114 | - return (bool) $this->get_inline(); | |
| 115 | - | |
| 116 | - } | |
| 117 | - | |
| 118 | - /** | |
| 119 | 57 | * Returns all non-inline forms based on the sort order. |
| 120 | 58 | * |
| 121 | 59 | * @since 2.2.4 |
| 122 | 60 | * |
| @@ -127,9 +65,9 @@ | ||
| 127 | 65 | // If the ConvertKit WordPress Libraries are < 1.3.6 (e.g. loaded by an outdated |
| 128 | 66 | // addon), or a WordPress site updates this Plugin before other ConvertKit Plugins, |
| 129 | 67 | // get_by() won't be available and will cause an E_ERROR, crashing the site. |
| 130 | 68 | // @see https://wordpress.org/support/topic/error-1795/. |
| 131 | - if ( ! method_exists( $this, 'get_by' ) ) { // @phpstan-ignore-line Older WordPress Libraries won't have this function. | |
| 69 | + if ( ! method_exists( $this, 'get_by' ) ) { | |
| 132 | 70 | return false; |
| 133 | 71 | } |
| 134 | 72 | |
| 135 | 73 | return $this->get_by( 'format', array( 'modal', 'slide in', 'sticky bar' ) ); |
| @@ -135,8 +73,9 @@ | ||
| 135 | 73 | return $this->get_by( 'format', array( 'modal', 'slide in', 'sticky bar' ) ); |
| 136 | 74 | |
| 137 | 75 | } |
| 138 | 76 | |
| 77 | + | |
| 139 | 78 | /** |
| 140 | 79 | * Returns whether any non-inline forms exist in the options table. |
| 141 | 80 | * |
| 142 | 81 | * @since 2.2.4 |
| @@ -153,70 +92,8 @@ | ||
| 153 | 92 | |
| 154 | 93 | } |
| 155 | 94 | |
| 156 | 95 | /** |
| 157 | - * Returns all non-legacy forms (any v4 format: inline, modal, slide in | |
| 158 | - * or sticky bar) based on the sort order. Legacy forms lack a `format` | |
| 159 | - * key and are therefore excluded. | |
| 160 | - * | |
| 161 | - * @since 3.3.7 | |
| 162 | - * | |
| 163 | - * @return bool|array | |
| 164 | - */ | |
| 165 | - public function get_non_legacy() { | |
| 166 | - | |
| 167 | - // If the ConvertKit WordPress Libraries are < 1.3.6 (e.g. loaded by an outdated | |
| 168 | - // addon), or a WordPress site updates this Plugin before other ConvertKit Plugins, | |
| 169 | - // get_by() won't be available and will cause an E_ERROR, crashing the site. | |
| 170 | - // @see https://wordpress.org/support/topic/error-1795/. | |
| 171 | - if ( ! method_exists( $this, 'get_by' ) ) { // @phpstan-ignore-line Older WordPress Libraries won't have this function. | |
| 172 | - return false; | |
| 173 | - } | |
| 174 | - | |
| 175 | - return $this->get_by( 'format', array( 'inline', 'modal', 'slide in', 'sticky bar' ) ); | |
| 176 | - | |
| 177 | - } | |
| 178 | - | |
| 179 | - /** | |
| 180 | - * Returns whether any non-legacy forms exist in the options table. | |
| 181 | - * | |
| 182 | - * @since 3.3.7 | |
| 183 | - * | |
| 184 | - * @return bool | |
| 185 | - */ | |
| 186 | - public function non_legacy_exist() { | |
| 187 | - | |
| 188 | - return (bool) $this->get_non_legacy(); | |
| 189 | - | |
| 190 | - } | |
| 191 | - | |
| 192 | - /** | |
| 193 | - * Determines if the given Form ID is a legacy Form or Landing Page. | |
| 194 | - * | |
| 195 | - * @since 2.5.0 | |
| 196 | - * | |
| 197 | - * @param int $id Form or Landing Page ID. | |
| 198 | - */ | |
| 199 | - public function is_legacy( $id ) { | |
| 200 | - | |
| 201 | - // Get Form. | |
| 202 | - $form = $this->get_by_id( (int) $id ); | |
| 203 | - | |
| 204 | - // Return false if no Form exists. | |
| 205 | - if ( ! $form ) { | |
| 206 | - return false; | |
| 207 | - } | |
| 208 | - | |
| 209 | - // If the `format` key exists, this is not a legacy Form. | |
| 210 | - if ( array_key_exists( 'format', $form ) ) { | |
| 211 | - return false; | |
| 212 | - } | |
| 213 | - | |
| 214 | - return true; | |
| 215 | - | |
| 216 | - } | |
| 217 | - | |
| 218 | - /** | |
| 219 | 96 | * Returns a <select> field populated with all forms, based on the given parameters. |
| 220 | 97 | * |
| 221 | 98 | * @since 2.3.9 |
| 222 | 99 | * |
| @@ -231,9 +108,9 @@ | ||
| 231 | 108 | */ |
| 232 | 109 | public function get_select_field_all( $name, $id, $css_classes, $selected_option, $prepend_options = false, $attributes = false, $description = false ) { |
| 233 | 110 | |
| 234 | 111 | return $this->get_select_field( |
| 235 | - $this->get_forms_for_select_field( $selected_option ), | |
| 112 | + $this->get(), | |
| 236 | 113 | $name, |
| 237 | 114 | $id, |
| 238 | 115 | $css_classes, |
| 239 | 116 | $selected_option, |
| @@ -244,11 +121,11 @@ | ||
| 244 | 121 | |
| 245 | 122 | } |
| 246 | 123 | |
| 247 | 124 | /** |
| 248 | - * Outputs a <select> field populated with all forms, based on the given parameters. | |
| 125 | + * Returns a <select> field populated with all non-inline forms, based on the given parameters. | |
| 249 | 126 | * |
| 250 | - * @since 2.8.5 | |
| 127 | + * @since 2.3.9 | |
| 251 | 128 | * |
| 252 | 129 | * @param string $name Name. |
| 253 | 130 | * @param string $id ID. |
| 254 | 131 | * @param bool|array $css_classes <select> CSS class(es). |
| @@ -255,13 +132,14 @@ | ||
| 255 | 132 | * @param string $selected_option <option> value to mark as selected. |
| 256 | 133 | * @param bool|array $prepend_options <option> elements to prepend before resources. |
| 257 | 134 | * @param bool|array $attributes <select> attributes. |
| 258 | 135 | * @param bool|string|array $description Description. |
| 136 | + * @return string HTML Select Field | |
| 259 | 137 | */ |
| 260 | - public function output_select_field_all( $name, $id, $css_classes, $selected_option, $prepend_options = false, $attributes = false, $description = false ) { | |
| 138 | + public function get_select_field_non_inline( $name, $id, $css_classes, $selected_option, $prepend_options = false, $attributes = false, $description = false ) { | |
| 261 | 139 | |
| 262 | - $this->output_select_field( | |
| 263 | - $this->get_forms_for_select_field( $selected_option ), | |
| 140 | + return $this->get_select_field( | |
| 141 | + $this->get_non_inline(), | |
| 264 | 142 | $name, |
| 265 | 143 | $id, |
| 266 | 144 | $css_classes, |
| 267 | 145 | $selected_option, |
| @@ -272,98 +150,8 @@ | ||
| 272 | 150 | |
| 273 | 151 | } |
| 274 | 152 | |
| 275 | 153 | /** |
| 276 | - * Returns the array of forms to display in an "all forms" dropdown: every | |
| 277 | - * non-legacy form, plus the currently-selected legacy form (if any) so | |
| 278 | - * existing saved legacy assignments continue to render as selected in the | |
| 279 | - * UI without exposing other legacy forms as new selection options. | |
| 280 | - * | |
| 281 | - * @since 3.3.7 | |
| 282 | - * | |
| 283 | - * @param string|int $selected_option Currently-selected form ID. | |
| 284 | - * @return array | |
| 285 | - */ | |
| 286 | - private function get_forms_for_select_field( $selected_option ) { | |
| 287 | - | |
| 288 | - $forms = $this->get_non_legacy(); | |
| 289 | - if ( ! is_array( $forms ) ) { | |
| 290 | - $forms = array(); | |
| 291 | - } | |
| 292 | - | |
| 293 | - // If the currently-selected form is a legacy form, append it so the | |
| 294 | - // dropdown shows the saved value as selected. | |
| 295 | - if ( $selected_option && $this->is_legacy( $selected_option ) ) { | |
| 296 | - $legacy_form = $this->get_by_id( (int) $selected_option ); | |
| 297 | - if ( $legacy_form ) { | |
| 298 | - $forms[] = $legacy_form; | |
| 299 | - } | |
| 300 | - } | |
| 301 | - | |
| 302 | - return $forms; | |
| 303 | - | |
| 304 | - } | |
| 305 | - | |
| 306 | - /** | |
| 307 | - * Returns a <select> field populated with all non-inline forms, based on the given parameters. | |
| 308 | - * | |
| 309 | - * @since 2.3.9 | |
| 310 | - * | |
| 311 | - * @param string $name Name. | |
| 312 | - * @param string $id ID. | |
| 313 | - * @param bool|array $css_classes <select> CSS class(es). | |
| 314 | - * @param array $selected_options <option> values to mark as selected. | |
| 315 | - * @param bool|array $prepend_options <option> elements to prepend before resources. | |
| 316 | - * @param bool|array $attributes <select> attributes. | |
| 317 | - * @param bool|string|array $description Description. | |
| 318 | - * @return string HTML Select Field | |
| 319 | - */ | |
| 320 | - public function get_select_field_non_inline( $name, $id, $css_classes, $selected_options, $prepend_options = false, $attributes = false, $description = false ) { | |
| 321 | - | |
| 322 | - return $this->get_multi_select_field( | |
| 323 | - $this->get_non_inline(), | |
| 324 | - $name, | |
| 325 | - $id, | |
| 326 | - $css_classes, | |
| 327 | - $selected_options, | |
| 328 | - $prepend_options, | |
| 329 | - $attributes, | |
| 330 | - $description | |
| 331 | - ); | |
| 332 | - | |
| 333 | - } | |
| 334 | - | |
| 335 | - /** | |
| 336 | - * Outputs a <select> field populated with all non-inline forms, based on the given parameters. | |
| 337 | - * | |
| 338 | - * @since 2.3.9 | |
| 339 | - * | |
| 340 | - * @param string $name Name. | |
| 341 | - * @param string $id ID. | |
| 342 | - * @param bool|array $css_classes <select> CSS class(es). | |
| 343 | - * @param array $selected_options <option> values to mark as selected. | |
| 344 | - * @param bool|array $prepend_options <option> elements to prepend before resources. | |
| 345 | - * @param bool|array $attributes <select> attributes. | |
| 346 | - * @param bool|string|array $description Description. | |
| 347 | - */ | |
| 348 | - public function output_select_field_non_inline( $name, $id, $css_classes, $selected_options, $prepend_options = false, $attributes = false, $description = false ) { | |
| 349 | - | |
| 350 | - echo wp_kses( | |
| 351 | - $this->get_select_field_non_inline( | |
| 352 | - $name, | |
| 353 | - $id, | |
| 354 | - $css_classes, | |
| 355 | - $selected_options, | |
| 356 | - $prepend_options, | |
| 357 | - $attributes, | |
| 358 | - $description | |
| 359 | - ), | |
| 360 | - convertkit_kses_allowed_html() | |
| 361 | - ); | |
| 362 | - | |
| 363 | - } | |
| 364 | - | |
| 365 | - /** | |
| 366 | 154 | * Returns a <select> field populated with the resources, based on the given parameters. |
| 367 | 155 | * |
| 368 | 156 | * @since 2.3.9 |
| 369 | 157 | * |
| @@ -444,123 +232,8 @@ | ||
| 444 | 232 | |
| 445 | 233 | } |
| 446 | 234 | |
| 447 | 235 | /** |
| 448 | - * Outputs a <select> field populated with the resources, based on the given parameters. | |
| 449 | - * | |
| 450 | - * @since 2.8.5 | |
| 451 | - * | |
| 452 | - * @param array $forms Forms. | |
| 453 | - * @param string $name Name. | |
| 454 | - * @param string $id ID. | |
| 455 | - * @param bool|array $css_classes <select> CSS class(es). | |
| 456 | - * @param string $selected_option <option> value to mark as selected. | |
| 457 | - * @param bool|array $prepend_options <option> elements to prepend before resources. | |
| 458 | - * @param bool|array $attributes <select> attributes. | |
| 459 | - * @param bool|string|array $description Description. | |
| 460 | - */ | |
| 461 | - private function output_select_field( $forms, $name, $id, $css_classes, $selected_option, $prepend_options = false, $attributes = false, $description = false ) { | |
| 462 | - | |
| 463 | - echo wp_kses( | |
| 464 | - $this->get_select_field( | |
| 465 | - $forms, | |
| 466 | - $name, | |
| 467 | - $id, | |
| 468 | - $css_classes, | |
| 469 | - $selected_option, | |
| 470 | - $prepend_options, | |
| 471 | - $attributes, | |
| 472 | - $description | |
| 473 | - ), | |
| 474 | - convertkit_kses_allowed_html() | |
| 475 | - ); | |
| 476 | - | |
| 477 | - } | |
| 478 | - | |
| 479 | - /** | |
| 480 | - * Returns a <select> field populated with the resources, based on the given parameters, | |
| 481 | - * that supports multiple selection. | |
| 482 | - * | |
| 483 | - * @since 2.6.9 | |
| 484 | - * | |
| 485 | - * @param array $forms Forms. | |
| 486 | - * @param string $name Name. | |
| 487 | - * @param string $id ID. | |
| 488 | - * @param bool|array $css_classes <select> CSS class(es). | |
| 489 | - * @param array $selected_options <option> values to mark as selected. | |
| 490 | - * @param bool|array $prepend_options <option> elements to prepend before resources. | |
| 491 | - * @param bool|array $attributes <select> attributes. | |
| 492 | - * @param bool|string|array $description Description. | |
| 493 | - * @return string HTML Select Field | |
| 494 | - */ | |
| 495 | - private function get_multi_select_field( $forms, $name, $id, $css_classes, $selected_options = array(), $prepend_options = false, $attributes = false, $description = false ) { | |
| 496 | - | |
| 497 | - $html = sprintf( | |
| 498 | - '<select name="%s[]" id="%s" class="%s" multiple', | |
| 499 | - esc_attr( $name ), | |
| 500 | - esc_attr( $id ), | |
| 501 | - esc_attr( ( is_array( $css_classes ) ? implode( ' ', $css_classes ) : '' ) ) | |
| 502 | - ); | |
| 503 | - | |
| 504 | - // Append any attributes. | |
| 505 | - if ( $attributes ) { | |
| 506 | - foreach ( $attributes as $key => $value ) { | |
| 507 | - $html .= sprintf( | |
| 508 | - ' %s="%s"', | |
| 509 | - esc_attr( $key ), | |
| 510 | - esc_attr( $value ) | |
| 511 | - ); | |
| 512 | - } | |
| 513 | - } | |
| 514 | - | |
| 515 | - // Close select tag. | |
| 516 | - $html .= '>'; | |
| 517 | - | |
| 518 | - // If any prepended options exist, add them now. | |
| 519 | - if ( $prepend_options ) { | |
| 520 | - foreach ( $prepend_options as $value => $label ) { | |
| 521 | - $html .= sprintf( | |
| 522 | - '<option value="%s" data-preserve-on-refresh="1"%s>%s</option>', | |
| 523 | - esc_attr( $value ), | |
| 524 | - ( in_array( $value, $selected_options, true ) ? ' selected' : '' ), | |
| 525 | - esc_attr( $label ) | |
| 526 | - ); | |
| 527 | - } | |
| 528 | - } | |
| 529 | - | |
| 530 | - // Iterate through resources, if they exist, building <option> elements. | |
| 531 | - if ( $forms ) { | |
| 532 | - foreach ( $forms as $form ) { | |
| 533 | - // Legacy forms don't include a `format` key, so define them as inline. | |
| 534 | - $html .= sprintf( | |
| 535 | - '<option value="%s"%s>%s [%s]</option>', | |
| 536 | - esc_attr( $form['id'] ), | |
| 537 | - ( in_array( $form['id'], $selected_options, true ) ? ' selected' : '' ), | |
| 538 | - esc_attr( $form['name'] ), | |
| 539 | - ( ! empty( $form['format'] ) ? esc_attr( $form['format'] ) : 'inline' ) | |
| 540 | - ); | |
| 541 | - } | |
| 542 | - } | |
| 543 | - | |
| 544 | - // Close select. | |
| 545 | - $html .= '</select>'; | |
| 546 | - | |
| 547 | - // If no description is provided, return the select field now. | |
| 548 | - if ( ! $description ) { | |
| 549 | - return $html; | |
| 550 | - } | |
| 551 | - | |
| 552 | - // Append description before returning field. | |
| 553 | - if ( ! is_array( $description ) ) { | |
| 554 | - return $html . '<p class="description">' . $description . '</p>'; | |
| 555 | - } | |
| 556 | - | |
| 557 | - // Return description lines in a paragraph, using breaklines for each description entry in the array. | |
| 558 | - return $html . '<p class="description">' . implode( '<br />', $description ) . '</p>'; | |
| 559 | - | |
| 560 | - } | |
| 561 | - | |
| 562 | - /** | |
| 563 | 236 | * Returns the HTML/JS markup for the given Form ID. |
| 564 | 237 | * |
| 565 | 238 | * Legacy Forms will return HTML. |
| 566 | 239 | * Current Forms will return a <script> embed string. |
| @@ -566,13 +239,12 @@ | ||
| 566 | 239 | * Current Forms will return a <script> embed string. |
| 567 | 240 | * |
| 568 | 241 | * @since 1.9.6 |
| 569 | 242 | * |
| 570 | - * @param int $id Form ID. | |
| 571 | - * @param int $post_id Post ID that requested the Form. | |
| 243 | + * @param int $id Form ID. | |
| 572 | 244 | * @return WP_Error|string |
| 573 | 245 | */ |
| 574 | - public function get_html( $id, $post_id = 0 ) { | |
| 246 | + public function get_html( $id ) { | |
| 575 | 247 | |
| 576 | 248 | // Cast ID to integer. |
| 577 | 249 | $id = absint( $id ); |
| 578 | 250 | |
| @@ -586,43 +258,33 @@ | ||
| 586 | 258 | return new WP_Error( |
| 587 | 259 | 'convertkit_resource_forms_get_html', |
| 588 | 260 | sprintf( |
| 589 | 261 | /* translators: ConvertKit Form ID */ |
| 590 | - __( 'Kit Form ID %s does not exist on Kit.', 'convertkit' ), | |
| 262 | + __( 'ConvertKit Form ID %s does not exist on ConvertKit.', 'convertkit' ), | |
| 591 | 263 | $id |
| 592 | - ), | |
| 593 | - 404 | |
| 264 | + ) | |
| 594 | 265 | ); |
| 595 | 266 | } |
| 596 | 267 | |
| 597 | - // Initialize Settings. | |
| 598 | - $settings = new ConvertKit_Settings(); | |
| 599 | - | |
| 600 | 268 | // If no uid is present in the Form API data, this is a legacy form that's served by directly fetching the HTML |
| 601 | - // from forms.kit.com. | |
| 269 | + // from forms.convertkit.com. | |
| 602 | 270 | if ( ! isset( $this->resources[ $id ]['uid'] ) ) { |
| 603 | - // Bail if no Access Token is specified in the Plugin Settings. | |
| 604 | - if ( ! $settings->has_access_token() ) { | |
| 271 | + // Initialize Settings. | |
| 272 | + $settings = new ConvertKit_Settings(); | |
| 273 | + | |
| 274 | + // Bail if no API Key is specified in the Plugin Settings. | |
| 275 | + if ( ! $settings->has_api_key() ) { | |
| 605 | 276 | return new WP_Error( |
| 606 | 277 | 'convertkit_resource_forms_get_html', |
| 607 | - __( 'Kit Legacy Form could not be fetched as no Access Token specified in Plugin Settings', 'convertkit' ) | |
| 278 | + __( 'ConvertKit Legacy Form could not be fetched as no API Key specified in Plugin Settings', 'convertkit' ) | |
| 608 | 279 | ); |
| 609 | 280 | } |
| 610 | 281 | |
| 611 | 282 | // Initialize the API. |
| 612 | - $api = new ConvertKit_API_V4( | |
| 613 | - CONVERTKIT_OAUTH_CLIENT_ID, | |
| 614 | - CONVERTKIT_OAUTH_CLIENT_REDIRECT_URI, | |
| 615 | - $settings->get_access_token(), | |
| 616 | - $settings->get_refresh_token(), | |
| 617 | - $settings->debug_enabled(), | |
| 618 | - 'output_form' | |
| 619 | - ); | |
| 283 | + $api = new ConvertKit_API( $settings->get_api_key(), $settings->get_api_secret(), $settings->debug_enabled(), 'output_form' ); | |
| 620 | 284 | |
| 621 | 285 | // Return Legacy Form HTML. |
| 622 | - // We now call get_html() with the `embed_url` property, instead of get_form_html() with the `id` property, | |
| 623 | - // because `embed_url` includes the API Key. | |
| 624 | - return $api->get_html( $this->resources[ $id ]['embed_url'] ); | |
| 286 | + return $api->get_form_html( $id ); | |
| 625 | 287 | } |
| 626 | 288 | |
| 627 | 289 | // If the form's format is not an inline form, add the inline script before the closing </body> tag. |
| 628 | 290 | // This prevents a modal form's overlay being constrained by the WordPress Theme's styles, |
| @@ -630,26 +292,16 @@ | ||
| 630 | 292 | // displaying twice. |
| 631 | 293 | if ( $this->resources[ $id ]['format'] !== 'inline' ) { |
| 632 | 294 | add_filter( |
| 633 | 295 | 'convertkit_output_scripts_footer', |
| 634 | - function ( $scripts ) use ( $id, $post_id, $settings ) { | |
| 296 | + function ( $scripts ) use ( $id ) { | |
| 635 | 297 | |
| 636 | - // Build script. | |
| 637 | - $script = array( | |
| 638 | - 'async' => true, | |
| 639 | - 'data-uid' => $this->resources[ $id ]['uid'], | |
| 640 | - 'src' => $this->resources[ $id ]['embed_js'], | |
| 641 | - 'data-kit-limit-per-session' => $settings->non_inline_form_limit_per_session() ? '1' : '0', | |
| 298 | + $scripts[] = array( | |
| 299 | + 'async' => true, | |
| 300 | + 'data-uid' => $this->resources[ $id ]['uid'], | |
| 301 | + 'src' => $this->resources[ $id ]['embed_js'], | |
| 642 | 302 | ); |
| 643 | 303 | |
| 644 | - // If debugging is enabled, add the post ID to the script. | |
| 645 | - if ( $settings->debug_enabled() ) { | |
| 646 | - $script['data-kit-source-post-id'] = $post_id; | |
| 647 | - } | |
| 648 | - | |
| 649 | - // Add the script to the scripts array. | |
| 650 | - $scripts[] = $script; | |
| 651 | - | |
| 652 | 304 | return $scripts; |
| 653 | 305 | |
| 654 | 306 | } |
| 655 | 307 | ); |
| @@ -671,55 +323,9 @@ | ||
| 671 | 323 | return ''; |
| 672 | 324 | } |
| 673 | 325 | |
| 674 | 326 | // If here, return Form <script> embed now, as we want the inline form to display at this specific point of the content. |
| 675 | - | |
| 676 | - // Define script key-value pairs. | |
| 677 | - $script = array( | |
| 678 | - 'async' => true, | |
| 679 | - 'data-uid' => $this->resources[ $id ]['uid'], | |
| 680 | - 'src' => $this->resources[ $id ]['embed_js'], | |
| 681 | - ); | |
| 682 | - | |
| 683 | - // If debugging is enabled, add the post ID to the script. | |
| 684 | - if ( $settings->debug_enabled() ) { | |
| 685 | - $script['data-kit-source-post-id'] = $post_id; | |
| 686 | - } | |
| 687 | - | |
| 688 | - /** | |
| 689 | - * Filter the form <script> key/value pairs immediately before the script is output. | |
| 690 | - * | |
| 691 | - * @since 2.4.5 | |
| 692 | - * | |
| 693 | - * @param array $script Form script key/value pairs to output as <script> tag. | |
| 694 | - */ | |
| 695 | - $script = apply_filters( 'convertkit_resource_forms_output_script', $script ); | |
| 696 | - | |
| 697 | - // Build script output. | |
| 698 | - $output = '<script'; | |
| 699 | - foreach ( $script as $attribute => $value ) { | |
| 700 | - // If the value is true, just output the attribute. | |
| 701 | - if ( $value === true ) { | |
| 702 | - $output .= ' ' . esc_attr( $attribute ); | |
| 703 | - continue; | |
| 704 | - } | |
| 705 | - | |
| 706 | - // Sanitize attribute and value. | |
| 707 | - $attribute = esc_attr( $attribute ); | |
| 708 | - $value = ( $attribute === 'src' ? esc_url( $value ) : esc_attr( $value ) ); | |
| 709 | - | |
| 710 | - // Output the attribute and value. | |
| 711 | - $output .= ' ' . $attribute; | |
| 712 | - | |
| 713 | - // Output the value, if it's not a blank string. | |
| 714 | - if ( strlen( $value ) > 0 ) { | |
| 715 | - $output .= '="' . $value . '"'; | |
| 716 | - } | |
| 717 | - } | |
| 718 | - $output .= '></script>'; | |
| 719 | - | |
| 720 | - // Return script output. | |
| 721 | - return $output; | |
| 327 | + return '<script async data-uid="' . esc_attr( $this->resources[ $id ]['uid'] ) . '" src="' . esc_url( $this->resources[ $id ]['embed_js'] ) . '"></script>'; | |
| 722 | 328 | |
| 723 | 329 | } |
| 724 | 330 | |
| 725 | 331 | } |