Ejemplo n.º 1
0
Archivo: Object.php Proyecto: rme/pm2qb
 /**
  * 
  */
 public function decodeApplicationID($encode, &$type, &$tag, &$ID)
 {
     return QuickBooks_API::decodeApplicationID($encode, $type, $tag, $ID);
 }
Ejemplo 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;
 }
Ejemplo n.º 3
0
 /**
  * 
  * 
  * 
  */
 protected static function _decodeApplicationID($encode, &$type, &$tag, &$ID)
 {
     return QuickBooks_API::decodeApplicationID($encode, $type, $tag, $ID);
 }