Пример #1
0
 /**
  *
  */
 public function Lookup()
 {
     if (!$this->request->user->canDoAction('can_import_worldcat')) {
         return;
     }
     $o_wc = new WLPlugInformationServiceWorldCat();
     $this->view->setVar('results', $o_wc->lookup(array(), $this->request->getParameter('term', pString), array('start' => (int) $this->request->getParameter('start', pInteger), 'count' => (int) $this->request->getParameter('count', pInteger))));
     $this->render("ajax_worldcat_lookup_json.php");
 }