Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2013
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php
  2. /**
  3.  * osCommerce Online Merchant
  4.  *
  5.  * @copyright Copyright (c) 2013 osCommerce; http://www.oscommerce.com
  6.  * @license GNU General Public License; http://www.oscommerce.com/gpllicense.txt
  7.  */
  8.  
  9.   class app_info_action_aboutus {
  10.     public static function execute(app $app) {
  11.       global $breadcrumb;
  12.  
  13.       $app->setContentFile('aboutus.php');
  14.  
  15.       $breadcrumb->add(NAVBAR_TITLE_ABOUTUS, tep_href_link('info', 'aboutus'));
  16.     }
  17.   }
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement