示例#1
0
        echo shopFunctionsF::getInvoiceDownloadButton($row);
        ?>
					</td>
					<td align="left">
						<?php 
        echo vmJsApi::date($row->created_on, 'LC4', true);
        ?>
					</td>
					<!--td align="left">
						<?php 
        //echo vmJsApi::date($row->modified_on,'LC3',true);
        ?>
					</td -->
					<td align="left">
						<?php 
        echo shopFunctionsF::getOrderStatusName($row->order_status);
        ?>
					</td>
					<td align="left">
						<?php 
        echo $this->currency->priceDisplay($row->order_total, $row->currency);
        ?>
					</td>
				</tr>
		<?php 
        $k = 1 - $k;
    }
    ?>
		</table>
	</div>
	<?php 
 /**
  * proxy function going to be
  * @deprecated use shopFunctionsF::getOrderStatusName instead
  * @param char $_code Order status code
  * @return string The name of the order status
  */
 public static function getOrderStatusName($_code)
 {
     if (!class_exists('ShopFunctionsF')) {
         require VMPATH_SITE . DS . 'helpers' . DS . 'shopfunctionsf.php';
     }
     return shopFunctionsF::getOrderStatusName($_code);
 }