[ Index ] |
PHP Cross Reference of osCMax 2.0.4 |
[Summary view] [Print] [Text view]
1 <?php 2 /* 3 $Id: popup_infobox_help.php 3 2006-05-27 04:59:07Z user $ 4 5 osCMax Power E-Commerce 6 http://oscdox.com 7 8 Copyright 2006 osCMax 9 10 Released under the GNU General Public License 11 */ 12 13 require ('includes/application_top.php'); 14 15 //$navigation->remove_current_page(); 16 17 require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_POPUP_INFOBOX_HELP); 18 19 ?> 20 <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> 21 <html <?php echo HTML_PARAMS; ?>> 22 <head> 23 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> 24 <title><?php echo TITLE; ?></title> 25 <style type="text/css"><!-- 26 a { color:#080381; text-decoration:none; } 27 a:hover { color:#aabbdd; text-decoration:underline; } 28 a.text:link, a.text:visited { color: #000000; text-decoration: none; } 29 a:text:hover { color: #000000; text-decoration: underline; } 30 31 32 33 .smallText { font-family: Verdana, Arial, sans-serif; font-size: 10px; } 34 /* info box */ 35 .infoBoxHeading { font-family: Verdana, Arial, sans-serif; font-size: 11px; color: #ffffff; background-color: #B3BAC5; } 36 .infoBoxContent { font-family: Verdana; font-size: 10pt; border: 1px outset #9B9B9B; 37 padding-left: 4; padding-right: 4; padding-top: 1; 38 padding-bottom: 1; background-color: #FFFFFF } 39 //--></style> 40 <body marginwidth="10" marginheight="10" topmargin="10" bottommargin="10" leftmargin="10" rightmargin="10" bgcolor="#DEE4E8"> 41 42 <?php 43 $heading = array(); 44 $contents = array(); 45 46 switch ($HTTP_GET_VARS['action']) { 47 48 case 'filename': 49 $heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_NEW_INFOBOX . '</b>'); 50 $contents[] = array('text' => TEXT_INFOBOX_HELP_FILENAME); 51 break; 52 53 case 'heading': 54 $heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_NEW_INFOBOX . '</b>'); 55 $contents[] = array('text' => TEXT_INFOBOX_HELP_HEADING); 56 break; 57 58 case 'define': 59 $heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_NEW_INFOBOX . '</b>'); 60 $contents[] = array('text' => TEXT_INFOBOX_HELP_DEFINE); 61 break; 62 63 case 'column': 64 $heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_NEW_INFOBOX . '</b>'); 65 $contents[] = array('text' => TEXT_INFOBOX_HELP_COLUMN); 66 break; 67 68 case 'position': 69 $heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_NEW_INFOBOX . '</b>'); 70 $contents[] = array('text' => TEXT_INFOBOX_HELP_POSITION); 71 break; 72 73 case 'active': 74 $heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_NEW_INFOBOX . '</b>'); 75 $contents[] = array('text' => TEXT_INFOBOX_HELP_ACTIVE); 76 break; 77 78 } 79 $box = new box; 80 echo $box->infoBox($heading, $contents); 81 82 83 84 ?> 85 86 <p class="smallText" align="right"><?php echo '<a href="javascript:window.close()">' . TEXT_CLOSE_WINDOW . '</a>'; ?></p> 87 88 89 </body> 90 91 </html>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Jan 1 13:43:16 2010 | Cross-referenced by PHPXref 0.7 |