summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-01-13 17:34:01 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-01-13 17:34:01 +0000
commit5314b9a14cc42b4cab0aead75518e94748e6cadd (patch)
treec3bf93be90a5e9ae774d7a78efb4ce8cb47ee522
parentccfc5e159ffb054d3ebb61e15da5d2f8ff090183 (diff)
downloadbrdo-5314b9a14cc42b4cab0aead75518e94748e6cadd.tar.gz
brdo-5314b9a14cc42b4cab0aead75518e94748e6cadd.tar.bz2
- Some search doxygen tweaks
-rw-r--r--modules/search.module10
-rw-r--r--modules/search/search.module10
2 files changed, 10 insertions, 10 deletions
diff --git a/modules/search.module b/modules/search.module
index bdc882838..691c76486 100644
--- a/modules/search.module
+++ b/modules/search.module
@@ -285,7 +285,7 @@ function search_preprocess(&$text) {
/**
- * Update the search index for a particular item.
+ * Update the full-text search index for a particular item.
*
* @param $sid
* A number identifying this particular item (e.g. node id).
@@ -407,10 +407,10 @@ function search_index($sid, $type, $text) {
}
/**
- * Perform a search on a word or words.
+ * Do a query on the full-text search index for a word or words.
*
- * This function is called by each module that supports the indexed search
- * (and thus, implements hook_update_index()).
+ * This function is normally only called by each module that support the
+ * indexed search (and thus, implements hook_update_index()).
*
* The final query is an SQL select on the search_index table. As a guide for
* writing the optional extra SQL fragments (see below), use this query:
@@ -602,7 +602,7 @@ function search_form($action = '', $keys = '', $type = null) {
}
/**
- * Perform a search on the given keys, and return the formatted results.
+ * Perform a standard search on the given keys, and return the formatted results.
*/
function search_data($keys = NULL, $type = 'node') {
$output = '';
diff --git a/modules/search/search.module b/modules/search/search.module
index bdc882838..691c76486 100644
--- a/modules/search/search.module
+++ b/modules/search/search.module
@@ -285,7 +285,7 @@ function search_preprocess(&$text) {
/**
- * Update the search index for a particular item.
+ * Update the full-text search index for a particular item.
*
* @param $sid
* A number identifying this particular item (e.g. node id).
@@ -407,10 +407,10 @@ function search_index($sid, $type, $text) {
}
/**
- * Perform a search on a word or words.
+ * Do a query on the full-text search index for a word or words.
*
- * This function is called by each module that supports the indexed search
- * (and thus, implements hook_update_index()).
+ * This function is normally only called by each module that support the
+ * indexed search (and thus, implements hook_update_index()).
*
* The final query is an SQL select on the search_index table. As a guide for
* writing the optional extra SQL fragments (see below), use this query:
@@ -602,7 +602,7 @@ function search_form($action = '', $keys = '', $type = null) {
}
/**
- * Perform a search on the given keys, and return the formatted results.
+ * Perform a standard search on the given keys, and return the formatted results.
*/
function search_data($keys = NULL, $type = 'node') {
$output = '';