| actions_delete | includes/actions.inc | Delete a single action from the database. |
| actions_do | includes/actions.inc | Perform a given list of actions by executing their callback functions. |
| actions_function_lookup | includes/actions.inc | Given an md5 hash of a function name, return the function name. |
| actions_get_all_actions | includes/actions.inc | Retrieve all action instances from the database. |
| actions_load | includes/actions.inc | Retrieve a single action from the database. |
| actions_save | includes/actions.inc | Save an action and its associated user-supplied parameter values to the database. |
| actions_synchronize | includes/actions.inc | Synchronize actions that are provided by modules. |
| aggregator_block | modules/aggregator/aggregator.module | Implementation of hook_block(). |
| aggregator_categorize_items | modules/aggregator/aggregator.pages.inc | Form builder; build the page list form. |
| aggregator_categorize_items_submit | modules/aggregator/aggregator.pages.inc | Process aggregator_categorize_items form submissions. |
| aggregator_category_load | modules/aggregator/aggregator.module | Load an aggregator category. |
| aggregator_cron | modules/aggregator/aggregator.module | Implementation of hook_cron(). |
| aggregator_feed_items_load | modules/aggregator/aggregator.pages.inc | Load feed items by passing a SQL query. |
| aggregator_feed_load | modules/aggregator/aggregator.module | Load an aggregator feed. |
| aggregator_form_category_validate | modules/aggregator/aggregator.admin.inc | Validate aggregator_form_feed form submissions. |
| aggregator_form_feed | modules/aggregator/aggregator.admin.inc | Form builder; Generate a form to add/edit feed sources.
See alsoaggregator_form_feed_validate() |
| aggregator_form_feed_validate | modules/aggregator/aggregator.admin.inc | Validate aggregator_form_feed form submissions. |
| aggregator_page_categories | modules/aggregator/aggregator.pages.inc | Menu callback; displays all the categories used by the aggregator. |
| aggregator_page_opml | modules/aggregator/aggregator.pages.inc | Menu callback; generates an OPML representation of all feeds. |
| aggregator_page_rss | modules/aggregator/aggregator.pages.inc | Menu callback; generate an RSS 0.92 feed of aggregator items or categories. |
| aggregator_page_sources | modules/aggregator/aggregator.pages.inc | Menu callback; displays all the feeds used by the aggregator. |
| aggregator_parse_feed | modules/aggregator/aggregator.module | Parse a feed and store its items. |
| aggregator_refresh | modules/aggregator/aggregator.module | Checks a news feed for new items. |
| aggregator_remove | modules/aggregator/aggregator.module | Removes all items from a feed. |
| aggregator_save_category | modules/aggregator/aggregator.module | Add/edit/delete aggregator categories. |
| aggregator_save_feed | modules/aggregator/aggregator.module | Add/edit/delete an aggregator feed. |
| aggregator_save_item | modules/aggregator/aggregator.module | Add/edit/delete an aggregator item. |
| aggregator_view | modules/aggregator/aggregator.admin.inc | Displays the aggregator administration page. |
| batch_example_op_2 | developer/examples/batch_example.module | Batch operation for batch 2 : load all nodes, 5 by five
This is a multipart operation, using the |
| batch_process | includes/form.inc | Process the batch. |
| block_add_block_form_submit | modules/block/block.admin.inc | Save the new custom block. |
| block_admin_configure | modules/block/block.admin.inc | Menu callback; displays the block configuration form. |
| block_admin_display_form_submit | modules/block/block.admin.inc | Process main blocks administration form submission. |
| block_block | modules/block/block.module | Implementation of hook_block(). |
| block_box_delete_submit | modules/block/block.admin.inc | Deletion of custom blocks. |
| block_list | modules/block/block.module | Return all blocks in the specified region for the current user. |
| block_user | modules/block/block.module | Implementation of hook_user(). |
| blog_form | modules/blog/blog.module | Implementation of hook_form(). |
| book_block | modules/book/book.module | Implementation of hook_block(). |
| book_get_books | modules/book/book.module | Returns an array of all books. |
| book_link_load | modules/book/book.module | Like menu_link_load(), but adds additional data from the {book} table. |
| book_menu_subtree_data | modules/book/book.module | Get the data representing a subtree of the book hierarchy. |
| book_nodeapi | modules/book/book.module | Implementation of hook_nodeapi(). |
| book_remove_form_submit | modules/book/book.pages.inc | Confirm form submit function to remove a node from the book.
See alsobook_remove_form() |
| book_uninstall | modules/book/book.install | Implementation of hook_uninstall(). |
| book_update_6000 | modules/book/book.install | Drupal 5.x to 6.x update. |
| book_update_bid | modules/book/book.module | Update the bid for a page and its children when it is moved to a new book. |
| cache_clear_all | includes/cache.inc | Expire data from the cache. If called without arguments, expirable
entries will be cleared from the cache_page and cache_block tables. |
| cache_get | includes/cache.inc | Return data from the persistent cache. Data may be stored as either plain text or as serialized data.
cache_get will automatically return unserialized objects and arrays. |
| cache_set | includes/cache.inc | Store data in the persistent cache. |
| comment_admin_overview_submit | modules/comment/comment.admin.inc | Process comment_admin_overview form submissions. |
| comment_delete | modules/comment/comment.admin.inc | Menu callback; delete a comment. |
| comment_edit | modules/comment/comment.pages.inc | Form builder; generate a comment editing form. |
| comment_enable | modules/comment/comment.install | Implementation of hook_enable(). |
| comment_form_add_preview | modules/comment/comment.module | Form builder; Generate and validate a comment preview form. |
| comment_multiple_delete_confirm | modules/comment/comment.admin.inc | List the selected comments and verify that the admin really wants to delete
them. |
| comment_new_page_count | modules/comment/comment.module | Calculate page number for first new comment. |
| comment_nodeapi | modules/comment/comment.module | Implementation of hook_nodeapi(). |
| comment_num_all | modules/comment/comment.module | Get comment count for a node. |
| comment_num_new | modules/comment/comment.module | Get number of new comments for current user and specified node. |
| comment_num_replies | modules/comment/comment.module | Get replies count for a comment. |
| comment_render | modules/comment/comment.module | Renders comment(s). |
| comment_reply | modules/comment/comment.pages.inc | This function is responsible for generating a comment reply form.
There are several cases that have to be handled, including:
replies to comments
replies to nodes
attempts to reply to nodes that can no longer accept comments
respecting access... |
| comment_save | modules/comment/comment.module | Accepts a submission of new or changed comment content. |
| comment_unpublish_action | modules/comment/comment.module | Drupal action to unpublish a comment. |
| comment_unpublish_by_keyword_action | modules/comment/comment.module | Implementation of a configurable Drupal action.
Unpublish a comment if it contains a certain string. |
| comment_update_1 | modules/comment/comment.install | Changed node_comment_statistics to use node->changed to avoid future timestamps. |
| comment_user | modules/comment/comment.module | Implementation of hook_user(). |
| comment_validate | modules/comment/comment.module | Validate comment data. |
| contact_admin_categories | modules/contact/contact.admin.inc | Categories/list tab. |
| contact_admin_delete_submit | modules/contact/contact.admin.inc | Process category delete form submission. |
| contact_admin_edit_submit | modules/contact/contact.admin.inc | Process the contact category edit page form submission. |
| contact_load | modules/contact/contact.module | Load the data for a single contact category. |
| dblog_cron | modules/dblog/dblog.module | Implementation of hook_cron(). |
| dblog_event | modules/dblog/dblog.admin.inc | Menu callback; displays details about a log message. |
| dblog_user | modules/dblog/dblog.module | Implementation of hook_user(). |
| db_add_field | includes/database.pgsql.inc | Add a new field to a table. |
| db_check_setup | includes/database.pgsql.inc | Verify if the database is set up correctly. |
| db_column_exists | includes/database.pgsql.inc | Check if a column exists in the given table. |
| db_last_insert_id | includes/database.pgsql.inc | Returns the last insert id. This function is thread safe. |
| db_lock_table | includes/database.pgsql.inc | Lock a table.
This function automatically starts a transaction. |
| db_query | includes/database.pgsql.inc | Runs a basic query in the active database. |
| db_table_exists | includes/database.pgsql.inc | Check if a table exists. |
| db_unlock_tables | includes/database.pgsql.inc | Unlock all locked tables.
This function automatically commits a transaction. |
| db_version | includes/database.pgsql.inc | Returns the version of the database server currently in use. |
| drupal_get_filename | includes/bootstrap.inc | Returns and optionally sets the filename for a system item (module,
theme, etc.). The filename, whether provided, cached, or retrieved
from the database, is only returned if the file exists. |
| drupal_get_installed_schema_version | includes/install.inc | Returns the currently installed schema version for a module. |
| drupal_install_system | includes/install.inc | Callback to install the system module. |
| drupal_lookup_path | includes/path.inc | Given an alias, return its Drupal system URL if one exists. Given a Drupal
system URL return one of its aliases if such a one exists. Otherwise,
return FALSE. |
| drupal_set_installed_schema_version | includes/install.inc | Update the installed version information for a module. |
| drupal_uninstall_module | includes/install.inc | Calls the uninstall function and updates the system table for a given module. |
| drupal_write_record | includes/common.inc | Save a record to the database based upon the schema. |
| file_set_status | includes/file.inc | Set the status of a file. |
| file_space_used | includes/file.inc | Determine total disk space used by a single user or the whole filesystem. |
| filter_admin_delete | modules/filter/filter.admin.inc | Menu callback; confirm deletion of a format.
See alsofilter_admin_delete_submit() |
| filter_admin_delete_submit | modules/filter/filter.admin.inc | Process filter delete form submission. |
| filter_admin_format_form_submit | modules/filter/filter.admin.inc | Process filter format form submissions. |
| filter_admin_format_form_validate | modules/filter/filter.admin.inc | Validate filter format form submissions. |
| filter_admin_order_submit | modules/filter/filter.admin.inc | Process filter order configuration form submission. |
| filter_formats | modules/filter/filter.module | Retrieve a list of input formats. |
| filter_format_allowcache | modules/filter/filter.module | Check if text in a certain input format is allowed to be cached. |
| filter_list_format | modules/filter/filter.module | Retrieve a list of filters for a certain format. |
| flood_is_allowed | includes/common.inc | Check if the current visitor (hostname/IP) is allowed to proceed with the specified event. |
| flood_register_event | includes/common.inc | Register an event for the current visitor (hostname/IP) to the flood control mechanism. |
| forum_get_forums | modules/forum/forum.module | Returns a list of all forums for a given taxonomy id |
| forum_install | modules/forum/forum.install | Implementation of hook_install(). |
| forum_load | modules/forum/forum.module | Implementation of hook_load(). |
| forum_nodeapi | modules/forum/forum.module | Implementation of hook_nodeapi(). |
| forum_taxonomy | modules/forum/forum.module | Implementation of hook_taxonomy(). |
| forum_term_load | modules/forum/forum.module | Fetch a forum term. |
| forum_uninstall | modules/forum/forum.install | Implementation of hook_uninstall(). |
| hook_actions_delete | developer/hooks/core.php | Execute code after an action is deleted. |
| hook_cron | developer/hooks/core.php | Perform periodic actions. |
| hook_delete | developer/hooks/node.php | Respond to node deletion. |
| hook_exit | developer/hooks/core.php | Perform cleanup tasks. |
| hook_file_download | developer/hooks/core.php | Control access to private file downloads and specify HTTP headers. |
| hook_insert | developer/hooks/node.php | Respond to node insertion. |
| hook_load | developer/hooks/node.php | Load node-type-specific information. |
| hook_update | developer/hooks/node.php | Respond to node updating. |
| install_verify_drupal | install.php | Verify if Drupal is installed. |
| language_list | includes/bootstrap.inc | Get a list of languages set up indexed by the specified key |
| list_themes | includes/theme.inc | Provides a list of currently available themes. |
| locale | modules/locale/locale.module | Provides interface translation services. |
| locale_add_language | includes/locale.inc | API function to add a language. |
| locale_batch_by_component | includes/locale.inc | Prepare a batch to run when installing modules or enabling themes.
This batch will import translations for the newly added components
in all the languages already set up on the site. |
| locale_batch_by_language | includes/locale.inc | Prepare a batch to import translations for all enabled
modules in a given language. |
| locale_install | modules/locale/locale.install | Implementation of hook_install(). |
| locale_languages_delete_form_submit | includes/locale.inc | Process language deletion submissions. |
| locale_languages_edit_form | includes/locale.inc | Editing screen for a particular language. |
| locale_languages_edit_form_submit | includes/locale.inc | Process the language editing form submission. |
| locale_languages_edit_form_validate | includes/locale.inc | Validate the language editing form. Reused for custom language addition too. |
| locale_languages_overview_form_submit | includes/locale.inc | Process language overview form submissions, updating existing languages. |
| locale_languages_predefined_form_validate | includes/locale.inc | Validate the language addition form. |
| locale_translate_delete_form_submit | includes/locale.inc | Process string deletion submissions. |
| locale_translate_delete_page | includes/locale.inc | String deletion confirmation page. |
| locale_translate_edit_form | includes/locale.inc | User interface for string editing. |
| locale_translate_edit_form_submit | includes/locale.inc | Process string editing form submissions.
Saves all translations of one string submitted from a form. |
| locale_translate_overview_screen | includes/locale.inc | Overview screen for translations. |
| locale_uninstall | modules/locale/locale.install | Implementation of hook_uninstall(). |
| locale_update_6000 | modules/locale/locale.install | {locales_meta} table became {languages}. |
| locale_update_6005 | modules/locale/locale.install | Change language setting variable of content types. |
| menu_delete_menu_confirm | modules/menu/menu.admin.inc | Build a confirm form for deletion of a custom menu. |
| menu_delete_menu_confirm_submit | modules/menu/menu.admin.inc | Delete a custom menu and all items in it. |
| menu_edit_menu_submit | modules/menu/menu.admin.inc | Submit function for adding or editing a custom menu. |
| menu_edit_menu_validate | modules/menu/menu.admin.inc | Validates the human and machine-readable names when adding or editing a menu. |
| menu_enable | modules/menu/menu.module | Implementation of hook_enable() |
| menu_get_menus | modules/menu/menu.module | Return an associative array of the custom menus names. |
| menu_get_names | includes/menu.inc | Build a list of named menus. |
| menu_install | modules/menu/menu.install | Implementation of hook_install(). |
| menu_link_delete | includes/menu.inc | Delete one or several menu links. |
| menu_link_load | includes/menu.inc | Get a menu link by its mlid, access checked and link translated for rendering. |
| menu_link_maintain | includes/menu.inc | Insert, update or delete an uncustomized menu link related to a module. |
| menu_link_save | includes/menu.inc | Save a menu link. |
| menu_load | modules/menu/menu.module | Load the data for a single custom menu. |
| menu_local_tasks | includes/menu.inc | Collects the local tasks (tabs) for a given level. |
| menu_nodeapi | modules/menu/menu.module | Implementation of hook_nodeapi(). |
| menu_overview_form | modules/menu/menu.admin.inc | Form for editing an entire menu tree at once. |
| menu_overview_page | modules/menu/menu.admin.inc | Menu callback which shows an overview page of all the custom menus and their descriptions. |
| menu_tree_all_data | includes/menu.inc | Get the data structure representing a named menu tree. |
| menu_tree_check_access | includes/menu.inc | Check access and perform other dynamic operations for each link in the tree. |
| menu_tree_page_data | includes/menu.inc | Get the data structure representing a named menu tree, based on the current page. |
| menu_valid_path | includes/menu.inc | Validates the path of a menu link being created or edited. |
| module_disable | includes/module.inc | Disable a given set of modules. |
| module_enable | includes/module.inc | Enable a given list of modules. |
| module_list | includes/module.inc | Collect a list of all loaded modules. During the bootstrap, return only
vital modules. See bootstrap.inc |
| module_rebuild_cache | includes/module.inc | Rebuild the database cache of module files. |
| nodeapi_example_nodeapi | developer/examples/nodeapi_example.module | Implementation of hook_nodeapi(). |
| node_access | modules/node/node.module | Determine whether the current user may perform the given operation on the
specified node. |
| node_access_example_nodeapi | developer/examples/node_access_example.module | Implementation of hook_nodeapi(). |
| node_access_rebuild | modules/node/node.module | Rebuild the node access database. This is occasionally needed by modules
that make system-wide changes to access levels. |
| node_access_view_all_nodes | modules/node/node.module | Determine whether the user has a global viewing grant for all nodes. |
| node_access_write_grants | modules/node/node.module | This function will write a list of grants to the database, deleting
any pre-existing grants. If a realm is provided, it will only
delete grants from that realm, but it will always delete a grant
from the 'all' realm. Modules which utilize... |
| node_admin_nodes | modules/node/node.admin.inc | Form builder: Builds the node administration overview. |
| node_assign_owner_action | modules/node/node.module | Implementation of a configurable Drupal action.
Assigns ownership of a node to a user. |
| node_comment_mode | modules/node/node.module | Retrieve the comment mode for the given node ID (none, read, or read/write). |
| node_configure | modules/node/node.admin.inc | Menu callback; presents general node configuration options. |
| node_cron | modules/node/node.module | Implementation of hook_cron(). |
| node_delete | modules/node/node.module | Delete a node. |
| node_example_delete | developer/examples/node_example.module | Implementation of hook_delete(). |
| node_example_insert | developer/examples/node_example.module | Implementation of hook_insert(). |
| node_example_load | developer/examples/node_example.module | Implementation of hook_load(). |
| node_example_nodeapi | developer/examples/node_example.module | Implementation of hook_nodeapi(). |
| node_example_update | developer/examples/node_example.module | Implementation of hook_update(). |
| node_last_viewed | modules/node/node.module | Retrieves the timestamp at which the current user last viewed the
specified node. |
| node_load | modules/node/node.module | Load a node object from the database. |
| node_revision_list | modules/node/node.module | Return a list of all the existing revision numbers. |
| node_save | modules/node/node.module | Save a node object into the database. |
| node_search | modules/node/node.module | Implementation of hook_search(). |
| node_tag_new | modules/node/node.module | Update the 'last viewed' timestamp of the specified node for current user. |
| node_type_delete | modules/node/node.module | Deletes a node type from the database. |
| node_type_delete_confirm | modules/node/content_types.inc | Menu callback; delete a single content type. |
| node_type_save | modules/node/node.module | Saves a node type to the database. |
| node_type_update_nodes | modules/node/node.module | Updates all nodes of one type to be of another type. |
| node_update_index | modules/node/node.module | Implementation of hook_update_index(). |
| node_user | modules/node/node.module | Implementation of hook_user(). |
| openid_association | modules/openid/openid.module | Attempt to create a shared secret with the OpenID Provider. |
| openid_user_delete_form | modules/openid/openid.pages.inc | Present a confirmation form to delete the specified OpenID identity from the system.
See alsoopenid_user_delete_form_submit() |
| openid_user_identities | modules/openid/openid.pages.inc | Menu callback; Manage OpenID identities for the specified user. |
| openid_verify_assertion | modules/openid/openid.module | Attempt to verify the response received from the OpenID Provider. |
| pager_query | includes/pager.inc | Perform a paged database query. |
| path_admin_delete | modules/path/path.module | Post-confirmation; delete an URL alias. |
| path_admin_form_validate | modules/path/path.admin.inc | Verify that a new URL alias is valid |
| path_admin_overview | modules/path/path.admin.inc | Return a listing of all defined URL aliases.
When filter key passed, perform a standard search on the given key,
and return the list of matching URL aliases. |
| path_form_alter | modules/path/path.module | Implementation of hook_form_alter(). |
| path_load | modules/path/path.module | Fetch a specific URL alias from the database. |
| path_nodeapi | modules/path/path.module | Implementation of hook_nodeapi(). |
| path_set_alias | modules/path/path.module | Set an aliased path for a given Drupal path, preventing duplicates. |
| php_install | modules/php/php.install | Implementation of hook_install(). |
| ping_cron | modules/ping/ping.module | Implementation of hook_cron(). |
| poll_block | modules/poll/poll.module | Implementation of hook_block(). |
| poll_cancel | modules/poll/poll.module | Submit callback for poll_cancel_form |
| poll_cron | modules/poll/poll.module | Implementation of hook_cron(). |
| poll_delete | modules/poll/poll.module | Implementation of hook_delete(). |
| poll_insert | modules/poll/poll.module | Implementation of hook_insert(). |
| poll_load | modules/poll/poll.module | Implementation of hook_load(). |
| poll_update | modules/poll/poll.module | Implementation of hook_update(). |
| poll_user | modules/poll/poll.module | Implementation of hook_user(). |
| poll_vote | modules/poll/poll.module | Submit handler for processing a vote |
| profile_admin_overview | modules/profile/profile.admin.inc | Form builder to display a listing of all editable profile fields.
See alsoprofile_admin_overview_submit() |
| profile_admin_overview_submit | modules/profile/profile.admin.inc | Submit handler to update changed profile field weights and categories.
See alsoprofile_admin_overview() |
| profile_autocomplete | modules/profile/profile.pages.inc | Callback to allow autocomplete of profile text fields. |
| profile_block | modules/profile/profile.module | Implementation of hook_block(). |
| profile_browse | modules/profile/profile.pages.inc | Menu callback; display a list of user information. |
| profile_category_access | modules/profile/profile.module | Menu item access callback - check if a user has access to a profile category. |
| profile_field_delete | modules/profile/profile.admin.inc | Menu callback; deletes a field from all user profiles. |
| profile_field_delete_submit | modules/profile/profile.admin.inc | Process a field delete form submission. |
| profile_field_form | modules/profile/profile.admin.inc | Menu callback: Generate a form to add/edit a user profile field.
See alsoprofile_field_form_validate() |
| profile_field_form_submit | modules/profile/profile.admin.inc | Process profile_field_form submissions. |
| profile_field_form_validate | modules/profile/profile.admin.inc | Validate profile_field_form submissions. |
| profile_user | modules/profile/profile.module | Implementation of hook_user(). |
| search_index | modules/search/search.module | Update the full-text search index for a particular item. |
| search_nodeapi | modules/search/search.module | Implementation of hook_nodeapi(). |
| search_touch_node | modules/search/search.module | Change a node's changed timestamp to 'now' to force reindexing. |
| search_update_totals | modules/search/search.module | This function is called on shutdown to ensure that search_total is always
up to date (even if cron times out or otherwise fails). |
| search_wipe | modules/search/search.module | Wipes a part of or the entire search index. |
| sess_count | includes/session.inc | Counts how many users have sessions. Can count either anonymous sessions or authenticated sessions. |
| sess_destroy_sid | includes/session.inc | Called by PHP session handling with the PHP session ID to end a user's session. |
| sess_destroy_uid | includes/session.inc | End a specific user's session |
| sess_regenerate | includes/session.inc | Called when an anonymous user becomes authenticated or vice-versa. |
| statistics_access_log | modules/statistics/statistics.admin.inc | Menu callback; Displays recent page accesses. |
| statistics_cron | modules/statistics/statistics.module | Implementation of hook_cron(). |
| statistics_exit | modules/statistics/statistics.module | Implementation of hook_exit(). |
| statistics_get | modules/statistics/statistics.module | Retrieves a node's "view statistics". |
| statistics_nodeapi | modules/statistics/statistics.module | Implementation of hook_nodeapi(). |
| statistics_user | modules/statistics/statistics.module | Implementation of hook_user(). |
| system_actions_configure | modules/system/system.module | Menu callback. Create the form for configuration of a single action. |
| system_actions_manage | modules/system/system.module | Menu callback. Display an overview of available and configured actions. |
| system_admin_menu_block | modules/system/system.module | Provide a single block on the administration overview page. |
| system_admin_theme_submit | modules/system/system.module | Process admin theme form submissions. |
| system_cron | modules/system/system.module | Implementation of hook_cron(). |
| system_get_files_database | modules/system/system.module | Retrieves the current status of an array of files in the system table. |
| system_get_module_admin_tasks | modules/system/system.module | Generate a list of tasks offered by a specified module. |
| system_initialize_theme_blocks | modules/system/system.module | Assign an initial, default set of blocks for a theme. |
| system_install | modules/system/system.install | Implementation of hook_install(). |
| system_main_admin_page | modules/system/system.admin.inc | Menu callback; Provide the administration overview page. |
| system_modules_submit | modules/system/system.admin.inc | Submit callback; handles modules form submission. |
| system_modules_uninstall | modules/system/system.admin.inc | Builds a form of currently disabled modules.
See alsosystem_modules_uninstall_validate() |
| system_region_list | modules/system/system.module | Get a list of available regions from a specified theme. |
| system_sql | modules/system/system.admin.inc | Menu callback: return information about the database. |
| system_status | modules/system/system.admin.inc | Menu callback: displays the site status report. Can also be used as a pure check. |
| system_themes_form_submit | modules/system/system.admin.inc | Process system_themes_form form submissions. |
| system_theme_data | modules/system/system.module | Collect data about all currently available themes. |
| system_update_6000 | modules/system/system.install | Remove auto_increment from {boxes} to allow adding custom blocks with
visibility settings. |
| system_update_6001 | modules/system/system.install | Add version id column to {term_node} to allow taxonomy module to use revisions. |
| system_update_6009 | modules/system/system.install | The PHP filter is now a separate module. |
| system_update_6018 | modules/system/system.install | Add HTML corrector to HTML formats or replace the old module if it was in use. |
| system_update_6019 | modules/system/system.install | Reconcile small differences in the previous, manually created mysql
and pgsql schemas so they are the same and can be represented by a
single schema structure. |
| system_update_6021 | modules/system/system.install | Migrate the menu items from the old menu system to the new menu_links table. |
| system_update_6027 | modules/system/system.install | Add block cache. |
| system_update_6034 | modules/system/system.install | Rename permission "administer access control" to "administer permissions". |
| system_update_6036 | modules/system/system.install | Change the search schema and indexing. |
| system_update_6039 | modules/system/system.install | Rename permissions "edit foo content" to "edit any foo content".
Also update poll module permission "create polls" to "create
poll content". |
| system_update_6041 | modules/system/system.install | Change forum vocabulary not to be required by default and set the weight of the forum.module 1 higher than the taxonomy.module. |
| system_update_6045 | modules/system/system.install | Update blog, book and locale module permissions. |
| taxonomy_del_term | modules/taxonomy/taxonomy.module | Delete a term. |
| taxonomy_del_vocabulary | modules/taxonomy/taxonomy.module | Delete a vocabulary. |
| taxonomy_form_alter | modules/taxonomy/taxonomy.module | Implementation of hook_form_alter().
Generate a form for selecting terms to associate with a node.
We check for taxonomy_override_selector before loading the full
vocabulary, so contrib modules can intercept before hook_form_alter
and provide scalable... |
| taxonomy_get_children | modules/taxonomy/taxonomy.module | Find all children of a term ID. |
| taxonomy_get_parents | modules/taxonomy/taxonomy.module | Find all parents of a given term ID. |
| taxonomy_get_related | modules/taxonomy/taxonomy.module | Find all term objects related to a given term ID. |
| taxonomy_get_synonyms | modules/taxonomy/taxonomy.module | Return an array of synonyms of the given term ID. |
| taxonomy_get_synonym_root | modules/taxonomy/taxonomy.module | Return the term object that has the given string as a synonym. |
| taxonomy_get_term | modules/taxonomy/taxonomy.module | Return the term object matching a term ID. |
| taxonomy_get_term_by_name | modules/taxonomy/taxonomy.module | Try to map a string to an existing term, as for glossary use. |
| taxonomy_get_tree | modules/taxonomy/taxonomy.module | Create a hierarchical representation of a vocabulary. |
| taxonomy_get_vocabularies | modules/taxonomy/taxonomy.module | Return an array of all vocabulary objects. |
| taxonomy_node_delete | modules/taxonomy/taxonomy.module | Remove associations of a node to its terms. |
| taxonomy_node_delete_revision | modules/taxonomy/taxonomy.module | Remove associations of a node to its terms. |
| taxonomy_node_get_terms | modules/taxonomy/taxonomy.module | Find all terms associated with the given node, ordered by vocabulary and term weight. |
| taxonomy_node_get_terms_by_vocabulary | modules/taxonomy/taxonomy.module | Find all terms associated with the given node, within one vocabulary. |
| taxonomy_node_save | modules/taxonomy/taxonomy.module | Save term associations for a given node. |
| taxonomy_node_type | modules/taxonomy/taxonomy.module | Implementation of hook_node_type(). |
| taxonomy_overview_terms | modules/taxonomy/taxonomy.admin.inc | Form builder for the taxonomy terms overview. |
| taxonomy_save_term | modules/taxonomy/taxonomy.module | Helper function for taxonomy_form_term_submit(). |
| taxonomy_term_count_nodes | modules/taxonomy/taxonomy.module | Count the number of published nodes classified by a term. |
| taxonomy_term_page | modules/taxonomy/taxonomy.pages.inc | Menu callback; displays all nodes associated with a term. |
| taxonomy_vocabulary_confirm_reset_alphabetical_submit | modules/taxonomy/taxonomy.admin.inc | Submit handler to reset a vocabulary to alphabetical order after confirmation.
See alsotaxonomy_vocabulary_confirm_reset_alphabetical() |
| taxonomy_vocabulary_load | modules/taxonomy/taxonomy.module | Return the vocabulary object matching a vocabulary ID. |
| template_preprocess_forum_topic_navigation | modules/forum/forum.module | Preprocess variables to format the next/previous forum topic navigation links. |
| translation_nodeapi | modules/translation/translation.module | Implementation of hook_nodeapi(). |
| translation_node_get_translations | modules/translation/translation.module | Get all nodes in a translation set, represented by $tnid. |
| translation_remove_from_set | modules/translation/translation.module | Remove a node from its translation set (if any)
and update the set accordingly. |
| trigger_actions_delete | modules/trigger/trigger.module | Implementation of hook_actions_delete(). |
| trigger_assign_form_submit | modules/trigger/trigger.admin.inc | Submit function for trigger_assign_form(). |
| trigger_assign_form_validate | modules/trigger/trigger.admin.inc | Validation function for trigger_assign_form(). |
| trigger_menu | modules/trigger/trigger.module | Implementation of hook_menu(). |
| update_fix_compatibility | update.php | Disable anything in the {system} table that is not compatible with the
current version of Drupal core. |
| update_sql | includes/database.inc | Perform an SQL query and return success or failure. |
| upload_file_download | modules/upload/upload.module | Implementation of hook_file_download(). |
| upload_total_space_used | modules/upload/upload.module | Determine how much disk space is occupied by uploaded files. |
| user_access | modules/user/user.module | Determine whether the user has a given privilege. |
| user_admin_access | modules/user/user.admin.inc | Menu callback: list all access rules |
| user_admin_access_delete_confirm | modules/user/user.admin.inc | Menu callback: delete an access rule
See alsouser_admin_access_delete_confirm_submit() |
| user_admin_access_edit | modules/user/user.admin.inc | Menu callback: edit an access rule. |
| user_admin_access_form_submit | modules/user/user.admin.inc | Submit callback for user_admin_access_form(). |
| user_admin_account | modules/user/user.admin.inc | Form builder; User administration page.
See alsouser_admin_account_validate() |
| user_admin_perm | modules/user/user.admin.inc | Menu callback: administer permissions.
See alsouser_admin_perm_submit() |
| user_admin_role | modules/user/user.admin.inc | Menu callback: administer roles.
See alsouser_admin_role_validate() |
| user_authenticate_finalize | modules/user/user.module | Finalize the login process. Must be called when logging in a user. |
| user_block | modules/user/user.module | Implementation of hook_block(). |
| user_block_ip_action | modules/user/user.module | Implementation of a Drupal action.
Adds an access rule that blocks the user's IP address. |
| user_block_user_action | modules/user/user.module | Implementation of a Drupal action.
Blocks the current user. |
| user_delete | modules/user/user.module | Delete a user. |
| user_get_authmaps | modules/user/user.module | Discover which external authentication module(s) authenticated a username. |
| user_is_blocked | modules/user/user.module | Checks for usernames blocked by user administration. |
| user_load | modules/user/user.module | Fetch a user object. |
| user_multiple_role_edit | modules/user/user.module | Callback function for admin mass adding/deleting a user role. |
| user_roles | modules/user/user.module | Retrieve an array of roles matching specified conditions. |
| user_save | modules/user/user.module | Save changes to a user account or add a new user. |
| user_set_authmaps | modules/user/user.module | Save mappings of which external authentication module(s) authenticated
a user. Maps external usernames to user ids in the users table. |
| variable_del | includes/bootstrap.inc | Unset a persistent variable. |
| variable_init | includes/bootstrap.inc | Load the persistent variable table. |
| variable_set | includes/bootstrap.inc | Set a persistent variable. |
| _aggregator_has_categories | modules/aggregator/aggregator.module | Find out whether there are any aggregator categories. |
| _batch_finished | includes/batch.inc | End the batch processing:
Call the 'finished' callbacks to allow custom handling of results,
and resolve page redirection. |
| _batch_page | includes/batch.inc | State-based dispatcher for the batch processing page. |
| _batch_shutdown | includes/batch.inc | Shutdown function: store the batch data for next request,
or clear the table if the batch is finished. |
| _block_rehash | modules/block/block.module | Update the 'blocks' DB table with the blocks currently exported by modules. |
| _book_update_outline | modules/book/book.module | Common helper function to handles additions and updates to the book outline. |
| _comment_delete_thread | modules/comment/comment.admin.inc | Perform the actual deletion of a comment and all its replies. |
| _comment_load | modules/comment/comment.module | Load the entire comment by cid. |
| _comment_update_node_statistics | modules/comment/comment.module | Updates the comment statistics for a given node. This should be called any
time a comment is added, deleted, or updated. |
| _filter_tips | modules/filter/filter.module | Helper function for fetching filter tips. |
| _forum_topics_unread | modules/forum/forum.module | Calculate the number of nodes the user has not yet read and are newer
than NODE_NEW_LIMIT. |
| _locale_export_get_strings | includes/locale.inc | Generates a structured array of all strings with translations in
$language, if given. This array can be used to generate an export
of the string in the database. |
| _locale_import_one_string | includes/locale.inc | Imports a string into the database |
| _locale_import_one_string_db | includes/locale.inc | Import one string into the database. |
| _locale_import_po | includes/locale.inc | Parses Gettext Portable Object file information and inserts into database |
| _locale_parse_js_file | includes/locale.inc | Parses a JavaScript file, extracts strings wrapped in Drupal.t() and
Drupal.formatPlural() and inserts them into the database. |
| _locale_rebuild_js | includes/locale.inc | (Re-)Creates the JavaScript translation file for a language. |
| _menu_delete_item | includes/menu.inc | Helper function for menu_link_delete; deletes a single menu link. |
| _menu_link_move_children | includes/menu.inc | Update the children of a menu link that's being moved. |
| _menu_navigation_links_rebuild | includes/menu.inc | Helper function to build menu links for the items in the menu router. |
| _menu_router_build | includes/menu.inc | Helper function to build the router table based on the data from hook_menu. |
| _menu_set_expanded_menus | includes/menu.inc | Helper function to update a list of menus with expanded items |
| _menu_update_parental_status | includes/menu.inc | Check and update the has_children status for the parent of a link. |
| _node_access_rebuild_batch_operation | modules/node/node.module | Batch operation for node_access_rebuild_batch. |
| _node_types_build | modules/node/node.module | Builds and returns the list of available node types. |
| _taxonomy_term_children | modules/taxonomy/taxonomy.module | Helper for taxonomy_term_count_nodes(). Used to find out
which terms are children of a parent term. |
| _trigger_get_hook_actions | modules/trigger/trigger.admin.inc | Get the actions that have already been defined for this
type-hook-op combination. |
| _trigger_get_hook_aids | modules/trigger/trigger.module | Get the aids of actions to be executed for a hook-op combination. |