<?php

require_once dirname(__FILE__) . '/config.php';
require_once dirname(__FILE__) . '/views/header.tpl.php';
?>

<pre>

<?php 
$VendorService = new QuickBooks_IPP_Service_Vendor();
$Vendor = new QuickBooks_IPP_Object_Vendor();
$Vendor->setTitle('Mr');
$Vendor->setGivenName('Keith');
$Vendor->setMiddleName('R');
$Vendor->setFamilyName('Palmer');
$Vendor->setDisplayName('Keith R Palmer Jr ' . mt_rand(0, 1000));
if ($resp = $VendorService->add($Context, $realm, $Vendor)) {
    print 'Our new Vendor ID is: [' . $resp . ']';
} else {
    print $VendorService->lastError($Context);
}
/*
print('<br><br><br><br>');
print("\n\n\n\n\n\n\n\n");
print('Request [' . $IPP->lastRequest() . ']');
print("\n\n\n\n");
print('Response [' . $IPP->lastResponse() . ']');
print("\n\n\n\n\n\n\n\n\n");
*/
?>
<?php

require_once dirname(__FILE__) . '/config.php';
require_once dirname(__FILE__) . '/views/header.tpl.php';
?>

<pre>

<?php 
$VendorService = new QuickBooks_IPP_Service_Vendor();
$vendors = $VendorService->query($Context, $realm, "SELECT * FROM Vendor");
//print_r($terms);
foreach ($vendors as $Vendor) {
    //print_r($Term);
    print 'Vendor Id=' . $Vendor->getId() . ' is named: ' . $Vendor->getDisplayName() . '<br>';
}
/*
print("\n\n\n\n");
print('Request [' . $IPP->lastRequest() . ']');
print("\n\n\n\n");
print('Response [' . $IPP->lastResponse() . ']');
print("\n\n\n\n");
*/
?>

</pre>

<?php 
require_once dirname(__FILE__) . '/views/footer.tpl.php';
<?php 
// Set up the IPP instance
$IPP = new QuickBooks_IPP($dsn);
// Get our OAuth credentials from the database
$creds = $IntuitAnywhere->load($the_username, $the_tenant);
// Tell the framework to load some data from the OAuth store
$IPP->authMode(QuickBooks_IPP::AUTHMODE_OAUTH, $the_username, $creds);
// Print the credentials we're using
//print_r($creds);
// This is our current realm
$realm = $creds['qb_realm'];
// Load the OAuth information from the database
if ($Context = $IPP->context()) {
    // Set the IPP version to v3
    $IPP->version(QuickBooks_IPP_IDS::VERSION_3);
    $VendorService = new QuickBooks_IPP_Service_Vendor();
    $vendors = $VendorService->query($Context, $realm, "SELECT * FROM Vendor WHERE DisplayName = 'Shannon Palmer' ");
    //print_r($terms);
    foreach ($vendors as $Vendor) {
        //print_r($Term);
        print 'Vendor Id=' . $Vendor->getId() . ' is named: ' . $Vendor->getDisplayName() . '<br>';
    }
    /*
    print("\n\n\n\n");
    print('Request [' . $IPP->lastRequest() . ']');
    print("\n\n\n\n");
    print('Response [' . $IPP->lastResponse() . ']');
    print("\n\n\n\n");
    */
} else {
    die('Unable to load a context...?');