Quick Search:

Mode

Context

Displaying 3 lines of context. None | Less | More | Full

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

432
 
433
 
433
 
order_total.php
_> 11 <?php
  22 /*
<> 3 -  $Id: order_total.php 432 2006-02-15 07:41:34Z hpdl $
   3+  $Id: order_total.php 433 2006-02-15 19:43:33Z hpdl $
44 
  55   osCommerce, Open Source E-Commerce Solutions
  66   http://www.oscommerce.com
     
 !
6262       return $this->_sort_order;
  6363     }
  6464 
<> 65 -    function process() {
   65+    function getResult() {
6666       $order_total_array = array();
  6767 
  6868       foreach ($this->modules as $module) {
     
 !
8686       return $order_total_array;
  8787     }
  8888 
<> 89 -    function output() {
  90 -      $output_string = '';
  91 -
  92 -      foreach ($this->modules as $module) {
  93 -        $module = 'osC_OrderTotal_' . $module;
  94 -
  95 -        if ($GLOBALS[$module]->getStatus() === true) {
  96 -          foreach ($GLOBALS[$module]->output as $output) {
  97 -            $output_string .= '              <tr>' . "\n" .
  98 -                              '                <td align="right" class="main">' . $output['title'] . '</td>' . "\n" .
  99 -                              '                <td align="right" class="main">' . $output['text'] . '</td>' . "\n" .
  100 -                              '              </tr>';
  101 -          }
  102 -        }
  103 -      }
  104 -
  105 -      return $output_string;
  106 -    }
  107 -
<_ 10889     function hasActive() {
  10990       static $has_active;
  11091