39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
<?php
|
|
class search extends Module {
|
|
|
|
protected static $paramsList = array(
|
|
'visibility'
|
|
);
|
|
public $params = array();
|
|
|
|
public function __construct($params){
|
|
echo '<link rel="stylesheet" type="text/css" href="css/search.css">
|
|
<script type="text/javascript" src="js/jquery.search.js"></script>
|
|
<form id="searchForm" method="post">
|
|
<fieldset>
|
|
<input id="s" type="text" />
|
|
<input type="submit" value="Submit" id="submitButton" class="searchbutton" />
|
|
|
|
<ul class="icons">
|
|
<li class="web" title="Web Search" data-searchType="web">Web</li>
|
|
<li class="images" title="Image Search" data-searchType="images">Images</li>
|
|
<li class="news" title="News Search" data-searchType="news">News</li>
|
|
<li class="videos" title="Video Search" data-searchType="video">Videos</li>
|
|
</ul>
|
|
|
|
</fieldset>
|
|
</form>';
|
|
}
|
|
|
|
private function setParams($params){
|
|
$this->params = $params;
|
|
}
|
|
|
|
public static function start($params){
|
|
$search = new search($params);
|
|
}
|
|
|
|
public static function updateConfig($updated){
|
|
|
|
}
|
|
} |