コード例 #1
0
 public function autocompleteAction()
 {
     $this->_helper->layout()->disableLayout();
     $name = (string) $this->getRequest()->getParam('name');
     $contact = new Default_Model_Contact();
     $this->view->contacts = $contact->search($name);
 }
コード例 #2
0
 public function indexAction()
 {
     $addressBook = new Default_Model_AddressBook();
     $contact = new Default_Model_Contact();
     $id = (int) $this->getRequest()->getParam('addressbook');
     $name = (string) $this->getRequest()->getParam('name');
     $this->view->contacts = $contact->search($name, $id);
     $form = new Default_Form_AddressBookSelector();
     $form->populate(array('addressbook' => $id));
     $form->populate(array('name' => $name));
     $this->view->form = $form;
 }