Changeset 2291412
- Timestamp:
- 04/25/2020 07:49:05 AM (6 years ago)
- Location:
- icdsoft-reseller-store/trunk
- Files:
-
- 7 edited
-
icd-hosting.php (modified) (2 diffs)
-
includes/services/Payment.php (modified) (1 diff)
-
lang/language/terms/en.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
templates/compare_plans.php (modified) (2 diffs)
-
templates/request.php (modified) (5 diffs)
-
templates/show_plan_info.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
icdsoft-reseller-store/trunk/icd-hosting.php
r2288329 r2291412 4 4 * Plugin URI: https://reseller.icdsoft.com 5 5 * Description: This plugin allows you to add hosting order forms on your website, accept hosting service orders and payments from your customers, and then have these orders opened on servers hosted by ICDSoft. 6 * Version: 1.1. 36 * Version: 1.1.4 7 7 * Author: ICDSoft Hosting 8 8 * Author URI: https://icdsoft.com … … 37 37 * @var string 38 38 */ 39 public $version = '1.1. 3';39 public $version = '1.1.4'; 40 40 41 41 /** -
icdsoft-reseller-store/trunk/includes/services/Payment.php
r2110032 r2291412 1 <? 1 <?php 2 2 3 3 namespace ICD\Hosting\Services; -
icdsoft-reseller-store/trunk/lang/language/terms/en.php
r2110032 r2291412 1 <? 1 <?php 2 2 return array( 3 3 'hosting_terms' => '#### CONTENT -
icdsoft-reseller-store/trunk/readme.txt
r2288329 r2291412 5 5 Tested up to: 5.4 6 6 Requires PHP: 5.4 7 Stable tag: 1.1. 37 Stable tag: 1.1.4 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 119 119 == Changelog == 120 120 121 = 1.1.4 = 122 Fix - more short tags 123 121 124 = 1.1.3. = 122 125 * Fix - remove shorttags -
icdsoft-reseller-store/trunk/templates/compare_plans.php
r2128474 r2291412 24 24 <br> 25 25 <div class="card-deck mb-3 text-center"> 26 <? 26 <?php 27 27 } 28 28 ?> … … 54 54 'plan' => esc_attr( $plan['plan'] ) 55 55 ), true ) ?> " target="_self"><?php _e( 'Order', 'icd-hosting' ) ?></a> 56 <? 56 <?php 57 57 echo '</li>'; 58 58 } -
icdsoft-reseller-store/trunk/templates/request.php
r2288329 r2291412 167 167 <select name="order[items][<?php echo esc_attr( $idx ) ?>][quantity]" 168 168 class="quantity form-control"> 169 <? 169 <?php 170 170 foreach ( $i['packages'] as $p ) { 171 171 $price = $p * $i['prices'][ $i['period'] ]['price']; ?> … … 233 233 if ( in_array( $i['periodicity'], [ 'YR', 'MO' ] ) ) { 234 234 ?> 235 <?php echo esc_html( $i['period'] ) ?><? 235 <?php echo esc_html( $i['period'] ) ?><?php 236 236 if ( ! empty( $price['periodicity'] ) ) { 237 237 echo esc_html( $price['periodicity'] ); … … 371 371 data-id="<?php echo esc_attr( $idx ) ?>" 372 372 data-period="<?php echo esc_attr( $i['period'] ) ?>"> 373 <? 373 <?php 374 374 if ( $i['action'] == 'order' and ! empty( $i['hosting'] ) ) { ?> 375 375 <h4><?php echo icd_hosting_tr( 'request.item_hosting_subtitle' ) ?></h4> … … 688 688 <option value="<?php echo $ip ?>" 689 689 <?php if ( $ip == $i['ssl']['ip'] ) { 690 ?>selected <? 690 ?>selected <?php 691 691 } ?>><?php echo esc_html( $ip ) ?></option> 692 692 <?php … … 712 712 </select> 713 713 </div> 714 <? 714 <?php 715 715 716 716 if ( isset( $i['account_id'] ) ) { ?> -
icdsoft-reseller-store/trunk/templates/show_plan_info.php
r2128474 r2291412 28 28 'plan' => $plan 29 29 ), true ) ?> " target="_self"><?php _e( 'Order', 'icd-hosting' ) ?></a> 30 <? 30 <?php 31 31 echo '</li>'; 32 32 }
Note: See TracChangeset
for help on using the changeset viewer.