本文整理汇总了PHP中vmCommonHTML::ImageCheck方法的典型用法代码示例。如果您正苦于以下问题:PHP vmCommonHTML::ImageCheck方法的具体用法?PHP vmCommonHTML::ImageCheck怎么用?PHP vmCommonHTML::ImageCheck使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类vmCommonHTML
的用法示例。
在下文中一共展示了vmCommonHTML::ImageCheck方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: PrintIcon
function PrintIcon($link = '', $use_icon = true, $add_text = '')
{
global $VM_LANG, $mosConfig_live_site, $mosConfig_absolute_path, $cur_template, $Itemid;
if (@VM_SHOW_PRINTICON == '1') {
if (!$link) {
$query_string = str_replace('only_page=1', 'only_page=0', vmAmpReplace(vmGet($_SERVER, 'QUERY_STRING')));
$link = 'index2.php?' . $query_string . '&pop=1' . (vmIsJoomla('1.5') ? '&tmpl=component' : '');
}
// checks template image directory for image, if non found default are loaded
if ($use_icon) {
$text = vmCommonHTML::ImageCheck('printButton.png', '/images/M_images/', NULL, NULL, $VM_LANG->_('CMN_PRINT'), $VM_LANG->_('CMN_PRINT'));
$text .= shopMakeHtmlSafe($add_text);
} else {
$text = '| ' . $VM_LANG->_('CMN_PRINT') . ' |';
}
$isPopup = vmGet($_GET, 'pop');
if ($isPopup) {
// Print Preview button - used when viewing page
$html = '<span class="vmNoPrint">
<a href="javascript:void(0)" onclick="javascript:window.print(); return false;" title="' . $VM_LANG->_('CMN_PRINT') . '">
' . $text . '
</a></span>';
return $html;
} else {
// Print Button - used in pop-up window
return vmPopupLink($link, $text, 640, 480, '_blank', $VM_LANG->_('CMN_PRINT'));
}
}
}