Пример #1
0
 /**
  * @return	int
  */
 function AllUserCount()
 {
     $cnt = 0;
     if (!$this->_connector->Execute($this->_commandCreator->AllUserCount())) {
         return false;
     }
     $row = $this->_connector->GetNextRecord();
     if ($row) {
         $cnt = (int) $row->user_cnt;
         $this->_connector->FreeResult();
     }
     return $cnt;
 }