1453 /*********************/1454 /* WRITES PRINT ICON */1455 /*********************/1456 function PrintIcon( &$row, &$params, $hide_js, $link, $status=NULL ) {1457 if ( $params->get( 'print' ) && !$hide_js ) {1458 if ( !$status ) {1459 $status = 'status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no';1460 }1461 1462 if ( $params->get( 'icons' ) ) {1463 $image = mosAdminMenus::ImageCheck( 'printButton.png', '/images/M_images/', NULL, NULL, _CMN_PRINT );1464 } else {1465 $image = _ICON_SEP .' '. _CMN_PRINT. ' '. _ICON_SEP;1466 }1467 1468 if ( $params->get( 'popup' ) && !$hide_js ) {1469 echo '<a href="javascript:void(0);" onclick="javascript:window.print(); return false" title="'._CMN_PRINT.'">'._LEND;1470 echo $image._LEND;1471 echo '</a> '._LEND;1472 } else {1473 echo '<a href="javascript:void(0);" onclick="javascript:window.open(\''.$link.'\', \'PrintWindow\', \''.$status.'\');" title="'._CMN_PRINT.'">'._LEND;1474 echo $image._LEND;1475 echo '</a> '._LEND;1476 }1477 }1478 }