/[drupal]/contributions/modules/qb/qb.module
ViewVC logotype

Diff of /contributions/modules/qb/qb.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.4, Tue Feb 3 21:32:17 2009 UTC revision 1.5, Tue Feb 17 20:46:18 2009 UTC
# Line 1  Line 1 
1  <?php // $Id: qb.module,v 1.3 2009/01/15 17:35:56 vauxia Exp $  <?php // $Id: qb.module,v 1.4 2009/02/03 21:32:17 vauxia Exp $
2    
3  /**  /**
4   * @file   * @file
# Line 18  function qb_menu() { Line 18  function qb_menu() {
18        'file' => 'qb.inc',        'file' => 'qb.inc',
19        'type' => MENU_NORMAL_ITEM,        'type' => MENU_NORMAL_ITEM,
20      ),      ),
21        'admin/settings/qb/api' => array(
22          'title' => t('API Settings'),
23          'page callback' => 'drupal_get_form',
24          'page arguments' => array('qb_settings'),
25          'access arguments' => array('administer quickbooks'),
26          'file' => 'qb.inc',
27          'weight' => 10,
28          'type' => MENU_DEFAULT_LOCAL_TASK,
29        ),
30    );    );
31  }  }
32    
# Line 49  function qb_qbxml($elements, $root = arr Line 58  function qb_qbxml($elements, $root = arr
58    foreach ((array) $elements as $key => $element) {    foreach ((array) $elements as $key => $element) {
59      _qb_qbxml_node($qbxml, $key, $element, $start);      _qb_qbxml_node($qbxml, $key, $element, $start);
60    }    }
61      watchdog('debug', htmlentities($qbxml->saveXML));
62    return $qbxml->saveXML();    return $qbxml->saveXML();
63  }  }
64    

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

  ViewVC Help
Powered by ViewVC 1.1.2