Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3443915
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
drupal-3443915
Commits
75c40754
Commit
75c40754
authored
11 years ago
by
Jennifer Hodgdon
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#1948564
by aitiba: Use new standard to document search conditions callback
parent
d9ac5b6c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/modules/search/search.api.php
+16
-9
16 additions, 9 deletions
core/modules/search/search.api.php
core/modules/search/tests/modules/search_extra_type/search_extra_type.module
+2
-0
2 additions, 0 deletions
.../tests/modules/search_extra_type/search_extra_type.module
with
18 additions
and
9 deletions
core/modules/search/search.api.php
+
16
−
9
View file @
75c40754
...
...
@@ -34,11 +34,7 @@
* the module name if not given.
* - path: Path component after 'search/' for searching with this module.
* Defaults to the module name if not given.
* - conditions_callback: Name of a callback function that is invoked by
* search_view() to get an array of additional search conditions to pass to
* search_data(). For example, a search module may get additional keywords,
* filters, or modifiers for the search from the query string. Sample
* callback function: sample_search_conditions_callback().
* - conditions_callback: An implementation of callback_search_conditions().
*
* @ingroup search
*/
...
...
@@ -46,22 +42,33 @@ function hook_search_info() {
return
array
(
'title'
=>
'Content'
,
'path'
=>
'node'
,
'conditions_callback'
=>
'
sample
_search_conditions
_callback
'
,
'conditions_callback'
=>
'
callback
_search_conditions'
,
);
}
/**
* An example conditions callback function for search.
* Provide search query conditions.
*
* Callback for hook_search_info().
*
* This callback is invoked by search_view() to get an array of additional
* search conditions to pass to search_data(). For example, a search module
* may get additional keywords, filters, or modifiers for the search from
* the query string.
*
* This example pulls additional search keywords out of the $_REQUEST variable,
* (i.e. from the query string of the request). The conditions may also be
* generated internally - for example based on a module's settings.
*
* @see hook_search_info()
* @param $keys
* The search keywords string.
*
* @return
* An array of additional conditions, such as filters.
*
* @ingroup search
*/
function
sample
_search_conditions
_callback
(
$keys
)
{
function
callback
_search_conditions
(
$keys
)
{
$conditions
=
array
();
if
(
!
empty
(
$_REQUEST
[
'keys'
]))
{
...
...
This diff is collapsed.
Click to expand it.
core/modules/search/tests/modules/search_extra_type/search_extra_type.module
+
2
−
0
View file @
75c40754
...
...
@@ -17,6 +17,8 @@ function search_extra_type_search_info() {
}
/**
* Implements callback_search_conditions().
*
* Tests the conditions callback for hook_search_info().
*/
function
search_extra_type_conditions
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment