예제 #1
0
파일: Client.php 프로젝트: knatorski/SMS
 /**
  * Pobranie ksiązki adresowej dla Clienta
  * @return type
  */
 protected function _getAddressBook()
 {
     $model = new Addressbook();
     $select = $model->select()->where('created_by = ?', Zend_Auth::getInstance()->getIdentity()->id)->where('ghost IS FALSE');
     return $model->fetchAll($select);
 }