Changeset 2346695
- Timestamp:
- 07/26/2020 10:17:49 AM (6 years ago)
- Location:
- transact
- Files:
-
- 4 edited
- 17 copied
-
tags/5.1.1 (copied) (copied from transact/trunk)
-
tags/5.1.1/README.md (copied) (copied from transact/trunk/README.md)
-
tags/5.1.1/admin/controllers/transact-admin-settings-menu.php (copied) (copied from transact/trunk/admin/controllers/transact-admin-settings-menu.php)
-
tags/5.1.1/admin/controllers/transact-admin-settings-post.php (copied) (copied from transact/trunk/admin/controllers/transact-admin-settings-post.php)
-
tags/5.1.1/admin/controllers/transact-shortcode.php (copied) (copied from transact/trunk/admin/controllers/transact-shortcode.php)
-
tags/5.1.1/config.ini (copied) (copied from transact/trunk/config.ini)
-
tags/5.1.1/frontend/assets/style.css (copied) (copied from transact/trunk/frontend/assets/style.css) (1 diff)
-
tags/5.1.1/frontend/assets/transact_post.js (copied) (copied from transact/trunk/frontend/assets/transact_post.js)
-
tags/5.1.1/frontend/controllers/transact-api.php (copied) (copied from transact/trunk/frontend/controllers/transact-api.php)
-
tags/5.1.1/frontend/controllers/transact-cookie-manager.php (copied) (copied from transact/trunk/frontend/controllers/transact-cookie-manager.php)
-
tags/5.1.1/frontend/controllers/transact-handle-buttons-shortcode.php (copied) (copied from transact/trunk/frontend/controllers/transact-handle-buttons-shortcode.php)
-
tags/5.1.1/frontend/controllers/transact-handle-buttons.php (copied) (copied from transact/trunk/frontend/controllers/transact-handle-buttons.php) (5 diffs)
-
tags/5.1.1/frontend/controllers/transact-single-post.php (copied) (copied from transact/trunk/frontend/controllers/transact-single-post.php)
-
tags/5.1.1/readme.txt (copied) (copied from transact/trunk/readme.txt) (2 diffs)
-
tags/5.1.1/transact-plugin.php (copied) (copied from transact/trunk/transact-plugin.php) (1 diff)
-
tags/5.1.1/utils/transact-utils-config-parser.php (copied) (copied from transact/trunk/utils/transact-utils-config-parser.php)
-
tags/5.1.1/vendors/transact-io-php/transact-io.php (copied) (copied from transact/trunk/vendors/transact-io-php/transact-io.php)
-
trunk/frontend/assets/style.css (modified) (1 diff)
-
trunk/frontend/controllers/transact-handle-buttons.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/transact-plugin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
transact/tags/5.1.1/frontend/assets/style.css
r2346213 r2346695 9 9 display: block; 10 10 } 11 .transact-purchase_button .transact-spacer, 11 12 .transact-purchase_button .transact-fade { 12 13 padding-top: 125px; 14 } 15 .transact-purchase_button .transact-fade { 13 16 background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 125px, rgba(255, 255, 255, 1)); 14 17 } -
transact/tags/5.1.1/frontend/controllers/transact-handle-buttons.php
r2346213 r2346695 83 83 } 84 84 85 return $this->wrap_buttons($this->options, $ this->transact_api, $buttons, false);85 return $this->wrap_buttons($this->options, $buttons, false); 86 86 } 87 87 … … 101 101 $buttons = array($input . $button); 102 102 103 return $this->wrap_buttons($this->options, $ this->transact_api, $buttons, true);103 return $this->wrap_buttons($this->options, $buttons, true); 104 104 } 105 105 … … 147 147 * @return string html table with supplied buttons 148 148 */ 149 protected function wrap_buttons($options, $ transact_api, $buttons, $is_donation) {149 protected function wrap_buttons($options, $buttons, $is_donation) { 150 150 $output = '<div class="transact-purchase_button">'; 151 151 $has_overlay = false; … … 182 182 $background_fade_color_style 183 183 ); 184 } else { 185 $output .= '<div class="transact-spacer">'; 184 186 } 185 187 … … 196 198 $output .= '</div>'; 197 199 198 if ($has_overlay) { 199 $output .= '</div>'; 200 } 201 $output .= '</div>'; 200 $output .= '</div></div>'; 202 201 203 202 return $output; -
transact/tags/5.1.1/readme.txt
r2346213 r2346695 6 6 Requires PHP: 5.6 7 7 Tested up to: 5.4.2 8 Stable tag: 5.1. 08 Stable tag: 5.1.1 9 9 License: APACHE-2.0 10 10 License URI: https://www.apache.org/licenses/LICENSE-2.0 … … 82 82 83 83 84 = 5.1.1 = 85 * Fix dontation button layout 86 84 87 = 5.1.0 = 85 88 * Configurable text fade on paid content. -
transact/tags/5.1.1/transact-plugin.php
r2346213 r2346695 3 3 * Plugin Name: transact.io 4 4 * Description: Integrates transact.io services into WP 5 * Version: 5.1. 05 * Version: 5.1.1 6 6 * Author: transact.io 7 7 * Author URI: https://transact.io -
transact/trunk/frontend/assets/style.css
r2346213 r2346695 9 9 display: block; 10 10 } 11 .transact-purchase_button .transact-spacer, 11 12 .transact-purchase_button .transact-fade { 12 13 padding-top: 125px; 14 } 15 .transact-purchase_button .transact-fade { 13 16 background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 125px, rgba(255, 255, 255, 1)); 14 17 } -
transact/trunk/frontend/controllers/transact-handle-buttons.php
r2346213 r2346695 83 83 } 84 84 85 return $this->wrap_buttons($this->options, $ this->transact_api, $buttons, false);85 return $this->wrap_buttons($this->options, $buttons, false); 86 86 } 87 87 … … 101 101 $buttons = array($input . $button); 102 102 103 return $this->wrap_buttons($this->options, $ this->transact_api, $buttons, true);103 return $this->wrap_buttons($this->options, $buttons, true); 104 104 } 105 105 … … 147 147 * @return string html table with supplied buttons 148 148 */ 149 protected function wrap_buttons($options, $ transact_api, $buttons, $is_donation) {149 protected function wrap_buttons($options, $buttons, $is_donation) { 150 150 $output = '<div class="transact-purchase_button">'; 151 151 $has_overlay = false; … … 182 182 $background_fade_color_style 183 183 ); 184 } else { 185 $output .= '<div class="transact-spacer">'; 184 186 } 185 187 … … 196 198 $output .= '</div>'; 197 199 198 if ($has_overlay) { 199 $output .= '</div>'; 200 } 201 $output .= '</div>'; 200 $output .= '</div></div>'; 202 201 203 202 return $output; -
transact/trunk/readme.txt
r2346213 r2346695 6 6 Requires PHP: 5.6 7 7 Tested up to: 5.4.2 8 Stable tag: 5.1. 08 Stable tag: 5.1.1 9 9 License: APACHE-2.0 10 10 License URI: https://www.apache.org/licenses/LICENSE-2.0 … … 82 82 83 83 84 = 5.1.1 = 85 * Fix dontation button layout 86 84 87 = 5.1.0 = 85 88 * Configurable text fade on paid content. -
transact/trunk/transact-plugin.php
r2346213 r2346695 3 3 * Plugin Name: transact.io 4 4 * Description: Integrates transact.io services into WP 5 * Version: 5.1. 05 * Version: 5.1.1 6 6 * Author: transact.io 7 7 * Author URI: https://transact.io
Note: See TracChangeset
for help on using the changeset viewer.