blob: f13091c9b29c2d5746c0a05dd9800c4fb0d4e5fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?php
/**
* SearchPortlet class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link https://github.com/pradosoft/prado
* @copyright Copyright © 2006-2015 The PRADO Group
* @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT
*/
Prado::using('Application.Portlets.Portlet');
/**
* SearchPortlet class
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link https://github.com/pradosoft/prado
* @copyright Copyright © 2006-2015 The PRADO Group
* @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT
*/
class SearchPortlet extends Portlet
{
public function onInit($param)
{
parent::onInit($param);
if(!$this->Page->IsPostBack && ($keyword=$this->Request['keyword'])!==null)
$this->Keyword->Text=$keyword;
}
public function search($sender,$param)
{
$keyword=$this->Keyword->Text;
$url=$this->Service->constructUrl('SearchPost',array('keyword'=>$keyword),false);
$this->Response->redirect($url);
}
}
|