Changeset 2726219
- Timestamp:
- 05/18/2022 03:58:42 PM (4 years ago)
- Location:
- impact-partnership-cloud
- Files:
-
- 8 edited
- 1 copied
-
tags/1.0.16 (copied) (copied from impact-partnership-cloud/trunk)
-
tags/1.0.16/changelog.txt (modified) (1 diff)
-
tags/1.0.16/impact.php (modified) (5 diffs)
-
tags/1.0.16/includes/impact_settings_page.php (modified) (1 diff)
-
tags/1.0.16/readme.txt (modified) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/impact.php (modified) (5 diffs)
-
trunk/includes/impact_settings_page.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
impact-partnership-cloud/tags/1.0.16/changelog.txt
r2695629 r2726219 1 1 *** Impact Partnership Cloud *** 2 3 2022-05-16 - version 1.0.16 4 * Tweak - made utt script field required 2 5 3 6 2022-03-09 - version 1.0.15 -
impact-partnership-cloud/tags/1.0.16/impact.php
r2695629 r2726219 3 3 * Plugin Name: Impact: Partnership Cloud 4 4 * Description: Partnership cloud app plugin for Woocomerce that tracks every conversion made trough one of Impact's referral links. 5 * Version: 1.0.1 55 * Version: 1.0.16 6 6 * Requires at least: 5.0 7 7 * Requires PHP: 7.0 … … 31 31 * @var string 32 32 */ 33 private $version = '1.0.1 5';33 private $version = '1.0.16'; 34 34 /** 35 35 * Singleton instance of the plugin … … 324 324 $sanitary_values[ $key ] = $input[ $key ]; 325 325 } 326 if ( empty( $value ) && 'custom_script_5' !== $key) {326 if ( empty( $value ) ) { 327 327 $e_value = $key; 328 328 switch ( $key ) { … … 339 339 $e_value = 'Event Type ID'; 340 340 break; 341 case 'custom_script_5': 342 $e_value = 'UTT Script'; 343 break; 341 344 } 342 345 … … 428 431 $value = get_option( 'impact_settings_option_name' ); 429 432 printf( 430 '<textarea class="large-text" rows="5" name="impact_settings_option_name[custom_script_5]" id="custom_script_5" >%s</textarea><small class="form-text text-muted">433 '<textarea class="large-text" rows="5" name="impact_settings_option_name[custom_script_5]" id="custom_script_5" required>%s</textarea><small class="form-text text-muted"> 431 434 You can find this in your Impact Account > Settings > Tracking > General > Universal Tracking Tag field 432 435 </small>', -
impact-partnership-cloud/tags/1.0.16/includes/impact_settings_page.php
r2603254 r2726219 38 38 </div> 39 39 40 <?php if ( 'true' === $user_exist ) : ?>40 <?php if ( 'true' === $user_exist && !get_settings_errors()) : ?> 41 41 <div class="modal mt-5" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true" data-backdrop="static"> 42 42 <div class="modal-dialog" role="document"> -
impact-partnership-cloud/tags/1.0.16/readme.txt
r2695629 r2726219 4 4 Tested up to: 5.9 5 5 Requires PHP: 7.0 6 Stable tag: 1.0.1 56 Stable tag: 1.0.16 7 7 License: GPLv2 or later License 8 8 URI: http://www.gnu.org/licenses/gpl-2.0.html -
impact-partnership-cloud/trunk/changelog.txt
r2695629 r2726219 1 1 *** Impact Partnership Cloud *** 2 3 2022-05-16 - version 1.0.16 4 * Tweak - made utt script field required 2 5 3 6 2022-03-09 - version 1.0.15 -
impact-partnership-cloud/trunk/impact.php
r2695629 r2726219 3 3 * Plugin Name: Impact: Partnership Cloud 4 4 * Description: Partnership cloud app plugin for Woocomerce that tracks every conversion made trough one of Impact's referral links. 5 * Version: 1.0.1 55 * Version: 1.0.16 6 6 * Requires at least: 5.0 7 7 * Requires PHP: 7.0 … … 31 31 * @var string 32 32 */ 33 private $version = '1.0.1 5';33 private $version = '1.0.16'; 34 34 /** 35 35 * Singleton instance of the plugin … … 324 324 $sanitary_values[ $key ] = $input[ $key ]; 325 325 } 326 if ( empty( $value ) && 'custom_script_5' !== $key) {326 if ( empty( $value ) ) { 327 327 $e_value = $key; 328 328 switch ( $key ) { … … 339 339 $e_value = 'Event Type ID'; 340 340 break; 341 case 'custom_script_5': 342 $e_value = 'UTT Script'; 343 break; 341 344 } 342 345 … … 428 431 $value = get_option( 'impact_settings_option_name' ); 429 432 printf( 430 '<textarea class="large-text" rows="5" name="impact_settings_option_name[custom_script_5]" id="custom_script_5" >%s</textarea><small class="form-text text-muted">433 '<textarea class="large-text" rows="5" name="impact_settings_option_name[custom_script_5]" id="custom_script_5" required>%s</textarea><small class="form-text text-muted"> 431 434 You can find this in your Impact Account > Settings > Tracking > General > Universal Tracking Tag field 432 435 </small>', -
impact-partnership-cloud/trunk/includes/impact_settings_page.php
r2603254 r2726219 38 38 </div> 39 39 40 <?php if ( 'true' === $user_exist ) : ?>40 <?php if ( 'true' === $user_exist && !get_settings_errors()) : ?> 41 41 <div class="modal mt-5" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true" data-backdrop="static"> 42 42 <div class="modal-dialog" role="document"> -
impact-partnership-cloud/trunk/readme.txt
r2695629 r2726219 4 4 Tested up to: 5.9 5 5 Requires PHP: 7.0 6 Stable tag: 1.0.1 56 Stable tag: 1.0.16 7 7 License: GPLv2 or later License 8 8 URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.