db_or

  1. drupal
    1. 7
Versions
7 db_or()

Returns a new DatabaseCondition, set to "OR" all conditions together.

Return value

DatabaseCondition

Related topics

▾ 19 functions call db_or()

hook_query_TAG_alter in drupal/modules/system/system.api.php
Perform alterations to a structured query for a given tag.
node_access in drupal/modules/node/node.module
Determine whether the current user may perform the given operation on the specified node.
node_access_view_all_nodes in drupal/modules/node/node.module
Determines whether the user has a global viewing grant for all nodes.
node_admin_nodes in drupal/modules/node/node.admin.inc
Form builder: Builds the node administration overview.
node_get_recent in drupal/modules/node/node.module
Find the most recent nodes that are available to the current user.
SearchQuery::executeFirstPass in drupal/modules/search/search.extender.inc
Executes the first pass query.
SearchQuery::parseSearchExpression in drupal/modules/search/search.extender.inc
Parses the search query into SQL conditions.
SearchQuery::setOption in drupal/modules/search/search.extender.inc
Applies a search option and removes it from the search query string.
search_update_totals in drupal/modules/search/search.module
Updates the {search_total} database table.
statistics_node_tracker in drupal/modules/statistics/statistics.pages.inc
system_update_7015 in drupal/modules/system/system.install
Change the user logout path.
system_update_7053 in drupal/modules/system/system.install
Upgrade standard blocks and menus.
system_update_files_database in drupal/modules/system/system.module
Updates the records in the system table based on the files array.
user_search_execute in drupal/modules/user/user.module
Implements hook_search_execute().
_block_rehash in drupal/modules/block/block.module
Update the 'block' DB table with the blocks currently exported by modules.
_locale_translate_seek in drupal/includes/locale.inc
Perform a string search and display results in a table
_menu_navigation_links_rebuild in drupal/includes/menu.inc
Helper function to build menu links for the items in the menu router.
_node_query_node_access_alter in drupal/modules/node/node.module
Helper for node access functions.
_update_authorize_clear_update_status in drupal/modules/update/update.authorize.inc
Private helper function to clear cached available update status data.

Code

drupal/includes/database/database.inc, line 2533

<?php
function db_or() {
  return new DatabaseCondition('OR');
}
?>