当前位置: 首页>>代码示例>>PHP>>正文


PHP vmCommonHTML::PrintIcon方法代码示例

本文整理汇总了PHP中vmCommonHTML::PrintIcon方法的典型用法代码示例。如果您正苦于以下问题:PHP vmCommonHTML::PrintIcon方法的具体用法?PHP vmCommonHTML::PrintIcon怎么用?PHP vmCommonHTML::PrintIcon使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在vmCommonHTML的用法示例。


在下文中一共展示了vmCommonHTML::PrintIcon方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: intval

// Page Navigation Parameters
$limit = intval($vm_mainframe->getUserStateFromRequest("viewlistlimit{$page}", 'limit', $mosConfig_list_limit));
$limitstart = intval($vm_mainframe->getUserStateFromRequest("view{$keyword}{$category_id}{$pagename}limitstart", 'limitstart', 0));
/* Get all the other paramters */
$search_category = vmRequest::getVar('search_category');
// Display just the naked page without toolbar, menu and footer?
$only_page = vmRequest::getInt('only_page', 0);
if (PSHOP_IS_OFFLINE == '1' && !$perm->hasHigherPerms('storeadmin')) {
    echo PSHOP_OFFLINE_MESSAGE;
} else {
    if (PSHOP_IS_OFFLINE == '1') {
        echo '<h2>' . $VM_LANG->_('OFFLINE_MODE') . '</h2>';
    }
    if ($is_popup) {
        echo "<style type='text/css' media='print'>.vmNoPrint { display: none }</style>";
        echo vmCommonHTML::PrintIcon('', true, ' ' . $VM_LANG->_('CMN_PRINT'));
    }
    // The Vendor ID is important
    $ps_vendor_id = $_SESSION['ps_vendor_id'];
    // The authentication array
    $auth = $_SESSION['auth'];
    $no_menu = vmRequest::getInt('no_menu', 0);
    // Timer Start
    if (vmShouldDebug()) {
        /*@MWM1: Log/Debug enhancements */
        $start = utime();
        $GLOBALS["mosConfig_debug"] = 1;
    }
    // update the cart because something could have
    // changed while running a function
    $cart = $_SESSION["cart"];
开发者ID:BackupTheBerlios,项目名称:kmit-svn,代码行数:31,代码来源:virtuemart.php

示例2: mm_showMyFileName

*/
mm_showMyFileName(__FILE__);
if ($db->f('order_number')) {
    ?>
	

	<?php 
    if (empty($print)) {
        ?>
	<div class="pathway"><?php 
        echo $vmPathway;
        ?>
</div>
	<div class="buttons_heading">
	<?php 
        echo vmCommonHTML::PrintIcon();
        ?>
	</div>
	<br /><br />
	 <?php 
    }
    ?>

	<table width="100%" align="center" border="0" cellspacing="0" cellpadding="2">
	  <tr>
	    <td valign="top">
	     <h2><?php 
    echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_PO_LBL');
    ?>
</h2>
	     <p><?php 
开发者ID:noikiy,项目名称:owaspbwa,代码行数:31,代码来源:account.order_details.tpl.php


注:本文中的vmCommonHTML::PrintIcon方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。