Exemplo n.º 1
0
 /**
  * Get the currently active accountingspool record
  *
  * Method will return the currenctly active accountingspool record
  *
  * @access public
  * @return array The currently active accountingspool record if one was found, FASLE is the were none
  */
 public function getCurrentSpool()
 {
     $lock = $this->getAccountingSessionKey('UUID');
     if (!$lock || $lock == '') {
         return false;
     }
     return parent::getCurrentSpool($this->getid(), $lock);
 }