| [ Index ] |
PHP Cross Reference of osCMax 2.0.4 |
[Summary view] [Print] [Text view]
1 <td> 2 <?php 3 //BOF: MaxiDVD Returning Customer Info SECTION 4 //=========================================================== 5 $returning_customer_title = HEADING_RETURNING_CUSTOMER; // DDB - 040620 - PWA - change TEXT by HEADING 6 $returning_customer_info = "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" bordercolor=\"#111111\" width=\"100%\" id=\"AutoNumber1\"> 7 <tr> 8 <td width=\"100%\" class=\"main\" colspan=\"3\">" . TEXT_RETURNING_CUSTOMER . "</td> 9 </tr> 10 <tr> 11 <td width=\"100%\" class=\"main\" colspan=\"3\">" . tep_draw_separator('pixel_trans.gif', '100%', '10') . "</td> 12 </tr> 13 <tr> 14 <td class=\"main\"> 15 16 <table width=\"70%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\"> 17 <tr> 18 <td class=\"main\">" . ENTRY_EMAIL_ADDRESS . "</td> 19 <td>" . tep_draw_input_field('email_address') . "</td> 20 </tr> 21 <tr> 22 <td class=\"main\">" . ENTRY_PASSWORD . "<br><br></td> 23 <td>" . tep_draw_password_field('password') . "<br><br></td> 24 </tr> 25 </table> 26 <table width=\"30%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"right\"> 27 <tr> 28 <td align=\"center\" class=\"smalltext\">" . tep_image_submit('button_login.gif', IMAGE_BUTTON_LOGIN) . "<br><br>" . '<a href="' . tep_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . TEXT_PASSWORD_FORGOTTEN . '</a>' . "<br><br></td> 29 </tr> 30 </table> 31 </td> 32 </tr> 33 </table> 34 "; 35 //=========================================================== 36 ?> 37 <table width="100%" cellpadding="5" cellspacing="0" border="0"> 38 <tr> 39 <td class="main" width=100% valign="top" align="center"> 40 <?php 41 $info_box_contents = array(); 42 $info_box_contents[] = array('align' => 'left', 43 'text' => $returning_customer_title ); 44 new infoBoxHeading($info_box_contents, true, true); 45 46 $info_box_contents = array(); 47 $info_box_contents[] = array('align' => 'left', 48 'text' => $returning_customer_info); 49 new infoBox($info_box_contents); 50 ?> 51 </td> 52 </tr> 53 </table> 54 <?php 55 //EOF: MaxiDVD Returning Customer Info SECTION 56 //=========================================================== 57 58 59 60 61 62 //MaxiDVD New Account Sign Up SECTION 63 //=========================================================== 64 $create_account_title = HEADING_NEW_CUSTOMER; 65 $create_account_info = "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" bordercolor=\"#111111\" width=\"100%\" id=\"AutoNumber1\"> 66 <tr> 67 <td width=\"100%\" class=\"main\" colspan=\"3\">" . TEXT_NEW_CUSTOMER . '<br><br>' . TEXT_NEW_CUSTOMER_INTRODUCTION . "</td> 68 </tr> 69 <tr> 70 <td width=\"100%\" class=\"main\" colspan=\"3\">" . tep_draw_separator('pixel_trans.gif', '100%', '10') . "</td> 71 </tr> 72 <tr> 73 <td width=\"33%\" class=\"main\"></td> 74 <td width=\"33%\"></td> 75 <td width=\"34%\" rowspan=\"3\" align=\"center\">" . '<a href="' . tep_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL') . '">' . tep_image_button('button_create_account.gif', IMAGE_BUTTON_CREATE_ACCOUNT) . '</a>' . "<br><br></td> 76 </tr> 77 </table>"; 78 //=========================================================== 79 ?> 80 <?php echo tep_draw_separator('pixel_trans.gif', '100%', '15'); ?> 81 <table width="100%" cellpadding="5" cellspacing="0" border="0"> 82 <tr> 83 <td class="main" width=100% valign="top" align="center"> 84 <?php 85 $info_box_contents = array(); 86 $info_box_contents[] = array('align' => 'left', 87 'text' => $create_account_title ); 88 new infoBoxHeading($info_box_contents, true, true); 89 90 $info_box_contents = array(); 91 $info_box_contents[] = array('align' => 'left', 92 'text' => $create_account_info); 93 new infoBox($info_box_contents); 94 ?> 95 </td> 96 </tr> 97 </table> 98 <?php 99 //EOF: MaxiDVD New Account Sign Up SECTION 100 //=========================================================== 101 102 103 104 105 106 //BOF: MaxiDVD Purchase With-Out An Account SECTION 107 //=========================================================== 108 if (($cart->count_contents() > 0) && (!isset($HTTP_GET_VARS['my_account_f']) || $HTTP_GET_VARS['my_account_f'] !=1)) // only display of box if something in cart 109 { 110 $pwa_checkout_title = HEADING_CHECKOUT; 111 $pwa_checkout_info = "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" bordercolor=\"#111111\" width=\"100%\" id=\"AutoNumber1\"> 112 <tr> 113 <td width=\"100%\" class=\"main\" colspan=\"3\">" . TEXT_CHECKOUT_INTRODUCTION . "</td> 114 </tr> 115 <tr> 116 <td width=\"100%\" class=\"main\" colspan=\"3\">" . tep_draw_separator('pixel_trans.gif', '100%', '10') . "</td> 117 </tr> 118 <tr> 119 <td width=\"33%\" class=\"main\"></td> 120 <td width=\"33%\"></td> 121 <td width=\"34%\" rowspan=\"3\" align=\"center\">" . '<a href="' . tep_href_link(FILENAME_CHECKOUT, '', 'SSL') . '">' . tep_image_button('button_checkout.gif', IMAGE_BUTTON_CHECKOUT) . '</a>' . "<br><br></td> 122 </tr> 123 </table>"; 124 //=========================================================== 125 ?> 126 <?php echo tep_draw_separator('pixel_trans.gif', '100%', '15'); ?> 127 <table width="100%" cellpadding="5" cellspacing="0" border="0"> 128 <tr> 129 <td class="main" width=100% valign="top" align="center"> 130 <?php 131 $info_box_contents = array(); 132 $info_box_contents[] = array('align' => 'left', 133 'text' => $pwa_checkout_title ); 134 new infoBoxHeading($info_box_contents, true, true); 135 136 $info_box_contents = array(); 137 $info_box_contents[] = array('align' => 'left', 138 'text' => $pwa_checkout_info); 139 new infoBox($info_box_contents); 140 ?> 141 </td> 142 </tr> 143 </table> 144 <?php 145 } 146 //EOF: MaxiDVD Purchase With-Out An Account SECTION 147 //=========================================================== 148 ?> 149 </td>
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 |