mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
55294b1f96
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@112357 467b73ca-7a2a-4603-9d3b-597d59a354a9
48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Extension to provide a search interface when applied to ContentController
|
|
*
|
|
* @package sapphire
|
|
* @subpackage search
|
|
*/
|
|
class ContentControllerSearchExtension extends Extension {
|
|
static $allowed_actions = array(
|
|
'SearchForm',
|
|
'results',
|
|
);
|
|
|
|
/**
|
|
* Site search form
|
|
*/
|
|
function SearchForm() {
|
|
$searchText = _t('SearchForm.SEARCH', 'Search');
|
|
|
|
if($this->owner->request) {
|
|
$searchText = $this->owner->request->getVar('Search');
|
|
}
|
|
|
|
$fields = new FieldSet(
|
|
new TextField('Search', false, $searchText)
|
|
);
|
|
$actions = new FieldSet(
|
|
new FormAction('results', _t('SearchForm.GO', 'Go'))
|
|
);
|
|
return new SearchForm($this->owner, 'SearchForm', $fields, $actions);
|
|
}
|
|
|
|
/**
|
|
* Process and render search results.
|
|
*
|
|
* @param array $data The raw request data submitted by user
|
|
* @param SearchForm $form The form instance that was submitted
|
|
* @param SS_HTTPRequest $request Request generated for this action
|
|
*/
|
|
function results($data, $form, $request) {
|
|
$data = array(
|
|
'Results' => $form->getResults(),
|
|
'Query' => $form->getSearchQuery(),
|
|
'Title' => _t('SearchForm.SearchResults', 'Search Results')
|
|
);
|
|
return $this->owner->customise($data)->renderWith(array('Page_results', 'Page'));
|
|
}
|
|
} |