for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ajax\semantic\components;
use Ajax\common\components\SimpleExtComponent;
use Ajax\JsUtils;
class Search extends SimpleExtComponent {
public function __construct(JsUtils $js) {
parent::__construct($js);
$this->uiName="search";
}
public function setSource($value) {
$this->params["source"]=$value;
return $this;
public function setType($type) {
$this->params["type"]=$type;
public function setSearchFields($fields) {
$this->params["searchFields"]=$fields;
public function setApiSettings($value) {
$this->params["apiSettings"]=$value;
// TODO other events implementation