* code for task#1423.

This commit is contained in:
chencongzhi520@gmail.com
2013-06-19 02:48:45 +00:00
parent 276f616253
commit dd03e4dd57
7 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -1512,7 +1512,7 @@ class project extends control
* @access public
* @return void
*/
public function dropMenu($projectID, $module, $method, $extra)
public function ajaxGetDropMenu($projectID, $module, $method, $extra)
{
$this->view->link = $this->getProjectLink($module, $method, $extra);
$this->view->projectID = $projectID;
@@ -1533,7 +1533,7 @@ class project extends control
* @access public
* @return void
*/
public function searchItems($keywords, $module, $method, $extra)
public function ajaxGetMatchedItems($keywords, $module, $method, $extra)
{
$this->view->link = $this->getProjectLink($module, $method, $extra);
$this->view->projects = $this->dao->select('*')->from(TABLE_PROJECT)->where('deleted')->eq(0)->andWhere('name')->like("%$keywords%")->orderBy('code')->fetchAll();