CVS messages

CVS (Concurrent Versions System) is a code management system used by developers to collaborate and track modifications of code.

    August 3, 2009

    February 19, 2009

    February 3, 2009

    • Commit #168954 by Allie Micka at 21:31
        MORE IMPORTANT CHANGES
        - hook_qbwc_response is DEPRECATED.  Instead, your hook_qbwc_request should 
          include a 'callback' array, which defines the function(s) you want to call
          with the result data.
        - Results are passed to these callbacks as arrays, not as the XML response.
          This is more consistent with how you're passing data to the API.
        - In keeping with how sarvab is using the API, you can also pass a 'data' element.  Thus, hook_qbwc_request looks like:
        function hook_qbwc_request() {
          return array(array(
            'name' => 'CustomerQueryRq',
            'callback' => array('my_qbwc_response'),
            'data' => array('I LIKE BUNNIES' => TRUE),
          ));
        }
        And your callback looks like:
        function my_qbwc_response($response=array(), $data=array(), $status, $message) {}

    February 2, 2009

    January 20, 2009

    January 15, 2009

    Syndicate content
     
     

    Drupal is a registered trademark of Dries Buytaert.