예제 #1
0
파일: Object.php 프로젝트: rme/pm2qb
 /**
  * 
  */
 public function decodeApplicationID($encode, &$type, &$tag, &$ID)
 {
     return QuickBooks_API::decodeApplicationID($encode, $type, $tag, $ID);
 }
예제 #2
0
파일: API.php 프로젝트: Edgargm87/efapcom
 /**
  * 
  * 
  * @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;
 }
예제 #3
0
 /**
  * 
  * 
  * 
  */
 protected static function _decodeApplicationID($encode, &$type, &$tag, &$ID)
 {
     return QuickBooks_API::decodeApplicationID($encode, $type, $tag, $ID);
 }