Exemplo n.º 1
0
 /**
  * Get the spool status
  *
  * Method will return the accounting spool status of $spoolId
  *
  * @access public
  * @param int $spoolId The spool ID
  * @return mixed 1 if the status is TRUE, 0 if status is FALSE, NULL is status is NULL, FALSE on error
  */
 public function getAccountingSpoolStatus($spoolId)
 {
     if (!isId($spoolId)) {
         return false;
     }
     return parent::getAccountingSpoolStatus($this->getid(), $spoolId);
 }