admin_bar_session_count in modules/admin_bar/admin_bar.module
Counts how many users are active on the site.
admin_bar_tree_dynamic in modules/admin_bar/admin_bar.inc
Load menu link trees for router paths containing dynamic arguments.
BackdropDatabaseCache::isEmpty in drivers/cache_database/cache_database.inc
Implements BackdropCacheInterface::isEmpty().
book_block_view in modules/book/book.module
Implements hook_block_view().
book_get_books in modules/book/book.module
Returns an array of all books.
book_menu_subtree_data in modules/book/book.module
Gets the data representing a subtree of the book hierarchy.
book_update_bid in modules/book/book.module
Updates the book ID of a page and its children when it moves to a new book.
comment_admin_overview in modules/comment/comment.admin.inc
Form constructor for the comment overview administration form.
comment_enable in modules/comment/comment.install
Implements hook_enable().
comment_form_validate in modules/comment/comment.module
Form validation handler for comment_form().
comment_get_display_ordinal in modules/comment/comment.module
Gets the display ordinal for a comment, starting from 0.
comment_get_recent in modules/comment/comment.module
Finds the most recent comments that are available to the current user.
comment_get_thread in modules/comment/comment.module
Retrieves comments for a thread.
comment_new_page_count in modules/comment/comment.module
Calculates the page number for the first new comment.
CommentStorageController::postDelete in modules/comment/comment.entity.inc
Overrides EntityDatabaseStorageController::postDelete().
ConfigDatabaseStorage::exists in drivers/config_database/config_database_storage.inc
Returns whether a configuration object exists.
ConfigDatabaseStorage::exportArchive in drivers/config_database/config_database_storage.inc
Export an archive of configuration files from the config storage managed by this object.
ConfigDatabaseStorage::getModifiedTime in drivers/config_database/config_database_storage.inc
Returns a timestamp indicating the last time a configuration was modified.
ConfigDatabaseStorage::listAll in drivers/config_database/config_database_storage.inc
Gets configuration object names starting with a given prefix.
ConfigDatabaseStorage::read in drivers/config_database/config_database_storage.inc
Reads configuration data from the storage.
DatabaseAlterTestCase::testAlterChangeConditional in modules/simpletest/tests/database_test.test
Test that we can alter a query's conditionals.
DatabaseAlterTestCase::testAlterChangeFields in modules/simpletest/tests/database_test.test
Test that we can alter the fields of a query.
DatabaseAlterTestCase::testAlterExpression in modules/simpletest/tests/database_test.test
Test that we can alter expressions in the query.
DatabaseAlterTestCase::testAlterRemoveRange in modules/simpletest/tests/database_test.test
Test that we can remove a range() value from a query. This also tests hook_query_TAG_alter().
DatabaseAlterTestCase::testAlterWithJoin in modules/simpletest/tests/database_test.test
Test that we can alter the joins on a query.
DatabaseAlterTestCase::testSimpleAlter in modules/simpletest/tests/database_test.test
Test that we can do basic alters.
DatabaseAlterTestCase::testSimpleAlterSubquery in modules/simpletest/tests/database_test.test
Test that we can do basic alters on subqueries.
DatabaseBasicSyntaxTestCase::testLikeBackslash in modules/simpletest/tests/database_test.test
Test LIKE query containing a backslash.
DatabaseBasicSyntaxTestCase::testLikeEscape in modules/simpletest/tests/database_test.test
Test escaping of LIKE wildcards.
DatabaseDeleteTruncateTestCase::testSubselectDelete in modules/simpletest/tests/database_test.test
Confirm that we can use a subselect in a delete successfully.
DatabaseInsertTestCase::testInsertSelectAll in modules/simpletest/tests/database_test.test
Tests that the INSERT INTO ... SELECT * ... syntax works.
DatabaseInsertTestCase::testInsertSelectFields in modules/simpletest/tests/database_test.test
Test that the INSERT INTO ... SELECT (fields) ... syntax works.
DatabaseInvalidDataTestCase::testInsertDuplicateData in modules/simpletest/tests/database_test.test
Traditional SQL database systems abort inserts when invalid data is encountered.
DatabaseQueryTestCase::testArrayArgumentsSQLInjection in modules/simpletest/tests/database_test.test
Test SQL injection via database query array arguments.
DatabaseReservedKeywordTestCase::testSelectReservedWordAliasAllFields in modules/simpletest/tests/database_test.test
DatabaseReservedKeywordTestCase::testSelectReservedWordAliasCount in modules/simpletest/tests/database_test.test
DatabaseReservedKeywordTestCase::testSelectReservedWordAliasSpecificFields in modules/simpletest/tests/database_test.test
DatabaseReservedKeywordTestCase::testSelectReservedWordTableAllFields in modules/simpletest/tests/database_test.test
DatabaseReservedKeywordTestCase::testSelectReservedWordTableCount in modules/simpletest/tests/database_test.test
DatabaseReservedKeywordTestCase::testSelectReservedWordTableSpecificField in modules/simpletest/tests/database_test.test
DatabaseSelectCloneTest::testSelectConditionSubQueryCloning in modules/simpletest/tests/database_test.test
Test that subqueries as value within conditions are cloned properly.
DatabaseSelectComplexTestCase2::testJoinSubquery in modules/simpletest/tests/database_test.test
Test that we can join on a query.
DatabaseSelectComplexTestCase::testCountQuery in modules/simpletest/tests/database_test.test
Test that we can generate a count query from a built query.
DatabaseSelectComplexTestCase::testCountQueryDistinct in modules/simpletest/tests/database_test.test
Test that we can generate a count query from a query with distinct.
DatabaseSelectComplexTestCase::testCountQueryFieldRemovals in modules/simpletest/tests/database_test.test
Test that countQuery properly removes fields and expressions.
DatabaseSelectComplexTestCase::testCountQueryGroupBy in modules/simpletest/tests/database_test.test
Test that we can generate a count query from a query with GROUP BY.
DatabaseSelectComplexTestCase::testCountQueryRemovals in modules/simpletest/tests/database_test.test
Test that countQuery properly removes 'all_fields' statements and ordering clauses.
DatabaseSelectComplexTestCase::testDefaultJoin in modules/simpletest/tests/database_test.test
Test simple JOIN statements.
DatabaseSelectComplexTestCase::testDistinct in modules/simpletest/tests/database_test.test
Test distinct queries.
DatabaseSelectComplexTestCase::testGroupBy in modules/simpletest/tests/database_test.test
Test GROUP BY clauses.
DatabaseSelectComplexTestCase::testGroupByAndHaving in modules/simpletest/tests/database_test.test
Test GROUP BY and HAVING clauses together.
DatabaseSelectComplexTestCase::testHavingCountQuery in modules/simpletest/tests/database_test.test
DatabaseSelectComplexTestCase::testJoinTwice in modules/simpletest/tests/database_test.test
Confirm we can join on a single table twice with a dynamic alias.
DatabaseSelectComplexTestCase::testLeftOuterJoin in modules/simpletest/tests/database_test.test
Test LEFT OUTER joins.
DatabaseSelectComplexTestCase::testNestedConditions in modules/simpletest/tests/database_test.test
Confirm that we can properly nest conditional clauses.
DatabaseSelectComplexTestCase::testRange in modules/simpletest/tests/database_test.test
Test range queries. The SQL clause varies with the database.
DatabaseSelectOrderedTestCase::testOrderByEscaping in modules/simpletest/tests/database_test.test
Tests that the sort direction is sanitized properly.
DatabaseSelectOrderedTestCase::testSimpleSelectMultiOrdered in modules/simpletest/tests/database_test.test
Test multiple order by.
DatabaseSelectOrderedTestCase::testSimpleSelectOrdered in modules/simpletest/tests/database_test.test
Test basic order by.
DatabaseSelectOrderedTestCase::testSimpleSelectOrderedDesc in modules/simpletest/tests/database_test.test
Test order by descending.
DatabaseSelectPagerDefaultTestCase::testElementNumbers in modules/simpletest/tests/database_test.test
Confirm that every pager gets a valid non-overlaping element ID.
DatabaseSelectPagerDefaultTestCase::testHavingPagerQuery in modules/simpletest/tests/database_test.test
Confirm that a paging query with a having expression returns valid results.
DatabaseSelectPagerDefaultTestCase::testInnerPagerQuery in modules/simpletest/tests/database_test.test
Confirm that a pager query with inner pager query returns valid results.
DatabaseSelectSubqueryTestCase::testConditionSubquerySelect in modules/simpletest/tests/database_test.test
Test that we can use a subquery in a WHERE clause.
DatabaseSelectSubqueryTestCase::testExistsSubquerySelect in modules/simpletest/tests/database_test.test
Test EXISTS subquery conditionals on SELECT statements.
DatabaseSelectSubqueryTestCase::testFromSubquerySelect in modules/simpletest/tests/database_test.test
Test that we can use a subquery in a FROM clause.
DatabaseSelectSubqueryTestCase::testFromSubquerySelectWithLimit in modules/simpletest/tests/database_test.test
Test that we can use a subquery in a FROM clause with a limit.
DatabaseSelectSubqueryTestCase::testJoinSubquerySelect in modules/simpletest/tests/database_test.test
Test that we can use a subquery in a JOIN clause.
DatabaseSelectSubqueryTestCase::testNotExistsSubquerySelect in modules/simpletest/tests/database_test.test
Test NOT EXISTS subquery conditionals on SELECT statements.
DatabaseSelectTestCase::testIsNotNullCondition in modules/simpletest/tests/database_test.test
Test that we can find a record without a NULL value.
DatabaseSelectTestCase::testIsNullCondition in modules/simpletest/tests/database_test.test
Test that we can find a record with a NULL value.
DatabaseSelectTestCase::testNullCondition in modules/simpletest/tests/database_test.test
Test that a comparison with NULL is always FALSE.
DatabaseSelectTestCase::testRandomOrder in modules/simpletest/tests/database_test.test
Test that random ordering of queries works.
DatabaseSelectTestCase::testSelectDuplicateAlias in modules/simpletest/tests/database_test.test
Test that aliases are renamed when duplicates.
DatabaseSelectTestCase::testSimpleComment in modules/simpletest/tests/database_test.test
Test rudimentary SELECT statement with a COMMENT.
DatabaseSelectTestCase::testSimpleSelect in modules/simpletest/tests/database_test.test
Test rudimentary SELECT statements.
DatabaseSelectTestCase::testSimpleSelectAllFields in modules/simpletest/tests/database_test.test
Test adding all fields from a given table to a select statement.
DatabaseSelectTestCase::testSimpleSelectConditional in modules/simpletest/tests/database_test.test
Test basic conditionals on SELECT statements.
DatabaseSelectTestCase::testSimpleSelectExpression in modules/simpletest/tests/database_test.test
Test SELECT statements with expressions.
DatabaseSelectTestCase::testSimpleSelectExpressionMultiple in modules/simpletest/tests/database_test.test
Test SELECT statements with multiple expressions.
DatabaseSelectTestCase::testSimpleSelectMultipleFields in modules/simpletest/tests/database_test.test
Test adding multiple fields to a select statement at the same time.
DatabaseSelectTestCase::testUnion in modules/simpletest/tests/database_test.test
Test that we can UNION multiple Select queries together. This is semantically equal to UNION DISTINCT, so we don't explicity test that.
DatabaseSelectTestCase::testUnionAll in modules/simpletest/tests/database_test.test
Test that we can UNION ALL multiple Select queries together.
DatabaseSelectTestCase::testVulnerableComment in modules/simpletest/tests/database_test.test
Test query COMMENT system against vulnerabilities.
DatabaseSerializeQueryTestCase::testSerializeQuery in modules/simpletest/tests/database_test.test
Confirm that a query can be serialized and unserialized.
DatabaseTaggingTestCase::testExtenderHasAllTags in modules/simpletest/tests/database_test.test
Test extended query tagging "has all of these tags" functionality.
DatabaseTaggingTestCase::testExtenderHasAnyTag in modules/simpletest/tests/database_test.test
Test extended query tagging "has at least one of these tags" functionality.
DatabaseTaggingTestCase::testExtenderHasTag in modules/simpletest/tests/database_test.test
Confirm that an extended query has a "tag" added to it.
DatabaseTaggingTestCase::testHasAllTags in modules/simpletest/tests/database_test.test
Test query tagging "has all of these tags" functionality.
DatabaseTaggingTestCase::testHasAnyTag in modules/simpletest/tests/database_test.test
Test query tagging "has at least one of these tags" functionality.
DatabaseTaggingTestCase::testHasTag in modules/simpletest/tests/database_test.test
Confirm that a query has a "tag" added to it.
DatabaseTaggingTestCase::testMetaData in modules/simpletest/tests/database_test.test
Test that we can attach meta data to a query object.
DatabaseTemporaryQueryTestCase::countTableRows in modules/simpletest/tests/database_test.test
Return the number of rows of a table.
database_test_db_query_temporary in modules/simpletest/tests/database_test.module
Run a db_query_temporary and output the table name and its number of rows.
database_test_even_pager_query in modules/simpletest/tests/database_test.module
Run a pager query and return the results.
database_test_odd_pager_query in modules/simpletest/tests/database_test.module
Run a pager query and return the results.
database_test_tablesort in modules/simpletest/tests/database_test.module
Run a tablesort query and return the results.
database_test_tablesort_first in modules/simpletest/tests/database_test.module
Run a tablesort query with a second order_by after and return the results.
database_test_theme_tablesort in modules/simpletest/tests/database_test.module
Output a form without setting a header sort.
dblog_cron in modules/dblog/dblog.module
Implements hook_cron().
dblog_overview in modules/dblog/dblog.admin.inc
Page callback: Displays a listing of database log messages.
dblog_top in modules/dblog/dblog.admin.inc
Page callback: Shows the most frequent log messages of a given event type.
DefaultEntityController::buildQuery in modules/entity/entity.controller.inc
Builds the query to load the entity.
EntityFieldQuery::propertyQuery in modules/entity/entity.query.inc
Queries entity tables in SQL for property conditions and sorts.
field_sql_storage_field_storage_load in modules/field/modules/field_sql_storage/field_sql_storage.module
Implements hook_field_storage_load().
field_sql_storage_field_storage_query in modules/field/modules/field_sql_storage/field_sql_storage.module
Implements hook_field_storage_query().
FieldSqlStorageTestCase::testFieldAttachInsertAndUpdate in modules/field/modules/field_sql_storage/tests/field_sql_storage.test
Reads mysql to verify correct data is written when using insert and update.
FieldSqlStorageTestCase::testFieldAttachSaveMissingData in modules/field/modules/field_sql_storage/tests/field_sql_storage.test
Tests insert and update with missing or NULL fields.
field_test_entity_test_load in modules/field/tests/field_test/field_test.entity.inc
Loads a test_entity.
FileAdminTestCase::testFileAdminPages in modules/file/tests/file.test
Tests file overview with different user permissions.
FileAdminTestCase::testFilesAdminSort in modules/file/tests/file.test
Tests that the table sorting works on the files admin pages.
FileFileTypeClassificationTestCase::getFileType in modules/file/tests/file.test
Get the file type of a given file.
_file_query_file_access_alter in modules/file/file.module
Helper for file entity access functions.
file_space_used in includes/file.inc
Determines total disk space used by a single user or the whole filesystem.
file_usage_list in includes/file.inc
Determines where a file is used.
FileUsageTest::testAddUsage in modules/simpletest/tests/file.test
Tests file_usage_add().
FileUsageTest::testRemoveUsage in modules/simpletest/tests/file.test
Tests file_usage_delete().
_filter_get_file_id in modules/filter/filter.pages.inc
Find a managed file ID from a url.
hook_entity_predelete in modules/entity/entity.api.php
Act before entity deletion.
hook_field_storage_load in modules/field/field.api.php
Load field data for a set of entities.
hook_field_storage_query in modules/field/field.api.php
Execute an EntityFieldQuery.
hook_search_execute in modules/search/search.api.php
Execute a search for a set of key words.
hook_taxonomy_term_load in modules/taxonomy/taxonomy.api.php
Act on taxonomy terms when loaded.
hook_taxonomy_vocabulary_load in modules/taxonomy/taxonomy.api.php
Act on taxonomy vocabularies when loaded.
hook_update_N in modules/system/system.api.php
Perform a single update.
hook_user_cancel in modules/user/user.api.php
Act on user account cancellations.
LocaleCommentLanguageFunctionalTest::testCommentLanguage in modules/locale/tests/locale.test
Test that comment language is properly set.
LocaleJavascriptTranslationTest::testFileParsing in modules/locale/tests/locale.test
_locale_parse_js_file in includes/locale.inc
Parses a JavaScript file, extracts strings wrapped in Backdrop.t() and Backdrop.formatPlural() and inserts them into the database.
_locale_translate_seek in modules/locale/locale.pages.inc
Perform a string search and display results in a table
LocaleTranslationFunctionalTest::testJavaScriptTranslation in modules/locale/tests/locale.test
locale_update_1000 in modules/locale/locale.install
Drop textgroup support.
locale_update_1002 in modules/locale/locale.install
Removes duplicates in {locales_source}.
_menu_build_tree in includes/menu.inc
Builds a menu tree.
menu_contextual_links in includes/menu.inc
Retrieves contextual links for a path based on registered local tasks.
_menu_find_router_path in includes/menu.inc
Finds the router path which will serve this path.
MenuLanguageTestCase::validateParentOptions in modules/menu/tests/menu_language.test
Verify that the items provided in the select list are usable as parents.
menu_link_children_relative_depth in includes/menu.inc
Finds the depth of an item's children relative to its depth.
_menu_link_find_parent in includes/menu.inc
Finds a possible parent for a given menu link.
menu_link_get_preferred in includes/menu.inc
Looks up the preferred menu link for a given system path.
menu_link_load in includes/menu.inc
Gets a translated menu link that is ready for rendering.
menu_load_links in includes/menu.inc
Returns an array containing all links for a menu.
menu_local_tasks in includes/menu.inc
Collects the local tasks (tabs), action links, and the root path.
_menu_navigation_links_rebuild in includes/menu.inc
Builds menu links for the items in the menu router.
MenuRouterTestCase::testMenuHidden in modules/simpletest/tests/menu.test
Tests menu link depth and parents of local tasks and menu callbacks.
menu_tokens in modules/menu/menu.tokens.inc
Implements hook_tokens() on behalf of menu.module.
menu_tree_check_access in includes/menu.inc
Checks access and performs dynamic operations for each link in the tree.
menu_tree_page_data in includes/menu.inc
Gets the data structure for a named menu tree, based on the current page.
_menu_update_parental_status in includes/menu.inc
Checks and updates the 'has_children' status for the parent of a link.
Node::access in modules/node/node.entity.inc
Overrides Entity::access().
node_access_test_page in modules/node/tests/node_access_test/node_access_test.module
Page callback: Creates the node access test page.
node_access_view_all_nodes in modules/node/node.module
Determines whether the user has a global viewing grant for all nodes.
NodeAdminTestCase::testContentAdminSort in modules/node/tests/node.test
Tests that the table sorting works on the content admin pages.
node_autocomplete in modules/node/node.pages.inc
Autocomplete callback for nodes by title.
node_autocomplete_validate in modules/node/node.pages.inc
Node title validation handler.
node_cron in modules/node/node.module
Implements hook_cron().
node_feed in modules/node/node.module
Page callback: Generates and prints an RSS feed.
node_get_recent in modules/node/node.module
Finds the most recently changed nodes that are available to the current user.
node_page_default in modules/node/node.module
Menu callback; Generate a listing of promoted nodes.
node_path_bulk_update_batch_process in modules/node/node.path.inc
Batch processing callback; Generate or update aliases for nodes.
node_path_type_delete_callback in modules/node/node.path.inc
Callback to delete aliases for node types.
NodeQueryAlter::testNodeQueryAlterLowLevelEditAccess in modules/node/tests/node.test
Tests 'node_access' query alter, for edit access.
NodeQueryAlter::testNodeQueryAlterLowLevelNoAccess in modules/node/tests/node.test
Tests 'node_access' query alter, for user without access.
NodeQueryAlter::testNodeQueryAlterLowLevelWithAccess in modules/node/tests/node.test
Tests 'node_access' query alter, for user with access.
NodeQueryAlter::testNodeQueryAlterOverride in modules/node/tests/node.test
Tests 'node_access' query alter override.
_node_query_node_access_alter in modules/node/node.module
Helper for node access functions.
NodeRevisionsTestCase::testRevisions in modules/node/tests/node.test
Checks node revision related operations.
node_search_execute in modules/node/node.module
Implements hook_search_execute().
node_tokens in modules/node/node.tokens.inc
Implements hook_tokens().
node_user_cancel in modules/node/node.module
Implements hook_user_cancel().
node_user_predelete in modules/node/node.module
Implements hook_user_predelete().
path_admin_overview in modules/path/path.admin.inc
Returns a listing of all defined URL aliases.
path_autocomplete in modules/system/system.module
Menu callback; Autocomplete callback for paths.
path_bulk_update_batch_finished in modules/path/path.admin.inc
Batch finished callback.
path_bulk_update_batch_start in modules/path/path.admin.inc
Batch callback; count the current number of URL aliases for comparison later.
path_form_element_validate in modules/path/path.module
Form element validation handler for URL alias form element.
path_load in includes/path.inc
Fetches a specific URL alias from the database.
path_load_multiple in includes/path.inc
Load a collection of URL aliases from the database all at once.
redirect_404_list in modules/redirect/redirect.admin.inc
Form callback; Display a list of all recent 404 pages.
redirect_delete_by_path in modules/redirect/redirect.module
Delete any redirects associated with a path or any of its sub-paths.
redirect_list_form in modules/redirect/redirect.admin.inc
Form callback; Display the list of all redirects.
redirect_load_by_source in modules/redirect/redirect.module
Load multiple URL redirects from the database by {redirect}.source.
redirect_load_multiple in modules/redirect/redirect.module
Load multiple URL redirects from the database.
redirect_purge_inactive_redirects in modules/redirect/redirect.module
Purge inactive redirects from the database.
SchemaTestCase::assertFieldCharacteristics in modules/simpletest/tests/schema.test
Assert that a newly added field has the correct characteristics.
SearchConfigSettingsForm::testSearchNodeTypes in modules/search/tests/search.test
Verify enabling/disabling of certain node types.
SearchMatchTestCase::_testQueries in modules/search/tests/search.test
Run predefine queries looking for indexed terms.
SearchQuery::countQuery in modules/search/search.extender.inc
Builds the default count query for SearchQuery.
SearchSetLocaleTest::testSearchWithNumericLocale in modules/search/tests/search.test
Verify that search works with a numeric locale set.
simpletest_result_get in modules/simpletest/simpletest.pages.inc
Get test results for $test_id.
system_admin_menu_block in modules/system/system.module
Provide a single block on the administration overview page.
system_get_module_admin_tasks in modules/system/system.module
Generate a list of tasks offered by a specified module.
system_transliteration_file_query in modules/system/system.admin.inc
Builds a query that returns all file names from the database containing non-ASCII characters.
taxonomy_autocomplete in modules/taxonomy/taxonomy.pages.inc
Page callback: Outputs JSON for taxonomy autocomplete suggestions.
taxonomy_get_tree in modules/taxonomy/taxonomy.module
Create a hierarchical representation of a vocabulary.
taxonomy_path_bulk_update_batch_process in modules/taxonomy/taxonomy.path.inc
Batch processing callback; Generate URL aliases for taxonomy terms.
taxonomy_path_type_delete_callback in modules/taxonomy/taxonomy.path.inc
Callback to delete aliases for taxonomy types.
TaxonomyQueryAlterTestCase::testTaxonomyQueryAlter in modules/taxonomy/tests/taxonomy.test
Tests that appropriate tags are added when querying the database.
taxonomy_select_nodes in modules/taxonomy/taxonomy.module
Return nodes attached to a term across all field instances.
taxonomy_term_load_children in modules/taxonomy/taxonomy.module
Finds all children of a term ID.
taxonomy_term_load_parents in modules/taxonomy/taxonomy.module
Finds all parents of a given term ID.
taxonomy_test_get_antonym in modules/simpletest/tests/taxonomy_test.module
Return the antonym of the given term ID.
taxonomy_tokens in modules/taxonomy/taxonomy.tokens.inc
Implements hook_tokens().
translation_node_get_translations in modules/translation/translation.module
Gets all nodes in a given translation set.
translation_node_update in modules/translation/translation.module
Implements hook_node_update().
_update_get_cache_multiple in modules/update/update.module
Returns an array of cache items with a given cache ID prefix.
update_prepare_language in includes/update.inc
Prepare Backdrop language changes for the bootstrap if needed.
user_account_form_validate in modules/user/user.module
Form validation handler for user_account_form().
user_autocomplete in modules/user/user.pages.inc
Menu callback; retrieve a JSON object containing autocomplete suggestions for existing users.
user_is_blocked in modules/user/user.module
Checks for usernames blocked by user administration.
user_path_bulk_update_batch_process in modules/user/user.path.inc
Batch processing callback; Generate URL aliases for users.
user_search_execute in modules/user/user.module
Implements hook_search_execute().
views_ajax_autocomplete_taxonomy in modules/views/includes/ajax.inc
Page callback for views taxonomy autocomplete.
views_ajax_autocomplete_user in modules/views/includes/ajax.inc
Page callback for views user autocomplete
views_handler_argument_comment_user_uid::query in modules/comment/views/views_handler_argument_comment_user_uid.inc
Set up the query for this argument.
views_handler_argument_file_fid::title_query in modules/file/views/views_handler_argument_file_fid.inc
Override the behavior of title_query(). Get the filenames.
views_handler_argument_search::query_parse_search_expression in modules/search/views/views_handler_argument_search.inc
Take sure that parseSearchExpression is runned and everything is set up for it.
views_handler_argument_term_node_tid_depth::query in modules/taxonomy/views/views_handler_argument_term_node_tid_depth.inc
Set up the query for this argument.
views_handler_argument_term_node_tid::title_query in modules/taxonomy/views/views_handler_argument_term_node_tid.inc
Override for specific title lookups.
views_handler_field_term_node_tid::pre_render in modules/taxonomy/views/views_handler_field_term_node_tid.inc
Run before any fields are rendered.
views_handler_filter_comment_user_uid::query in modules/comment/views/views_handler_filter_comment_user_uid.inc
Add this filter to the query.
views_handler_filter_search::query_parse_search_expression in modules/search/views/views_handler_filter_search.inc
Take sure that parseSearchExpression is runned and everything is set up for it.
views_handler_filter_term_node_tid::admin_summary in modules/taxonomy/views/views_handler_filter_term_node_tid.inc
Display the filter on the administrative summary
views_handler_filter_term_node_tid_depth::query in modules/taxonomy/views/views_handler_filter_term_node_tid_depth.inc
Add this filter to the query.
views_handler_filter_term_node_tid::validate_term_strings in modules/taxonomy/views/views_handler_filter_term_node_tid.inc
Validate the user string. In order to handle multiple input sources, this is abstracted out a bit; since this can come from either the form, or the exposed filter.
views_handler_filter_term_node_tid::value_form in modules/taxonomy/views/views_handler_filter_term_node_tid.inc
Options form subform for setting options.
views_handler_relationship_node_term_data::query in modules/taxonomy/views/views_handler_relationship_node_term_data.inc
Called to implement a relationship in a query.
views_plugin_argument_validate_taxonomy_term::process_summary_arguments in modules/taxonomy/views/views_plugin_argument_validate_taxonomy_term.inc
Process the summary arguments for displaying.
views_plugin_argument_validate_taxonomy_term::validate_argument in modules/taxonomy/views/views_plugin_argument_validate_taxonomy_term.inc
WatchdogTestCase::assertLogMessage in modules/simpletest/tests/bootstrap.test
Verify a log entry was entered. Called in the same way of theme expected original watchdog() execution.
WatchdogTestCase::assertNoLogMessage in modules/simpletest/tests/bootstrap.test
Verify no log entry was entered. Called in the same way of the expected original watchdog() execution.