PHP Classes

File: information.php

Recommend this page to a friend!
  Classes of DAKEDO, Online Shopping Mall   Blogger Integration   information.php   Download  
File: information.php
Role: Application script
Content type: text/plain
Description: osCommerce information box
Class: Blogger Integration
Import a blog published in Blogger.com into a site
Author: By
Last change: - file priority changed
- accessible without login
Date: 17 years ago
Size: 1,686 bytes
 

Contents

Class file image Download
<?php
/*
  BloggerIntegration v1.0 - information.php v1.0 2007/03/01

  designer: DAKEDO, Online Shopping Mall
  url: http://www.dakedo.com
  download: http://www.dakedo.com/blogs/27/2007/02/blogger-integration.html
  email: contact@dakedo.com
  Copyright (c) 2007 DAKEDO

  This file is largely derived from:
  $Id: information.php,v 1.6 2003/02/10 22:31:00 hpdl Exp $
  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com
  Copyright (c) 2003 osCommerce

  Released under the GNU General Public License
*/
?>
<!-- information //-->
          <tr>
            <td>
<?php

  $info_box_contents
= array();
 
$info_box_contents[] = array('text' => BOX_HEADING_INFORMATION);

  new
infoBoxHeading($info_box_contents, false, false);

 
$info_box_contents = array();
/*BEGIN BloggerIntegration*/
 
$info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a><br>' .
                                        
'<a href="' . tep_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a><br>' .
                                        
'<a href="' . tep_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a><br>' .
                                        
'<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a><br>' .
                                        
'<a href="' . HTTP_SERVER . DIR_WS_BLOG . $HTTP_GET_VARS['language']. '">' . BOX_INFORMATION_BLOG . '</a>');
/*END BloggerIntegration*/

 
new infoBox($info_box_contents);
?>
</td>
          </tr>
<!-- information_eof //-->