241 calls to db_select()

actions_do in drupal-7.x/includes/actions.inc
Performs a given list of actions by executing their callback functions.
aggregator_feed_items_load in drupal-7.x/modules/aggregator/aggregator.pages.inc
Loads and optionally filters feed items.
blog_block_view in drupal-7.x/modules/blog/blog.module
Implements hook_block_view().
blog_feed_last in drupal-7.x/modules/blog/blog.pages.inc
Menu callback; displays an RSS feed containing recent blog entries of all users.
blog_feed_user in drupal-7.x/modules/blog/blog.pages.inc
Menu callback; displays an RSS feed containing recent blog entries of a given user.
blog_page_last in drupal-7.x/modules/blog/blog.pages.inc
Menu callback; displays a Drupal page containing recent blog entries of all users.
blog_page_user in drupal-7.x/modules/blog/blog.pages.inc
Menu callback; displays a Drupal page containing recent blog entries of a given user.
book_block_view in drupal-7.x/modules/book/book.module
Implements hook_block_view().
book_get_books in drupal-7.x/modules/book/book.module
Returns an array of all books.
book_menu_subtree_data in drupal-7.x/modules/book/book.module
Gets the data representing a subtree of the book hierarchy.
book_update_bid in drupal-7.x/modules/book/book.module
Updates the book ID of a page and its children when it moves to a new book.
CategorizeFeedItemTestCase::testCategorizeFeedItem in drupal-7.x/modules/aggregator/aggregator.test
Checks that children of a feed inherit a defined category.
comment_admin_overview in drupal-7.x/modules/comment/comment.admin.inc
Form builder for the comment overview administration form.
comment_enable in drupal-7.x/modules/comment/comment.install
Implements hook_enable().
comment_form_validate in drupal-7.x/modules/comment/comment.module
Validate comment form submissions.
comment_get_display_ordinal in drupal-7.x/modules/comment/comment.module
Get the display ordinal for a comment, starting from 0.
comment_get_recent in drupal-7.x/modules/comment/comment.module
Find the most recent comments that are available to the current user.
comment_get_thread in drupal-7.x/modules/comment/comment.module
Retrieve comments for a thread.
comment_new_page_count in drupal-7.x/modules/comment/comment.module
Calculate page number for first new comment.
comment_update_7006 in drupal-7.x/modules/comment/comment.install
Migrate data from the comment field to field storage.
contact_category_edit_form_validate in drupal-7.x/modules/contact/contact.admin.inc
Form validation handler for contact_category_edit_form().
contact_category_list in drupal-7.x/modules/contact/contact.admin.inc
Categories/list tab.
contact_load in drupal-7.x/modules/contact/contact.module
Loads a contact category.
contact_site_form in drupal-7.x/modules/contact/contact.pages.inc
Form constructor for the site-wide contact form.
dashboard_disable in drupal-7.x/modules/dashboard/dashboard.install
Implements hook_disable().
dashboard_page_build in drupal-7.x/modules/dashboard/dashboard.module
Implements hook_page_build().
DatabaseAlterTestCase::testAlterChangeConditional in drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can alter a query's conditionals.
DatabaseAlterTestCase::testAlterChangeFields in drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can alter the fields of a query.
DatabaseAlterTestCase::testAlterExpression in drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can alter expressions in the query.
DatabaseAlterTestCase::testAlterRemoveRange in drupal-7.x/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 drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can alter the joins on a query.
DatabaseAlterTestCase::testSimpleAlter in drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can do basic alters.
DatabaseAlterTestCase::testSimpleAlterSubquery in drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can do basic alters on subqueries.
DatabaseBasicSyntaxTestCase::testLikeBackslash in drupal-7.x/modules/simpletest/tests/database_test.test
Test LIKE query containing a backslash.
DatabaseBasicSyntaxTestCase::testLikeEscape in drupal-7.x/modules/simpletest/tests/database_test.test
Test escaping of LIKE wildcards.
DatabaseDeleteTruncateTestCase::testSubselectDelete in drupal-7.x/modules/simpletest/tests/database_test.test
Confirm that we can use a subselect in a delete successfully.
DatabaseInsertTestCase::testInsertSelectAll in drupal-7.x/modules/simpletest/tests/database_test.test
Tests that the INSERT INTO ... SELECT * ... syntax works.
DatabaseInsertTestCase::testInsertSelectFields in drupal-7.x/modules/simpletest/tests/database_test.test
Test that the INSERT INTO ... SELECT (fields) ... syntax works.
DatabaseInvalidDataTestCase::testInsertDuplicateData in drupal-7.x/modules/simpletest/tests/database_test.test
Traditional SQL database systems abort inserts when invalid data is encountered.
DatabaseSelectCloneTest::testSelectConditionSubQueryCloning in drupal-7.x/modules/simpletest/tests/database_test.test
Test that subqueries as value within conditions are cloned properly.
DatabaseSelectComplexTestCase2::testJoinSubquery in drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can join on a query.
DatabaseSelectComplexTestCase::testCountQuery in drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can generate a count query from a built query.
DatabaseSelectComplexTestCase::testCountQueryDistinct in drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can generate a count query from a query with distinct.
DatabaseSelectComplexTestCase::testCountQueryFieldRemovals in drupal-7.x/modules/simpletest/tests/database_test.test
Test that countQuery properly removes fields and expressions.
DatabaseSelectComplexTestCase::testCountQueryGroupBy in drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can generate a count query from a query with GROUP BY.
DatabaseSelectComplexTestCase::testCountQueryRemovals in drupal-7.x/modules/simpletest/tests/database_test.test
Test that countQuery properly removes 'all_fields' statements and ordering clauses.
DatabaseSelectComplexTestCase::testDefaultJoin in drupal-7.x/modules/simpletest/tests/database_test.test
Test simple JOIN statements.
DatabaseSelectComplexTestCase::testDistinct in drupal-7.x/modules/simpletest/tests/database_test.test
Test distinct queries.
DatabaseSelectComplexTestCase::testGroupBy in drupal-7.x/modules/simpletest/tests/database_test.test
Test GROUP BY clauses.
DatabaseSelectComplexTestCase::testGroupByAndHaving in drupal-7.x/modules/simpletest/tests/database_test.test
Test GROUP BY and HAVING clauses together.
DatabaseSelectComplexTestCase::testHavingCountQuery in drupal-7.x/modules/simpletest/tests/database_test.test
DatabaseSelectComplexTestCase::testJoinTwice in drupal-7.x/modules/simpletest/tests/database_test.test
Confirm we can join on a single table twice with a dynamic alias.
DatabaseSelectComplexTestCase::testLeftOuterJoin in drupal-7.x/modules/simpletest/tests/database_test.test
Test LEFT OUTER joins.
DatabaseSelectComplexTestCase::testNestedConditions in drupal-7.x/modules/simpletest/tests/database_test.test
Confirm that we can properly nest conditional clauses.
DatabaseSelectComplexTestCase::testRange in drupal-7.x/modules/simpletest/tests/database_test.test
Test range queries. The SQL clause varies with the database.
DatabaseSelectOrderedTestCase::testSimpleSelectMultiOrdered in drupal-7.x/modules/simpletest/tests/database_test.test
Test multiple order by.
DatabaseSelectOrderedTestCase::testSimpleSelectOrdered in drupal-7.x/modules/simpletest/tests/database_test.test
Test basic order by.
DatabaseSelectOrderedTestCase::testSimpleSelectOrderedDesc in drupal-7.x/modules/simpletest/tests/database_test.test
Test order by descending.
DatabaseSelectPagerDefaultTestCase::testElementNumbers in drupal-7.x/modules/simpletest/tests/database_test.test
Confirm that every pager gets a valid non-overlaping element ID.
DatabaseSelectPagerDefaultTestCase::testHavingPagerQuery in drupal-7.x/modules/simpletest/tests/database_test.test
Confirm that a paging query with a having expression returns valid results.
DatabaseSelectPagerDefaultTestCase::testInnerPagerQuery in drupal-7.x/modules/simpletest/tests/database_test.test
Confirm that a pager query with inner pager query returns valid results.
DatabaseSelectSubqueryTestCase::testConditionSubquerySelect in drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can use a subquery in a WHERE clause.
DatabaseSelectSubqueryTestCase::testExistsSubquerySelect in drupal-7.x/modules/simpletest/tests/database_test.test
Test EXISTS subquery conditionals on SELECT statements.
DatabaseSelectSubqueryTestCase::testFromSubquerySelect in drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can use a subquery in a FROM clause.
DatabaseSelectSubqueryTestCase::testFromSubquerySelectWithLimit in drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can use a subquery in a FROM clause with a limit.
DatabaseSelectSubqueryTestCase::testJoinSubquerySelect in drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can use a subquery in a JOIN clause.
DatabaseSelectSubqueryTestCase::testNotExistsSubquerySelect in drupal-7.x/modules/simpletest/tests/database_test.test
Test NOT EXISTS subquery conditionals on SELECT statements.
DatabaseSelectTestCase::testNotNullCondition in drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can find a record without a NULL value.
DatabaseSelectTestCase::testNullCondition in drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can find a record with a NULL value.
DatabaseSelectTestCase::testRandomOrder in drupal-7.x/modules/simpletest/tests/database_test.test
Test that random ordering of queries works.
DatabaseSelectTestCase::testSelectDuplicateAlias in drupal-7.x/modules/simpletest/tests/database_test.test
Test that aliases are renamed when duplicates.
DatabaseSelectTestCase::testSimpleComment in drupal-7.x/modules/simpletest/tests/database_test.test
Test rudimentary SELECT statement with a COMMENT.
DatabaseSelectTestCase::testSimpleSelect in drupal-7.x/modules/simpletest/tests/database_test.test
Test rudimentary SELECT statements.
DatabaseSelectTestCase::testSimpleSelectAllFields in drupal-7.x/modules/simpletest/tests/database_test.test
Test adding all fields from a given table to a select statement.
DatabaseSelectTestCase::testSimpleSelectConditional in drupal-7.x/modules/simpletest/tests/database_test.test
Test basic conditionals on SELECT statements.
DatabaseSelectTestCase::testSimpleSelectExpression in drupal-7.x/modules/simpletest/tests/database_test.test
Test SELECT statements with expressions.
DatabaseSelectTestCase::testSimpleSelectExpressionMultiple in drupal-7.x/modules/simpletest/tests/database_test.test
Test SELECT statements with multiple expressions.
DatabaseSelectTestCase::testSimpleSelectMultipleFields in drupal-7.x/modules/simpletest/tests/database_test.test
Test adding multiple fields to a select statement at the same time.
DatabaseSelectTestCase::testUnion in drupal-7.x/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 drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can UNION ALL multiple Select queries together.
DatabaseSelectTestCase::testVulnerableComment in drupal-7.x/modules/simpletest/tests/database_test.test
Test query COMMENT system against vulnerabilities.
DatabaseSerializeQueryTestCase::testSerializeQuery in drupal-7.x/modules/simpletest/tests/database_test.test
Confirm that a query can be serialized and unserialized.
DatabaseTaggingTestCase::testHasAllTags in drupal-7.x/modules/simpletest/tests/database_test.test
Test query tagging "has all of these tags" functionality.
DatabaseTaggingTestCase::testHasAnyTag in drupal-7.x/modules/simpletest/tests/database_test.test
Test query tagging "has at least one of these tags" functionality.
DatabaseTaggingTestCase::testHasTag in drupal-7.x/modules/simpletest/tests/database_test.test
Confirm that a query has a "tag" added to it.
DatabaseTaggingTestCase::testMetaData in drupal-7.x/modules/simpletest/tests/database_test.test
Test that we can attach meta data to a query object.
DatabaseTemporaryQueryTestCase::countTableRows in drupal-7.x/modules/simpletest/tests/database_test.test
Return the number of rows of a table.
database_test_db_query_temporary in drupal-7.x/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 drupal-7.x/modules/simpletest/tests/database_test.module
Run a pager query and return the results.
database_test_odd_pager_query in drupal-7.x/modules/simpletest/tests/database_test.module
Run a pager query and return the results.
database_test_tablesort in drupal-7.x/modules/simpletest/tests/database_test.module
Run a tablesort query and return the results.
database_test_tablesort_first in drupal-7.x/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 drupal-7.x/modules/simpletest/tests/database_test.module
Output a form without setting a header sort.
DateTimeFunctionalTest::testDateFormatStorage in drupal-7.x/modules/system/system.test
Test if the date formats are stored properly.
dblog_cron in drupal-7.x/modules/dblog/dblog.module
Implements hook_cron().
dblog_overview in drupal-7.x/modules/dblog/dblog.admin.inc
Page callback: Displays a listing of database log messages.
dblog_top in drupal-7.x/modules/dblog/dblog.admin.inc
Page callback: Shows the most frequent log messages of a given event type.
DrupalDatabaseCache::isEmpty in drupal-7.x/includes/cache.inc
Implements DrupalCacheInterface::isEmpty().
DrupalDefaultEntityController::buildQuery in drupal-7.x/includes/entity.inc
Builds the query to load the entity.
EntityFieldQuery::propertyQuery in drupal-7.x/includes/entity.inc
Queries entity tables in SQL for property conditions and sorts.
FieldCrudTestCase::testCreateFieldFail in drupal-7.x/modules/field/tests/field.test
Test failure to create a field.
FieldSqlStorageTestCase::testFieldAttachInsertAndUpdate in drupal-7.x/modules/field/modules/field_sql_storage/field_sql_storage.test
Reads mysql to verify correct data is written when using insert and update.
FieldSqlStorageTestCase::testFieldAttachSaveMissingData in drupal-7.x/modules/field/modules/field_sql_storage/field_sql_storage.test
Tests insert and update with missing or NULL fields.
field_read_fields in drupal-7.x/modules/field/field.crud.inc
Reads in fields that match an array of conditions.
field_read_instances in drupal-7.x/modules/field/field.crud.inc
Reads in field instances that match an array of conditions.
field_sql_storage_field_storage_load in drupal-7.x/modules/field/modules/field_sql_storage/field_sql_storage.module
Implements hook_field_storage_load().
field_sql_storage_field_storage_query in drupal-7.x/modules/field/modules/field_sql_storage/field_sql_storage.module
Implements hook_field_storage_query().
field_sql_storage_update_7001 in drupal-7.x/modules/field/modules/field_sql_storage/field_sql_storage.install
Remove the field_config_entity_type table and store 'entity_type' strings.
field_sql_storage_update_7002 in drupal-7.x/modules/field/modules/field_sql_storage/field_sql_storage.install
Fix primary keys in field revision data tables.
field_test_entity_test_load in drupal-7.x/modules/field/tests/field_test.entity.inc
Loads a test_entity.
FileUsageTest::testAddUsage in drupal-7.x/modules/simpletest/tests/file.test
Tests file_usage_add().
FileUsageTest::testRemoveUsage in drupal-7.x/modules/simpletest/tests/file.test
Tests file_usage_delete().
file_space_used in drupal-7.x/includes/file.inc
Determines total disk space used by a single user or the whole filesystem.
file_usage_list in drupal-7.x/includes/file.inc
Determines where a file is used.
FilterCRUDTestCase::verifyTextFormat in drupal-7.x/modules/filter/filter.test
Verifies that a text format is properly stored.
filter_formats in drupal-7.x/modules/filter/filter.module
Retrieves a list of text formats, ordered by weight.
filter_update_7003 in drupal-7.x/modules/filter/filter.install
Upgrade the {filter} table for core filters.
forum_block_view in drupal-7.x/modules/forum/forum.module
Implements hook_block_view().
forum_forum_load in drupal-7.x/modules/forum/forum.module
Returns a tree of all forums for a given taxonomy term ID.
forum_get_topics in drupal-7.x/modules/forum/forum.module
Gets all the topics in a forum.
forum_node_load in drupal-7.x/modules/forum/forum.module
Implements hook_node_load().
forum_update_7001 in drupal-7.x/modules/forum/forum.install
Create new {forum_index} table.
forum_update_7003 in drupal-7.x/modules/forum/forum.install
Rename field to 'taxonomy_forums'.
forum_update_7011 in drupal-7.x/modules/forum/forum.install
Update {forum_index} so that only published nodes are indexed.
hook_field_storage_load in drupal-7.x/modules/field/field.api.php
Load field data for a set of entities.
hook_field_storage_query in drupal-7.x/modules/field/field.api.php
Execute an EntityFieldQuery.
hook_search_execute in drupal-7.x/modules/search/search.api.php
Execute a search for a set of key words.
hook_taxonomy_term_load in drupal-7.x/modules/taxonomy/taxonomy.api.php
Act on taxonomy terms when loaded.
hook_taxonomy_vocabulary_load in drupal-7.x/modules/taxonomy/taxonomy.api.php
Act on taxonomy vocabularies when loaded.
hook_update_N in drupal-7.x/modules/system/system.api.php
Perform a single update.
hook_user_cancel in drupal-7.x/modules/user/user.api.php
Act on user account cancellations.
image_effects in drupal-7.x/modules/image/image.module
Loads all image effects from the database.
image_styles in drupal-7.x/modules/image/image.module
Gets an array of all styles and their settings.
image_update_7002 in drupal-7.x/modules/image/image.install
Add width and height columns to image field schema and populate.
LocaleCommentLanguageFunctionalTest::testCommentLanguage in drupal-7.x/modules/locale/locale.test
Test that comment language is properly set.
LocaleJavascriptTranslationTest::testFileParsing in drupal-7.x/modules/locale/locale.test
LocaleTranslationFunctionalTest::testJavaScriptTranslation in drupal-7.x/modules/locale/locale.test
locale_batch_by_language in drupal-7.x/includes/locale.inc
Prepare a batch to import translations for all enabled modules in a given language.
MenuRouterTestCase::testMenuHidden in drupal-7.x/modules/simpletest/tests/menu.test
Tests menu link depth and parents of local tasks and menu callbacks.
menu_contextual_links in drupal-7.x/includes/menu.inc
Retrieves contextual links for a path based on registered local tasks.
menu_get_names in drupal-7.x/includes/menu.inc
Build a list of named menus.
menu_link_children_relative_depth in drupal-7.x/includes/menu.inc
Finds the depth of an item's children relative to its depth.
menu_link_get_preferred in drupal-7.x/includes/menu.inc
Looks up the preferred menu link for a given system path.
menu_link_load in drupal-7.x/includes/menu.inc
Gets a translated, access-checked menu link that is ready for rendering.
menu_load_links in drupal-7.x/includes/menu.inc
Returns an array containing all links for a menu.
menu_local_tasks in drupal-7.x/includes/menu.inc
Collects the local tasks (tabs), action links, and the root path.
menu_tree_check_access in drupal-7.x/includes/menu.inc
Checks access and performs dynamic operations for each link in the tree.
menu_tree_page_data in drupal-7.x/includes/menu.inc
Gets the data structure for a named menu tree, based on the current page.
ModuleTestCase::assertLogMessage in drupal-7.x/modules/system/system.test
Verify a log entry was entered for a module's status change. Called in the same way of the expected original watchdog() execution.
NodeAdminTestCase::testContentAdminSort in drupal-7.x/modules/node/node.test
Tests that the table sorting works on the content admin pages.
NodeQueryAlter::testNodeQueryAlterLowLevelEditAccess in drupal-7.x/modules/node/node.test
Tests 'node_access' query alter, for edit access.
NodeQueryAlter::testNodeQueryAlterLowLevelNoAccess in drupal-7.x/modules/node/node.test
Tests 'node_access' query alter, for user without access.
NodeQueryAlter::testNodeQueryAlterLowLevelWithAccess in drupal-7.x/modules/node/node.test
Tests 'node_access' query alter, for user with access.
NodeQueryAlter::testNodeQueryAlterOverride in drupal-7.x/modules/node/node.test
Tests 'node_access' query alter override.
node_access in drupal-7.x/modules/node/node.module
Determines whether the current user may perform the operation on the node.
node_access_test_page in drupal-7.x/modules/node/tests/node_access_test.module
Page callback for node access test page.
node_access_view_all_nodes in drupal-7.x/modules/node/node.module
Determines whether the user has a global viewing grant for all nodes.
node_admin_nodes in drupal-7.x/modules/node/node.admin.inc
Form builder: Builds the node administration overview.
node_feed in drupal-7.x/modules/node/node.module
Generates and prints an RSS feed.
node_get_recent in drupal-7.x/modules/node/node.module
Finds the most recently changed nodes that are available to the current user.
node_page_default in drupal-7.x/modules/node/node.module
Menu callback: Generates a listing of promoted nodes.
node_search_execute in drupal-7.x/modules/node/node.module
Implements hook_search_execute().
node_update_7000 in drupal-7.x/modules/node/node.install
Upgrade the node type table and fix node type 'module' attribute to avoid name-space conflicts.
node_update_7006 in drupal-7.x/modules/node/node.install
Convert body and teaser from node properties to fields, and migrate status/comment/promote and sticky columns to the {node_revision} table.
node_user_cancel in drupal-7.x/modules/node/node.module
Implements hook_user_cancel().
node_user_delete in drupal-7.x/modules/node/node.module
Implements hook_user_delete().
path_admin_overview in drupal-7.x/modules/path/path.admin.inc
Returns a listing of all defined URL aliases.
path_form_element_validate in drupal-7.x/modules/path/path.module
Form element validation handler for URL alias form element.
path_load in drupal-7.x/includes/path.inc
Fetches a specific URL alias from the database.
poll_block_view in drupal-7.x/modules/poll/poll.module
Implements hook_block_view().
poll_load in drupal-7.x/modules/poll/poll.module
Implements hook_load().
poll_page in drupal-7.x/modules/poll/poll.pages.inc
Menu callback to provide a simple list of all polls available.
poll_votes in drupal-7.x/modules/poll/poll.pages.inc
Callback for the 'votes' tab for polls you can see other votes on
profile_admin_settings_autocomplete in drupal-7.x/modules/profile/profile.admin.inc
Retrieve a pipe delimited string of autocomplete suggestions for profile categories
profile_autocomplete in drupal-7.x/modules/profile/profile.pages.inc
Callback to allow autocomplete of profile text fields.
profile_browse in drupal-7.x/modules/profile/profile.pages.inc
Menu callback; display a list of user information.
profile_field_form_validate in drupal-7.x/modules/profile/profile.admin.inc
Validate profile_field_form submissions.
SchemaTestCase::assertFieldCharacteristics in drupal-7.x/modules/simpletest/tests/schema.test
Assert that a newly added field has the correct characteristics.
SearchMatchTestCase::_testQueries in drupal-7.x/modules/search/search.test
Run predefine queries looking for indexed terms.
SearchQuery::countQuery in drupal-7.x/modules/search/search.extender.inc
Builds the default count query for SearchQuery.
SearchSetLocaleTest::testSearchWithNumericLocale in drupal-7.x/modules/search/search.test
Verify that search works with a numeric locale set.
shortcut_current_displayed_set in drupal-7.x/modules/shortcut/shortcut.module
Returns the current displayed shortcut set for the provided user account.
shortcut_sets in drupal-7.x/modules/shortcut/shortcut.module
Returns an array of all shortcut sets, keyed by the set name.
shortcut_set_load in drupal-7.x/modules/shortcut/shortcut.module
Loads the data for a shortcut set.
simpletest_result_get in drupal-7.x/modules/simpletest/simpletest.pages.inc
Get test results for $test_id.
StatisticsAdminTestCase::testDeleteNode in drupal-7.x/modules/statistics/statistics.test
Tests that when a node is deleted, the node counter is deleted too.
StatisticsAdminTestCase::testExpiredLogs in drupal-7.x/modules/statistics/statistics.test
Tests that cron clears day counts and expired access logs.
statistics_node_tracker in drupal-7.x/modules/statistics/statistics.pages.inc
Page callback: Displays statistics for a node.
statistics_recent_hits in drupal-7.x/modules/statistics/statistics.admin.inc
Page callback: Displays the "recent hits" page.
statistics_title_list in drupal-7.x/modules/statistics/statistics.module
Returns the most viewed content of all time, today, or the last-viewed node.
statistics_top_pages in drupal-7.x/modules/statistics/statistics.admin.inc
Page callback: Displays statistics for the "top pages" (most accesses).
statistics_top_referrers in drupal-7.x/modules/statistics/statistics.admin.inc
Page callback: Displays the "top referrers" in the access logs.
statistics_top_visitors in drupal-7.x/modules/statistics/statistics.admin.inc
Page callback: Displays the "top visitors" page.
statistics_user_tracker in drupal-7.x/modules/statistics/statistics.pages.inc
Page callback: Displays statistics for a user.
system_actions_manage in drupal-7.x/modules/system/system.admin.inc
Menu callback; Displays an overview of available and configured actions.
system_admin_menu_block in drupal-7.x/modules/system/system.module
Provide a single block on the administration overview page.
system_get_module_admin_tasks in drupal-7.x/modules/system/system.module
Generate a list of tasks offered by a specified module.
system_update_7061 in drupal-7.x/modules/system/system.install
Migrate upload.module data to the newly created file field.
system_update_7076 in drupal-7.x/modules/system/system.install
Convert menu_links query strings into arrays.
taxonomy_autocomplete in drupal-7.x/modules/taxonomy/taxonomy.pages.inc
Page callback: Outputs JSON for taxonomy autocomplete suggestions.
taxonomy_get_children in drupal-7.x/modules/taxonomy/taxonomy.module
Finds all children of a term ID.
taxonomy_get_parents in drupal-7.x/modules/taxonomy/taxonomy.module
Finds all parents of a given term ID.
taxonomy_get_tree in drupal-7.x/modules/taxonomy/taxonomy.module
Create a hierarchical representation of a vocabulary.
taxonomy_select_nodes in drupal-7.x/modules/taxonomy/taxonomy.module
Return nodes attached to a term across all field instances.
taxonomy_test_get_antonym in drupal-7.x/modules/simpletest/tests/taxonomy_test.module
Return the antonym of the given term ID.
taxonomy_tokens in drupal-7.x/modules/taxonomy/taxonomy.tokens.inc
Implements hook_tokens().
taxonomy_update_7005 in drupal-7.x/modules/taxonomy/taxonomy.install
Migrate {taxonomy_term_node} table to field storage.
tracker_cron in drupal-7.x/modules/tracker/tracker.module
Implements hook_cron().
tracker_page in drupal-7.x/modules/tracker/tracker.pages.inc
Page callback: prints a listing of active nodes on the site.
translation_node_get_translations in drupal-7.x/modules/translation/translation.module
Gets all nodes in a given translation set.
trigger_menu_unassign_access in drupal-7.x/modules/trigger/trigger.module
Access callback: Determines if triggers can be unassigned.
update_fix_d7_block_deltas in drupal-7.x/includes/update.inc
A helper function that modules can use to assist with the transformation from numeric block deltas to string block deltas during the 6.x -> 7.x upgrade.
update_fix_d7_install_profile in drupal-7.x/includes/update.inc
Register the currently installed profile in the system table.
user_account_form_validate in drupal-7.x/modules/user/user.module
Form validation handler for user_account_form().
user_admin_account in drupal-7.x/modules/user/user.admin.inc
Form builder; User administration page.
user_autocomplete in drupal-7.x/modules/user/user.pages.inc
Menu callback; Retrieve a JSON object containing autocomplete suggestions for existing users.
user_is_blocked in drupal-7.x/modules/user/user.module
Checks for usernames blocked by user administration.
user_roles in drupal-7.x/modules/user/user.module
Retrieve an array of roles matching specified conditions.
user_role_load in drupal-7.x/modules/user/user.module
Fetches a user role by role ID.
user_role_load_by_name in drupal-7.x/modules/user/user.module
Fetches a user role by role name.
user_role_save in drupal-7.x/modules/user/user.module
Save a user role to the database.
user_search_execute in drupal-7.x/modules/user/user.module
Implements hook_search_execute().
user_update_7017 in drupal-7.x/modules/user/user.install
Update email templates to use new tokens.
_block_load_blocks in drupal-7.x/modules/block/block.module
Loads blocks' information from the database.
_block_rehash in drupal-7.x/modules/block/block.module
Updates the 'block' DB table with the blocks currently exported by modules.
_blog_post_exists in drupal-7.x/modules/blog/blog.module
Helper function to determine if a user has blog posts already.
_forum_topics_unread in drupal-7.x/modules/forum/forum.module
Calculates the number of new posts in a forum that the user has not yet read.
_image_update_7002_populate_dimensions in drupal-7.x/modules/image/image.install
Populate image dimensions in a specific table.
_locale_translate_seek in drupal-7.x/includes/locale.inc
Perform a string search and display results in a table
_menu_build_tree in drupal-7.x/includes/menu.inc
Builds a menu tree.
_menu_find_router_path in drupal-7.x/includes/menu.inc
Finds the router path which will serve this path.
_menu_link_find_parent in drupal-7.x/includes/menu.inc
Finds a possible parent for a given menu link.
_menu_navigation_links_rebuild in drupal-7.x/includes/menu.inc
Builds menu links for the items in the menu router.
_menu_update_parental_status in drupal-7.x/includes/menu.inc
Checks and updates the 'has_children' status for the parent of a link.
_node_query_node_access_alter in drupal-7.x/modules/node/node.module
Helper for node access functions.
_node_types_build in drupal-7.x/modules/node/node.module
Builds and returns the list of available node types.
_profile_get_fields in drupal-7.x/modules/profile/profile.module
_rdf_mapping_load in drupal-7.x/modules/rdf/rdf.module
Helper function to retrieve an RDF mapping from the database.
_update_7000_field_delete_field in drupal-7.x/modules/field/field.install
Utility function: delete a field stored in SQL storage directly from the database.
_update_7000_field_read_fields in drupal-7.x/modules/field/field.install
Utility function: fetch all the field definitions from the database.
_update_get_cache_multiple in drupal-7.x/modules/update/update.module
Returns an array of cache items with a given cache ID prefix.