Skip to content
Snippets Groups Projects
Commit 942c22d8 authored by Demian Katz's avatar Demian Katz
Browse files

Stripped out unused code that was causing notices/warnings.

parent 3b6a3811
No related merge requests found
...@@ -8,8 +8,6 @@ ...@@ -8,8 +8,6 @@
// Load search actions and settings (if any): // Load search actions and settings (if any):
$options = $this->searchOptions($this->searchClassId); $options = $this->searchOptions($this->searchClassId);
$basicSearch = $options->getSearchAction(); $basicSearch = $options->getSearchAction();
$searchHome = $basicSearch;
$searchHome['action'] = 'Home';
$lastSort = $options->getLastSort(); $lastSort = $options->getLastSort();
$lastLimit = $options->getLastLimit(); $lastLimit = $options->getLastLimit();
?> ?>
...@@ -19,46 +17,27 @@ ...@@ -19,46 +17,27 @@
<!-- SEARCH BOXES --> <!-- SEARCH BOXES -->
<form id="advSearchForm" name="searchForm" method="get" action="<?=$this->url($this->options->getSearchAction())?>" data-ajax="false"> <form id="advSearchForm" name="searchForm" method="get" action="<?=$this->url($this->options->getSearchAction())?>" data-ajax="false">
<input type="hidden" name="join" value="AND" /> <input type="hidden" name="join" value="AND" />
<? /* fallback to a fixed set of search groups/fields if JavaScript is turned off */ ?> <? $numGroups = 1; $numRows = 3; // hard-coded sizes ?>
<? if ($groups !== false) {
$numGroups = count($groups);
}
if (!isset($numGroups) || $numGroups < 3) {
$numGroups = 1;
}
?>
<? for ($i = 0; $i < $numGroups; $i++): ?> <? for ($i = 0; $i < $numGroups; $i++): ?>
<input type="hidden" name="bool<?=$i?>[]" value="AND" /> <input type="hidden" name="bool<?=$i?>[]" value="AND" />
<fieldset class="ui-grid-b"> <fieldset class="ui-grid-b">
<?
if (isset($groups[$i])) {
$currentGroup = $groups[$i]->getQueries();
$numRows = count($currentGroup);
} else {
$currentGroup = false;
}
if (!isset($numRows) || $numRows < 3) {
$numRows = 3;
}
?>
<? for ($j = 0; $j < $numRows; $j++): ?> <? for ($j = 0; $j < $numRows; $j++): ?>
<? $currRow = isset($currentGroup[$j]) ? $currentGroup[$j] : false; ?>
<div class="ui-block-a"> <div class="ui-block-a">
<select id="search_type<?=$i?>_<?=$j?>" name="type<?=$i?>[]"> <select id="search_type<?=$i?>_<?=$j?>" name="type<?=$i?>[]">
<? foreach ($this->options->getAdvancedHandlers() as $searchVal => $searchDesc): ?> <? foreach ($this->options->getAdvancedHandlers() as $searchVal => $searchDesc): ?>
<option value="<?=$this->escapeHtmlAttr($searchVal)?>"<?=($currRow && $currRow->getHandler() == $searchVal)?' selected="selected"':''?>><?=$this->transEsc($searchDesc)?></option> <option value="<?=$this->escapeHtmlAttr($searchVal)?>"><?=$this->transEsc($searchDesc)?></option>
<? endforeach; ?> <? endforeach; ?>
</select> </select>
</div> </div>
<div class="ui-block-b"> <div class="ui-block-b">
<select id="searchForm_op<?=$i?>_<?=$j?>" name="op<?=$i?>[]"> <select id="searchForm_op<?=$i?>_<?=$j?>" name="op<?=$i?>[]">
<? foreach ($this->options->getAdvancedOperators() as $searchVal => $searchDesc): ?> <? foreach ($this->options->getAdvancedOperators() as $searchVal => $searchDesc): ?>
<option value="<?=$this->escapeHtmlAttr($searchVal)?>"<?=($currRow && $currRow->getOperator() == $searchVal)?' selected="selected"':''?>><?=$this->transEsc($searchDesc)?></option> <option value="<?=$this->escapeHtmlAttr($searchVal)?>"><?=$this->transEsc($searchDesc)?></option>
<? endforeach; ?> <? endforeach; ?>
</select> </select>
</div> </div>
<div class="ui-block-c"> <div class="ui-block-c">
<input id="search_lookfor<?=$i?>_<?=$j?>" type="text" value="<?=$currRow?$this->escapeHtmlAttr($currRow->getString()):''?>" name="lookfor<?=$i?>[]" style="margin-top:.5em;height:28px"/> <input id="search_lookfor<?=$i?>_<?=$j?>" type="text" value="" name="lookfor<?=$i?>[]" style="margin-top:.5em;height:28px"/>
</div> </div>
<? endfor; ?> <? endfor; ?>
</fieldset> </fieldset>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment