Esempio n. 1
0
File: Object.php Progetto: rme/pm2qb
 /**
  * 
  */
 public function decodeApplicationID($encode, &$type, &$tag, &$ID)
 {
     return QuickBooks_API::decodeApplicationID($encode, $type, $tag, $ID);
 }
Esempio n. 2
0
 /**
  * 
  * 
  * @param string $encode
  * @return mixed
  */
 public static function extractApplicationID($encode)
 {
     $type = null;
     $tag = null;
     $ID = null;
     if (QuickBooks_API::decodeApplicationID($encode, $type, $tag, $ID)) {
         return $ID;
     }
     return null;
 }
Esempio n. 3
0
 /**
  * 
  * 
  * 
  */
 protected static function _decodeApplicationID($encode, &$type, &$tag, &$ID)
 {
     return QuickBooks_API::decodeApplicationID($encode, $type, $tag, $ID);
 }