예제 #1
0
 /**
  * Convert this object to a valid qbXML request
  *
  * @param string $request The type of request to convert this to (examples: CustomerAddRq, CustomerModRq, CustomerQueryRq)
  * @param string $version
  * @param string $locale
  * @param string $root
  * @return string
  */
 public function asQBXML($request, $version = null, $locale = null, $root = null)
 {
     $this->_cleanup();
     return parent::asQBXML($request, $version, $locale, $root);
 }
예제 #2
0
 /**
  * 
  * 
  * @param boolean $todo_for_empty_elements	A constant, one of: QUICKBOOKS_XML_XML_COMPRESS, QUICKBOOKS_XML_XML_DROP, QUICKBOOKS_XML_XML_PRESERVE
  * @param string $indent
  * @param string $root
  * @return string
  */
 public function asQBXML($request, $todo_for_empty_elements = QUICKBOOKS_OBJECT_XML_DROP, $indent = "\t", $root = null)
 {
     $this->_cleanup();
     return parent::asQBXML($request, $todo_for_empty_elements, $indent, $root);
 }
예제 #3
0
 /**
  * Convert this object to a valid qbXML request
  * 
  * @param string $request						The type of request to convert this to (ARRefundCreditCardAddRq, or ARRefundCreditCardQuery)
  * @param boolean $todo_for_empty_elements		A constant, one of: QUICKBOOKS_XML_XML_COMPRESS, QUICKBOOKS_XML_XML_DROP, QUICKBOOKS_XML_XML_PRESERVE
  * @param string $indent
  * @param string $root
  * @return string
  */
 public function asQBXML($request, $todo_for_empty_elements = NULL, $indent = "\t", $root = null)
 {
     $this->_cleanup();
     return parent::asQBXML($request, $todo_for_empty_elements, $indent, $root);
 }
예제 #4
0
 /**
  * 
  * 
  * @param boolean $todo_for_empty_elements	A constant, one of: QUICKBOOKS_XML_XML_COMPRESS, QUICKBOOKS_XML_XML_DROP, QUICKBOOKS_XML_XML_PRESERVE
  * @param string $indent
  * @param string $root
  * @return string
  */
 public function asQBXML($request, $todo_for_empty_elements = QuickBooks_QBXML_Object::XML_DROP, $indent = "\t", $root = null, $parent = null)
 {
     $this->_cleanup();
     return parent::asQBXML($request, $todo_for_empty_elements, $indent, $root);
 }
 /**
  * Convert this object to a valid qbXML request
  * 
  * @param string $request					The type of request to convert this to (examples: CustomerAddRq, CustomerModRq, CustomerQueryRq)
  * @param boolean $todo_for_empty_elements	A constant, one of: QUICKBOOKS_XML_XML_COMPRESS, QUICKBOOKS_XML_XML_DROP, QUICKBOOKS_XML_XML_PRESERVE
  * @param string $indent
  * @param string $root
  * @return string
  */
 public function asQBXML($request, $version = null, $locale = null, $root = null)
 {
     return parent::asQBXML($request, $version, $locale, $root);
 }