コード例 #1
0
ファイル: constants.php プロジェクト: saydulk/a2billing
 public static function getCardStatus_Revert_List()
 {
     $cnts = new Constants();
     return $cnts->reverse_array(Constants::getCardStatus_List());
 }
コード例 #2
0
ファイル: A2B_card_info.php プロジェクト: nixonch/a2billing
				</tr>
			   	<tr height="20px">
					<td  class="form_head">
						<?php echo gettext("LANGUAGE") ?> :
					</td>
					<td class="tableBodyRight"  background="../Public/templates/default/images/background_cells.gif" width="70%">
						<?php echo $card['language']?> 
					</td>
				</tr>
			   	<tr height="20px">
					<td  class="form_head">
						<?php echo gettext("STATUS") ?> :
					</td>
					<td class="tableBodyRight"  background="../Public/templates/default/images/background_cells.gif" width="70%">
						<?php 
						$list_status = Constants::getCardStatus_List();
						echo $list_status[$card['status']][0];?> 
					</td>
				</tr>
			   	<tr height="20px">	
					<td  class="form_head">
						<?php echo gettext("CREATION DATE") ?> :
					</td>
					<td class="tableBodyRight"  background="../Public/templates/default/images/background_cells.gif" width="70%">
						<?php echo $card['creationdate']?> 
					</td>
				</tr>
			   	<tr height="20px">
					<td  class="form_head">
						<?php echo gettext("EXPIRATION DATE") ?> :
					</td>
コード例 #3
0
ファイル: constants.php プロジェクト: hellbound/a2billing-mod
 public static function getCardStatus_Revert_List()
 {
     return Constants::reverse_array(Constants::getCardStatus_List());
 }