Changeset 1640880
- Timestamp:
- 04/19/2017 08:24:14 PM (9 years ago)
- Location:
- eewee-sellsy
- Files:
-
- 2 edited
-
tags/1.0.10/libs/sellsy/sellsytools.php (modified) (1 diff)
-
trunk/libs/sellsy/sellsytools.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
eewee-sellsy/tags/1.0.10/libs/sellsy/sellsytools.php
r1640874 r1640880 63 63 */ 64 64 public static function showErrors(){ 65 if (sellsyTools::storageGet('process_error')){ ?>65 if (sellsyTools::storageGet('process_error')){ ?> 66 66 <div class="alert alert-error"> 67 67 <a class="close" data-dismiss="alert">×</a> 68 68 <strong>process_error detected in the api response : </strong> 69 <strong>Code</strong> : <? echo sellsyTools::storageGet('process_error')->code ?>70 <strong>Message</strong> : <? echo sellsyTools::storageGet('process_error')->message ?>71 <strong>More</strong> : <? echo sellsyTools::storageGet('process_error')->more ?>69 <strong>Code</strong> : <?php echo sellsyTools::storageGet('process_error')->code ?> 70 <strong>Message</strong> : <?php echo sellsyTools::storageGet('process_error')->message ?> 71 <strong>More</strong> : <?php echo sellsyTools::storageGet('process_error')->more ?> 72 72 </div> 73 <?} 73 <?php 74 } 74 75 75 if (sellsyTools::storageGet('oauth_error')){ ?>76 if (sellsyTools::storageGet('oauth_error')){ ?> 76 77 <div class="alert alert-error"> 77 78 <a class="close" data-dismiss="alert">×</a> 78 79 <strong>oauth_error detected in the api response : </strong> 79 <strong>Message</strong> : <? echo sellsyTools::storageGet('oauth_error') ?>80 <strong>Message</strong> : <?php echo sellsyTools::storageGet('oauth_error') ?> 80 81 </div> 81 <?} 82 <?php 83 } 82 84 83 85 sellsyTools::storageUnset('process_error'); -
eewee-sellsy/trunk/libs/sellsy/sellsytools.php
r1640874 r1640880 63 63 */ 64 64 public static function showErrors(){ 65 if (sellsyTools::storageGet('process_error')){ ?>65 if (sellsyTools::storageGet('process_error')){ ?> 66 66 <div class="alert alert-error"> 67 67 <a class="close" data-dismiss="alert">×</a> 68 68 <strong>process_error detected in the api response : </strong> 69 <strong>Code</strong> : <? echo sellsyTools::storageGet('process_error')->code ?>70 <strong>Message</strong> : <? echo sellsyTools::storageGet('process_error')->message ?>71 <strong>More</strong> : <? echo sellsyTools::storageGet('process_error')->more ?>69 <strong>Code</strong> : <?php echo sellsyTools::storageGet('process_error')->code ?> 70 <strong>Message</strong> : <?php echo sellsyTools::storageGet('process_error')->message ?> 71 <strong>More</strong> : <?php echo sellsyTools::storageGet('process_error')->more ?> 72 72 </div> 73 <?} 73 <?php 74 } 74 75 75 if (sellsyTools::storageGet('oauth_error')){ ?>76 if (sellsyTools::storageGet('oauth_error')){ ?> 76 77 <div class="alert alert-error"> 77 78 <a class="close" data-dismiss="alert">×</a> 78 79 <strong>oauth_error detected in the api response : </strong> 79 <strong>Message</strong> : <? echo sellsyTools::storageGet('oauth_error') ?>80 <strong>Message</strong> : <?php echo sellsyTools::storageGet('oauth_error') ?> 80 81 </div> 81 <?} 82 <?php 83 } 82 84 83 85 sellsyTools::storageUnset('process_error');
Note: See TracChangeset
for help on using the changeset viewer.