t

  1. drupal
    1. 4.7 common.inc
    2. 5 common.inc
    3. 6 common.inc
    4. 7
Versions
4.7 – 5 t($string, $args = 0)
6 t($string, $args = array(), $langcode = NULL)
7 t($string, array $args = array(), array $options = array())

Translates a string to the current language or to a given language.

The t() function serves two purposes. First, at run-time it translates user-visible text into the appropriate language. Second, various mechanisms that figure out what text needs to be translated work off t() -- the text inside t() calls is added to the database of strings to be translated. So, to enable a fully-translatable site, it is important that all human-readable text that will be displayed on the site or sent to a user is passed through the t() function, or a related function. See the Localization API pages for more information, including recommendations on how to break up or not break up strings for translation.

You should never use t() to translate variables, such as calling

<?php t($text); ?>

, unless the text that the variable holds has been passed through t() elsewhere (e.g., $text is one of several translated literal strings in an array). It is especially important never to call

<?php t($user_text); ?>

, where $user_text is some text that a user entered - doing that can lead to cross-site scripting and other security problems. However, you can use variable substitution in your string, to put variable text such as user names or link URLs into translated text. Variable substitution looks like this:

<?php
$text = t("@name's blog", array('@name' => format_username($account)));
?>

Basically, you can put variables like @name into your string, and t() will substitute their sanitized values at translation time (see $args below or the Localization API pages referenced above for details). Translators can then rearrange the string as necessary for the language (e.g., in Spanish, it might be "blog de @name").

Parameters

$string A string containing the English string to translate.

$args An associative array of replacements to make after translation. Occurrences in $string of any key in $args are replaced with the corresponding value, after sanitization. The sanitization function depends on the first character of the key:

  • !variable: Inserted as is. Use this for text that has already been sanitized.
  • @variable: Escaped to HTML using check_plain(). Use this for anything displayed on a page on the site.
  • %variable: Escaped as a placeholder for user-submitted content using drupal_placeholder(), which shows up as <em>emphasized</em> text.

$options An associative array of additional options, with the following elements:

  • 'langcode' (defaults to the current language): The language code to translate to a language other than what is used to display the page.
  • 'context' (defaults to the empty context): The context the source string belongs to.

Return value

The translated string.

Related topics

▾ 1426 functions call t()

actions_loop_test_action_info in drupal/modules/simpletest/tests/actions_loop_test.module
Implements hook_action_info().
actions_loop_test_trigger_info in drupal/modules/simpletest/tests/actions_loop_test.module
Implements hook_trigger_info().
actions_synchronize in drupal/includes/actions.inc
Synchronizes actions that are provided by modules in hook_action_info().
action_example_action_info in examples/action_example/action_example.module
Implements hook_action_info().
action_example_basic_action in examples/action_example/action_example.module
Basic example action.
action_example_node_sticky_action in examples/action_example/action_example.module
Promote and set sticky flag action. This is the special action that has been customized using the configuration form.
action_example_node_sticky_action_form in examples/action_example/action_example.module
Generates settings form for action_example_node_sticky_action().
action_example_node_sticky_action_validate in examples/action_example/action_example.module
Validate settings form for action_example_node_sticky_action(). Verify that user exists before continuing.
action_example_unblock_user_action in examples/action_example/action_example.module
Unblock an user. This action can be fired from different trigger types:
aggregator_admin_form in drupal/modules/aggregator/aggregator.admin.inc
Form builder; Configure the aggregator system.
aggregator_admin_remove_feed in drupal/modules/aggregator/aggregator.admin.inc
aggregator_aggregator_fetch in drupal/modules/aggregator/aggregator.fetcher.inc
Implements hook_aggregator_fetch().
aggregator_aggregator_fetch_info in drupal/modules/aggregator/aggregator.fetcher.inc
Implements hook_aggregator_fetch_info().
aggregator_aggregator_parse_info in drupal/modules/aggregator/aggregator.parser.inc
Implements hook_aggregator_parse_info().
aggregator_aggregator_process_info in drupal/modules/aggregator/aggregator.processor.inc
Implements hook_aggregator_process_info().
aggregator_aggregator_remove in drupal/modules/aggregator/aggregator.processor.inc
Implements hook_aggregator_remove().
aggregator_block_configure in drupal/modules/aggregator/aggregator.module
Implements hook_block_configure().
aggregator_block_info in drupal/modules/aggregator/aggregator.module
Implements hook_block_info().
aggregator_block_view in drupal/modules/aggregator/aggregator.module
Implements hook_block_view().
aggregator_categorize_items in drupal/modules/aggregator/aggregator.pages.inc
Form builder; build the page list form.
aggregator_categorize_items_submit in drupal/modules/aggregator/aggregator.pages.inc
Process aggregator_categorize_items() form submissions.
aggregator_form_aggregator_admin_form_alter in drupal/modules/aggregator/aggregator.processor.inc
Implements hook_form_aggregator_admin_form_alter().
aggregator_form_category in drupal/modules/aggregator/aggregator.admin.inc
Form builder; Generate a form to add/edit/delete aggregator categories.
aggregator_form_category_submit in drupal/modules/aggregator/aggregator.admin.inc
Process aggregator_form_category form submissions.
aggregator_form_category_validate in drupal/modules/aggregator/aggregator.admin.inc
Validate aggregator_form_feed form submissions.
aggregator_form_feed in drupal/modules/aggregator/aggregator.admin.inc
Form builder; Generate a form to add/edit feed sources.
aggregator_form_feed_submit in drupal/modules/aggregator/aggregator.admin.inc
Process aggregator_form_feed() form submissions.
aggregator_form_feed_validate in drupal/modules/aggregator/aggregator.admin.inc
Validate aggregator_form_feed() form submissions.
aggregator_form_opml in drupal/modules/aggregator/aggregator.admin.inc
Form builder; Generate a form to import feeds from OPML.
aggregator_form_opml_submit in drupal/modules/aggregator/aggregator.admin.inc
Process aggregator_form_opml form submissions.
aggregator_form_opml_validate in drupal/modules/aggregator/aggregator.admin.inc
Validate aggregator_form_opml form submissions.
aggregator_help in drupal/modules/aggregator/aggregator.module
Implements hook_help().
aggregator_page_category in drupal/modules/aggregator/aggregator.pages.inc
Menu callback; displays all the items aggregated in a particular category.
aggregator_page_last in drupal/modules/aggregator/aggregator.pages.inc
Menu callback; displays the most recent items gathered from any feed.
aggregator_page_sources in drupal/modules/aggregator/aggregator.pages.inc
Menu callback; displays all the feeds used by the aggregator.
aggregator_parse_feed in drupal/modules/aggregator/aggregator.parser.inc
Parse a feed and store its items.
aggregator_permission in drupal/modules/aggregator/aggregator.module
Implements hook_permission().
aggregator_refresh in drupal/modules/aggregator/aggregator.module
Checks a news feed for new items.
aggregator_view in drupal/modules/aggregator/aggregator.admin.inc
Displays the aggregator administration page.
ajax_example_add_more in examples/ajax_example/ajax_example_graceful_degradation.inc
ajax_example_add_more_submit in examples/ajax_example/ajax_example_graceful_degradation.inc
Final submit handler.
ajax_example_advanced_commands in examples/ajax_example/ajax_example_advanced.inc
Form to display the AJAX Commands.
ajax_example_autocheckboxes in examples/ajax_example/ajax_example.module
AJAX-enabled select element causes replacement of a set of checkboxes based on the selection.
ajax_example_autotextfields in examples/ajax_example/ajax_example.module
Show/hide textfields based on AJAX-enabled checkbox clicks.
ajax_example_dependent_dropdown in examples/ajax_example/ajax_example.module
A form with a dropdown whose options are dependent on a choice made in a previous dropdown.
ajax_example_dependent_dropdown_degrades in examples/ajax_example/ajax_example_graceful_degradation.inc
A form with a dropdown whose options are dependent on a choice made in a previous dropdown.
ajax_example_dependent_dropdown_degrades_submit in examples/ajax_example/ajax_example_graceful_degradation.inc
Submit function for ajax_example_dependent_dropdown_degrades().
ajax_example_dynamic_sections in examples/ajax_example/ajax_example_graceful_degradation.inc
ajax_example_dynamic_sections_submit in examples/ajax_example/ajax_example_graceful_degradation.inc
Submit function for ajax_example_dynamic_sections().
ajax_example_dynamic_sections_validate in examples/ajax_example/ajax_example_graceful_degradation.inc
Validation function for ajax_example_dynamic_sections().
ajax_example_intro in examples/ajax_example/ajax_example.module
ajax_example_render_link in examples/ajax_example/ajax_example_misc.inc
Demonstrates a clickable AJAX-enabled link using the 'use-ajax' class.
ajax_example_render_link_ra in examples/ajax_example/ajax_example_misc.inc
Demonstrates a clickable AJAX-enabled link using a renderable array with the #ajax property.
ajax_example_simplest in examples/ajax_example/ajax_example.module
Simple form whose ajax-enabled 'changethis' member causes a text change in the description of the 'replace_textfield' member. See Form API Tutorial
ajax_example_submit_driven_ajax in examples/ajax_example/ajax_example.module
A very basic form which with an AJAX-enabled submit.
ajax_example_wizard in examples/ajax_example/ajax_example_graceful_degradation.inc
This example is a classic wizard, where a different and sequential form is presented on each step of the form.
ajax_example_wizard_submit in examples/ajax_example/ajax_example_graceful_degradation.inc
Submit function for ajax_example_wizard.
ajax_forms_test_ajax_commands_form in drupal/modules/simpletest/tests/ajax_forms_test.module
Form to display the Ajax Commands.
ajax_forms_test_simple_form in drupal/modules/simpletest/tests/ajax_forms_test.module
A basic form used to test form_state['values'] during callback.
ajax_forms_test_validation_form in drupal/modules/simpletest/tests/ajax_forms_test.module
This form and its related submit and callback functions demonstrate not validating another form element when a single Ajax element is triggered.
ajax_forms_test_validation_form_callback in drupal/modules/simpletest/tests/ajax_forms_test.module
Ajax callback for the 'drivertext' element of the validation form.
ajax_forms_test_validation_form_submit in drupal/modules/simpletest/tests/ajax_forms_test.module
Submit handler for the validation form.
ajax_link_response in examples/ajax_example/ajax_example_misc.inc
Callback for link example.
ajax_prepare_response in drupal/includes/ajax.inc
Converts the return value of a page callback into an Ajax commands array.
ArchiverZip::__construct in drupal/modules/system/system.archiver.inc
Constructor for a new archiver instance.
archiver_get_archiver in drupal/includes/common.inc
Create the appropriate archiver for the specified file.
authorize_access_denied_page in drupal/authorize.php
Render a 403 access denied page for authorize.php
authorize_filetransfer_form in drupal/includes/authorize.inc
Build the form for choosing a FileTransfer type and supplying credentials.
authorize_filetransfer_form_validate in drupal/includes/authorize.inc
Validate callback for the filetransfer authorization form.
batch_example_batch_1 in examples/batch_example/batch_example.module
Batch 1 definition: Load the node with the lowest nid 1000 times. This creates an operations array defining what batch 1 should do, including what it should do when it's finished. In this case, each operation is the same and by chance even has…
batch_example_batch_2 in examples/batch_example/batch_example.module
Batch 2 : Prepare a batch definition that will load all nodes 20 times.
batch_example_finished in examples/batch_example/batch_example.module
Batch 'finished' callback used by both batch 1 and batch 2.
batch_example_menu in examples/batch_example/batch_example.module
Implements hook_menu().
batch_example_op_1 in examples/batch_example/batch_example.module
Batch operation for batch 1: load a node. This is the function that is called on each operation in batch 1.
batch_example_simple_form in examples/batch_example/batch_example.module
Form builder function to allow choice of which batch to run.
batch_example_update_7100 in examples/batch_example/batch_example.install
Example of batch-driven update function.
batch_test_mock_form in drupal/modules/simpletest/tests/batch_test.module
A simple form with a textfield and submit button.
block_add_block_form_submit in drupal/modules/block/block.admin.inc
Form submission handler for the add block form.
block_add_block_form_validate in drupal/modules/block/block.admin.inc
Form validation handler for the add block form.
block_admin_configure in drupal/modules/block/block.admin.inc
Form builder for the block configuration form.
block_admin_configure_submit in drupal/modules/block/block.admin.inc
Form submission handler for the block configuration form.
block_admin_configure_validate in drupal/modules/block/block.admin.inc
Form validation handler for the block configuration form.
block_admin_display_form in drupal/modules/block/block.admin.inc
Form builder for the main blocks administration form.
block_admin_display_form_submit in drupal/modules/block/block.admin.inc
Form submission handler for the main blocks administration form.
block_custom_block_delete in drupal/modules/block/block.admin.inc
Form builder for the custom block deletion form.
block_custom_block_delete_submit in drupal/modules/block/block.admin.inc
Form submission handler for the custom block deletion form.
block_custom_block_form in drupal/modules/block/block.module
Define the custom block form.
block_example_block_configure in examples/block_example/block_example.module
Implements hook_block_configure().
block_example_block_info in examples/block_example/block_example.module
Implements hook_block_info().
block_example_block_view in examples/block_example/block_example.module
Implements hook_block_view().
block_example_contents in examples/block_example/block_example.module
A module-defined block content function.
block_example_page in examples/block_example/block_example.module
Simple page function to explain what the block example is about.
block_form_system_performance_settings_alter in drupal/modules/block/block.module
Implements hook_form_FORM_ID_alter().
block_form_user_profile_form_alter in drupal/modules/block/block.module
Implements hook_form_FORM_ID_alter().
block_help in drupal/modules/block/block.module
Implements hook_help().
block_page_build in drupal/modules/block/block.module
Implements hook_page_build().
block_permission in drupal/modules/block/block.module
Implements hook_permission().
block_test_block_info in drupal/modules/block/tests/block_test.module
Implements hook_block_info().
blog_block_configure in drupal/modules/blog/blog.module
Implements hook_block_configure().
blog_block_info in drupal/modules/blog/blog.module
Implements hook_block_info().
blog_block_view in drupal/modules/blog/blog.module
Implements hook_block_view().
blog_feed_last in drupal/modules/blog/blog.pages.inc
Menu callback; displays an RSS feed containing recent blog entries of all users.
blog_feed_user in drupal/modules/blog/blog.pages.inc
Menu callback; displays an RSS feed containing recent blog entries of a given user.
blog_help in drupal/modules/blog/blog.module
Implements hook_help().
blog_menu_local_tasks_alter in drupal/modules/blog/blog.module
Implements hook_menu_local_tasks_alter().
blog_node_info in drupal/modules/blog/blog.module
Implements hook_node_info().
blog_node_view in drupal/modules/blog/blog.module
Implements hook_node_view().
blog_page_last in drupal/modules/blog/blog.pages.inc
Menu callback; displays a Drupal page containing recent blog entries of all users.
blog_page_user in drupal/modules/blog/blog.pages.inc
Menu callback; displays a Drupal page containing recent blog entries of a given user.
blog_user_view in drupal/modules/blog/blog.module
Implements hook_user_view().
blog_view in drupal/modules/blog/blog.module
Implements hook_view().
book_admin_edit in drupal/modules/book/book.admin.inc
Build the form to administrate the hierarchy of a single book.
book_admin_edit_submit in drupal/modules/book/book.admin.inc
Handle submission of the book administrative page form.
book_admin_edit_validate in drupal/modules/book/book.admin.inc
Check that the book has not been changed while using the form.
book_admin_overview in drupal/modules/book/book.admin.inc
Returns an administrative overview of all books.
book_admin_settings in drupal/modules/book/book.admin.inc
Builds and returns the book settings form.
book_admin_settings_validate in drupal/modules/book/book.admin.inc
Validate the book settings form.
book_block_configure in drupal/modules/book/book.module
Implements hook_block_configure().
book_block_info in drupal/modules/book/book.module
Implements hook_block_info().
book_block_view in drupal/modules/book/book.module
Implements hook_block_view().
book_entity_info_alter in drupal/modules/book/book.module
Implements hook_entity_info_alter().
book_export in drupal/modules/book/book.pages.inc
Menu callback; Generates various representation of a book page and its children.
book_form_node_delete_confirm_alter in drupal/modules/book/book.module
Form altering function for the confirm form for a single node deletion.
book_form_node_form_alter in drupal/modules/book/book.module
Implements hook_form_BASE_FORM_ID_alter().
book_help in drupal/modules/book/book.module
Implements hook_help().
book_node_view_link in drupal/modules/book/book.module
Inject links into $node as needed.
book_outline_form in drupal/modules/book/book.pages.inc
Build the form to handle all book outline operations via the outline tab.
book_outline_form_submit in drupal/modules/book/book.pages.inc
Handles book outline form submissions from the outline tab.
book_permission in drupal/modules/book/book.module
Implements hook_permission().
book_remove_form in drupal/modules/book/book.pages.inc
Menu callback; builds a form to confirm removal of a node from the book.
book_remove_form_submit in drupal/modules/book/book.pages.inc
Confirm form submit function to remove a node from the book.
color_form_system_theme_settings_alter in drupal/modules/color/color.module
Implements hook_form_FORM_ID_alter().
color_help in drupal/modules/color/color.module
Implements hook_help().
color_requirements in drupal/modules/color/color.install
Implements hook_requirements().
color_scheme_form in drupal/modules/color/color.module
Form callback. Returns the configuration form.
color_scheme_form_submit in drupal/modules/color/color.module
Submit handler for color change form.
comment_action_info in drupal/modules/comment/comment.module
Implements hook_action_info().
comment_admin_overview in drupal/modules/comment/comment.admin.inc
Form builder for the comment overview administration form.
comment_admin_overview_submit in drupal/modules/comment/comment.admin.inc
Process comment_admin_overview form submissions.
comment_admin_overview_validate in drupal/modules/comment/comment.admin.inc
Validate comment_admin_overview form submissions.
comment_approve in drupal/modules/comment/comment.pages.inc
Menu callback; publish specified comment.
comment_block_configure in drupal/modules/comment/comment.module
Implements hook_block_configure().
comment_block_info in drupal/modules/comment/comment.module
Implements hook_block_info().
comment_block_view in drupal/modules/comment/comment.module
Implements hook_block_view().
comment_confirm_delete in drupal/modules/comment/comment.admin.inc
Form builder; Builds the confirmation form for deleting a single comment.
comment_confirm_delete_submit in drupal/modules/comment/comment.admin.inc
Process comment_confirm_delete form submissions.
comment_count_unpublished in drupal/modules/comment/comment.module
Returns a menu title which includes the number of unapproved comments.
comment_edit_page in drupal/modules/comment/comment.module
Page callback for comment editing.
comment_entity_info in drupal/modules/comment/comment.module
Implements hook_entity_info().
comment_field_extra_fields in drupal/modules/comment/comment.module
Implements hook_field_extra_fields().
comment_form in drupal/modules/comment/comment.module
Generate the basic commenting form, for appending to a node or display on a separate page.
comment_form_node_form_alter in drupal/modules/comment/comment.module
Implements hook_form_BASE_FORM_ID_alter().
comment_form_node_type_form_alter in drupal/modules/comment/comment.module
Implements hook_form_FORM_ID_alter().
comment_form_submit in drupal/modules/comment/comment.module
Process comment form submissions; prepare the comment, store it, and set a redirection target.
comment_form_validate in drupal/modules/comment/comment.module
Validate comment form submissions.
comment_help in drupal/modules/comment/comment.module
Implements hook_help().
comment_links in drupal/modules/comment/comment.module
Helper function, build links for an individual comment.
comment_multiple_delete_confirm in drupal/modules/comment/comment.admin.inc
List the selected comments and verify that the admin wants to delete them.
comment_node_view in drupal/modules/comment/comment.module
Implements hook_node_view().
comment_permission in drupal/modules/comment/comment.module
Implements hook_permission().
comment_preview in drupal/modules/comment/comment.module
Generate a comment preview.
comment_ranking in drupal/modules/comment/comment.module
Implements hook_ranking().
comment_reply in drupal/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:
comment_submit in drupal/modules/comment/comment.module
Prepare a comment for submission.
comment_tokens in drupal/modules/comment/comment.tokens.inc
Implements hook_tokens().
comment_token_info in drupal/modules/comment/comment.tokens.inc
Implements hook_token_info().
comment_unpublish_by_keyword_action_form in drupal/modules/comment/comment.module
Form builder; Prepare a form for blacklisted keywords.
comment_update_7005 in drupal/modules/comment/comment.install
Create the comment_body field.
confirm_form in drupal/modules/system/system.module
Generates a form array for a confirmation form.
contact_category_delete_form in drupal/modules/contact/contact.admin.inc
Form builder for deleting a contact category.
contact_category_delete_form_submit in drupal/modules/contact/contact.admin.inc
Submit handler for the confirm delete category form.
contact_category_edit_form in drupal/modules/contact/contact.admin.inc
Category edit page.
contact_category_edit_form_submit in drupal/modules/contact/contact.admin.inc
Process the contact category edit page form submission.
contact_category_edit_form_validate in drupal/modules/contact/contact.admin.inc
Validate the contact category edit page form submission.
contact_category_list in drupal/modules/contact/contact.admin.inc
Categories/list tab.
contact_form_user_admin_settings_alter in drupal/modules/contact/contact.module
Implements hook_form_FORM_ID_alter().
contact_form_user_profile_form_alter in drupal/modules/contact/contact.module
Implements hook_form_FORM_ID_alter().
contact_help in drupal/modules/contact/contact.module
Implements hook_help().
contact_mail in drupal/modules/contact/contact.module
Implements hook_mail().
contact_permission in drupal/modules/contact/contact.module
Implements hook_permission().
contact_personal_form in drupal/modules/contact/contact.pages.inc
Form builder; the personal contact form.
contact_personal_form_submit in drupal/modules/contact/contact.pages.inc
Form submission handler for contact_personal_form().
contact_personal_form_validate in drupal/modules/contact/contact.pages.inc
Form validation handler for contact_personal_form().
contact_site_form in drupal/modules/contact/contact.pages.inc
Form builder; the site-wide contact form.
contact_site_form_submit in drupal/modules/contact/contact.pages.inc
Form submission handler for contact_site_form().
contact_site_form_validate in drupal/modules/contact/contact.pages.inc
Form validation handler for contact_site_form().
contextual_help in drupal/modules/contextual/contextual.module
Implements hook_help().
contextual_permission in drupal/modules/contextual/contextual.module
Implements hook_permission().
dashboard_admin in drupal/modules/dashboard/dashboard.module
Dashboard page callback.
dashboard_help in drupal/modules/dashboard/dashboard.module
Implements hook_help().
dashboard_page_build in drupal/modules/dashboard/dashboard.module
Implements hook_page_build().
dashboard_permission in drupal/modules/dashboard/dashboard.module
Implements hook_permission().
dashboard_update in drupal/modules/dashboard/dashboard.module
Set the new weight of each region according to the drag-and-drop order.
DatabaseSchema::createTable in drupal/includes/database/schema.inc
Create a new table from a Drupal table definition.
DatabaseSchema_mysql::addField in drupal/includes/database/mysql/schema.inc
Add a new field to a table.
DatabaseSchema_mysql::addIndex in drupal/includes/database/mysql/schema.inc
Add an index.
DatabaseSchema_mysql::addPrimaryKey in drupal/includes/database/mysql/schema.inc
Add a primary key.
DatabaseSchema_mysql::addUniqueKey in drupal/includes/database/mysql/schema.inc
Add a unique key.
DatabaseSchema_mysql::changeField in drupal/includes/database/mysql/schema.inc
Change a field definition.
DatabaseSchema_mysql::fieldSetDefault in drupal/includes/database/mysql/schema.inc
Set the default value for a field.
DatabaseSchema_mysql::fieldSetNoDefault in drupal/includes/database/mysql/schema.inc
Set a field to have no default value.
DatabaseSchema_mysql::renameTable in drupal/includes/database/mysql/schema.inc
Rename a table.
DatabaseSchema_pgsql::addField in drupal/includes/database/pgsql/schema.inc
Add a new field to a table.
DatabaseSchema_pgsql::addIndex in drupal/includes/database/pgsql/schema.inc
Add an index.
DatabaseSchema_pgsql::addPrimaryKey in drupal/includes/database/pgsql/schema.inc
Add a primary key.
DatabaseSchema_pgsql::addUniqueKey in drupal/includes/database/pgsql/schema.inc
Add a unique key.
DatabaseSchema_pgsql::changeField in drupal/includes/database/pgsql/schema.inc
Change a field definition.
DatabaseSchema_pgsql::fieldSetDefault in drupal/includes/database/pgsql/schema.inc
Set the default value for a field.
DatabaseSchema_pgsql::fieldSetNoDefault in drupal/includes/database/pgsql/schema.inc
Set a field to have no default value.
DatabaseSchema_pgsql::renameTable in drupal/includes/database/pgsql/schema.inc
Rename a table.
DatabaseSchema_sqlite::addField in drupal/includes/database/sqlite/schema.inc
Add a new field to a table.
DatabaseSchema_sqlite::addIndex in drupal/includes/database/sqlite/schema.inc
Add an index.
DatabaseSchema_sqlite::addPrimaryKey in drupal/includes/database/sqlite/schema.inc
Add a primary key.
DatabaseSchema_sqlite::addUniqueKey in drupal/includes/database/sqlite/schema.inc
Add a unique key.
DatabaseSchema_sqlite::changeField in drupal/includes/database/sqlite/schema.inc
Change a field definition.
DatabaseSchema_sqlite::fieldSetDefault in drupal/includes/database/sqlite/schema.inc
Set the default value for a field.
DatabaseSchema_sqlite::fieldSetNoDefault in drupal/includes/database/sqlite/schema.inc
Set a field to have no default value.
DatabaseSchema_sqlite::renameTable in drupal/includes/database/sqlite/schema.inc
Rename a table.
database_test_tablesort in drupal/modules/simpletest/tests/database_test.module
Run a tablesort query and return the results.
database_test_tablesort_first in drupal/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/modules/simpletest/tests/database_test.module
Output a form without setting a header sort.
date_validate in drupal/includes/form.inc
Validates the date type to stop dates like February 30, 2006.
dblog_clear_log_form in drupal/modules/dblog/dblog.admin.inc
Return form for dblog clear button.
dblog_clear_log_submit in drupal/modules/dblog/dblog.admin.inc
Submit callback: clear database with log messages.
dblog_event in drupal/modules/dblog/dblog.admin.inc
Menu callback; displays details about a log message.
dblog_filters in drupal/modules/dblog/dblog.admin.inc
List dblog administration filters that can be applied.
dblog_filter_form in drupal/modules/dblog/dblog.admin.inc
Return form for dblog administration filters.
dblog_filter_form_submit in drupal/modules/dblog/dblog.admin.inc
Process result from dblog administration filter form.
dblog_filter_form_validate in drupal/modules/dblog/dblog.admin.inc
Validate result from dblog administration filter form.
dblog_form_system_logging_settings_alter in drupal/modules/dblog/dblog.module
Implements hook_form_FORM_ID_alter().
dblog_help in drupal/modules/dblog/dblog.module
Implements hook_help().
dblog_overview in drupal/modules/dblog/dblog.admin.inc
Menu callback; displays a listing of log messages.
dblog_top in drupal/modules/dblog/dblog.admin.inc
Menu callback; generic function to display a page of the most frequent events.
dbtng_example_advanced_list in examples/dbtng_example/dbtng_example.module
Render a filtered list of entries in the database.
dbtng_example_entry_insert in examples/dbtng_example/dbtng_example.module
Save an entry in the database.
dbtng_example_entry_update in examples/dbtng_example/dbtng_example.module
Update an entry in the database.
dbtng_example_form_add in examples/dbtng_example/dbtng_example.module
Prepare a simple form to add an entry, with all the interesting fields.
dbtng_example_form_add_submit in examples/dbtng_example/dbtng_example.module
Submit handler for 'add entry' form.
dbtng_example_form_update in examples/dbtng_example/dbtng_example.module
Sample UI to update a record.
dbtng_example_form_update_submit in examples/dbtng_example/dbtng_example.module
Submit handler for 'update entry' form.
dbtng_example_help in examples/dbtng_example/dbtng_example.module
Implements hook_help().
dbtng_example_list in examples/dbtng_example/dbtng_example.module
Render a list of entries in the database.
DrupalTestCase::assertEqual in drupal/modules/simpletest/drupal_web_test_case.php
Check to see if two values are equal.
DrupalTestCase::assertFalse in drupal/modules/simpletest/drupal_web_test_case.php
Check to see if a value is false (an empty string, 0, NULL, or FALSE).
DrupalTestCase::assertIdentical in drupal/modules/simpletest/drupal_web_test_case.php
Check to see if two values are identical.
DrupalTestCase::assertNotEqual in drupal/modules/simpletest/drupal_web_test_case.php
Check to see if two values are not equal.
DrupalTestCase::assertNotIdentical in drupal/modules/simpletest/drupal_web_test_case.php
Check to see if two values are not identical.
DrupalTestCase::assertNotNull in drupal/modules/simpletest/drupal_web_test_case.php
Check to see if a value is not NULL.
DrupalTestCase::assertNull in drupal/modules/simpletest/drupal_web_test_case.php
Check to see if a value is NULL.
DrupalTestCase::assertTrue in drupal/modules/simpletest/drupal_web_test_case.php
Check to see if a value is not false (not an empty string, 0, NULL, or FALSE).
DrupalTestCase::exceptionHandler in drupal/modules/simpletest/drupal_web_test_case.php
Handle exceptions.
DrupalTestCase::insertAssert in drupal/modules/simpletest/drupal_web_test_case.php
Store an assertion from outside the testing context.
DrupalTestCase::run in drupal/modules/simpletest/drupal_web_test_case.php
Run all tests in this class.
DrupalTestCase::verbose in drupal/modules/simpletest/drupal_web_test_case.php
Logs verbose message in a text file.
DrupalWebTestCase::assertFieldById in drupal/modules/simpletest/drupal_web_test_case.php
Asserts that a field exists in the current page with the given id and value.
DrupalWebTestCase::assertFieldByName in drupal/modules/simpletest/drupal_web_test_case.php
Asserts that a field exists in the current page with the given name and value.
DrupalWebTestCase::assertFieldChecked in drupal/modules/simpletest/drupal_web_test_case.php
Asserts that a checkbox field in the current page is checked.
DrupalWebTestCase::assertLink in drupal/modules/simpletest/drupal_web_test_case.php
Pass if a link with the specified label is found, and optional with the specified index.
DrupalWebTestCase::assertLinkByHref in drupal/modules/simpletest/drupal_web_test_case.php
Pass if a link containing a given href (part) is found.
DrupalWebTestCase::assertMail in drupal/modules/simpletest/drupal_web_test_case.php
Asserts that the most recently sent e-mail message has the given value.
DrupalWebTestCase::assertMailPattern in drupal/modules/simpletest/drupal_web_test_case.php
Asserts that the most recently sent e-mail message has the pattern in it.
DrupalWebTestCase::assertMailString in drupal/modules/simpletest/drupal_web_test_case.php
Asserts that the most recently sent e-mail message has the string in it.
DrupalWebTestCase::assertNoDuplicateIds in drupal/modules/simpletest/drupal_web_test_case.php
Asserts that each HTML ID is used for just a single element.
DrupalWebTestCase::assertNoFieldById in drupal/modules/simpletest/drupal_web_test_case.php
Asserts that a field does not exist with the given id and value.
DrupalWebTestCase::assertNoFieldByName in drupal/modules/simpletest/drupal_web_test_case.php
Asserts that a field does not exist with the given name and value.
DrupalWebTestCase::assertNoFieldChecked in drupal/modules/simpletest/drupal_web_test_case.php
Asserts that a checkbox field in the current page is not checked.
DrupalWebTestCase::assertNoLink in drupal/modules/simpletest/drupal_web_test_case.php
Pass if a link with the specified label is not found.
DrupalWebTestCase::assertNoLinkByHref in drupal/modules/simpletest/drupal_web_test_case.php
Pass if a link containing a given href (part) is not found.
DrupalWebTestCase::assertNoOptionSelected in drupal/modules/simpletest/drupal_web_test_case.php
Asserts that a select option in the current page is not checked.
DrupalWebTestCase::assertNoPattern in drupal/modules/simpletest/drupal_web_test_case.php
Will trigger a pass if the perl regex pattern is not present in raw content.
DrupalWebTestCase::assertNoRaw in drupal/modules/simpletest/drupal_web_test_case.php
Pass if the raw text is NOT found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated.
DrupalWebTestCase::assertNoResponse in drupal/modules/simpletest/drupal_web_test_case.php
Asserts the page did not return the specified response code.
DrupalWebTestCase::assertNoTitle in drupal/modules/simpletest/drupal_web_test_case.php
Pass if the page title is not the given string.
DrupalWebTestCase::assertOptionSelected in drupal/modules/simpletest/drupal_web_test_case.php
Asserts that a select option in the current page is checked.
DrupalWebTestCase::assertPattern in drupal/modules/simpletest/drupal_web_test_case.php
Will trigger a pass if the Perl regex pattern is found in the raw content.
DrupalWebTestCase::assertRaw in drupal/modules/simpletest/drupal_web_test_case.php
Pass if the raw text IS found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated.
DrupalWebTestCase::assertResponse in drupal/modules/simpletest/drupal_web_test_case.php
Asserts the page responds with the specified response code.
DrupalWebTestCase::assertTextHelper in drupal/modules/simpletest/drupal_web_test_case.php
Helper for assertText and assertNoText.
DrupalWebTestCase::assertTitle in drupal/modules/simpletest/drupal_web_test_case.php
Pass if the page title is the given string.
DrupalWebTestCase::assertUrl in drupal/modules/simpletest/drupal_web_test_case.php
Pass if the internal browser's URL matches the given path.
DrupalWebTestCase::checkPermissions in drupal/modules/simpletest/drupal_web_test_case.php
Check to make sure that the array of permissions are valid.
DrupalWebTestCase::clickLink in drupal/modules/simpletest/drupal_web_test_case.php
Follows a link by name.
DrupalWebTestCase::curlExec in drupal/modules/simpletest/drupal_web_test_case.php
Initializes and executes a cURL request.
DrupalWebTestCase::drupalCreateContentType in drupal/modules/simpletest/drupal_web_test_case.php
Creates a custom content type based on default settings.
DrupalWebTestCase::drupalCreateRole in drupal/modules/simpletest/drupal_web_test_case.php
Internal helper function; Create a role with specified permissions.
DrupalWebTestCase::drupalCreateUser in drupal/modules/simpletest/drupal_web_test_case.php
Create a user with a given set of permissions. The permissions correspond to the names given on the privileges page.
DrupalWebTestCase::drupalLogin in drupal/modules/simpletest/drupal_web_test_case.php
Log in a user with the internal browser.
DrupalWebTestCase::drupalLogout in drupal/modules/simpletest/drupal_web_test_case.php
DrupalWebTestCase::drupalPost in drupal/modules/simpletest/drupal_web_test_case.php
Execute a POST request on a Drupal page. It will be done as usual POST request with SimpleBrowser.
DrupalWebTestCase::parse in drupal/modules/simpletest/drupal_web_test_case.php
Parse content returned from curlExec using DOM and SimpleXML.
DrupalWebTestCase::tearDown in drupal/modules/simpletest/drupal_web_test_case.php
Delete created files and temporary files directory, delete the tables created by setUp(), and reset the database prefix.
DrupalWebTestCase::verboseEmail in drupal/modules/simpletest/drupal_web_test_case.php
Outputs to verbose the most recent $count emails sent.
drupal_check_module in drupal/includes/install.inc
Check a module's requirements.
drupal_deliver_html_page in drupal/includes/common.inc
Package and send the result of a page callback to the browser as HTML.
drupal_http_request in drupal/includes/common.inc
Perform an HTTP request.
drupal_mail in drupal/includes/mail.inc
Compose and optionally send an e-mail message.
drupal_mail_system in drupal/includes/mail.inc
Returns an object that implements the MailSystemInterface.
drupal_validate_form in drupal/includes/form.inc
Validates user-submitted form data from the $form_state using the validate functions defined in a structured form array.
email_example_form in examples/email_example/email_example.module
The contact form.
email_example_form_validate in examples/email_example/email_example.module
Form validation logic for the contact form.
email_example_mail in examples/email_example/email_example.module
Implement hook_mail().
email_example_mail_alter in examples/email_example/email_example.module
Implement hook_mail_alter().
email_example_mail_send in examples/email_example/email_example.module
Send an e-mail.
EntityFieldQuery::propertyQuery in drupal/includes/entity.inc
Queries entity tables in SQL for property conditions and sorts.
EntityFieldQuery::queryCallback in drupal/includes/entity.inc
Determines the query callback to use for this entity query.
FieldValidationException::__construct in drupal/modules/field/field.attach.inc
Constructor for FieldValidationException.
field_create_field in drupal/modules/field/field.crud.inc
Creates a field.
field_create_instance in drupal/modules/field/field.crud.inc
Creates an instance of a field, binding it to a bundle.
field_default_form in drupal/modules/field/field.form.inc
Create a separate form element for each field.
field_default_validate in drupal/modules/field/field.default.inc
Generic field validation handler.
field_default_view in drupal/modules/field/field.default.inc
Builds a renderable array for field values.
field_example_3text_validate in examples/field_example/field_example.module
Validate the individual fields and then convert them into a single HTML RGB value as text.
field_example_field_formatter_info in examples/field_example/field_example.module
Implements hook_field_formatter_info().
field_example_field_formatter_view in examples/field_example/field_example.module
Implements hook_field_formatter_view().
field_example_field_info in examples/field_example/field_example.module
Implements hook_field_info().
field_example_field_validate in examples/field_example/field_example.module
Implements hook_field_validate().
field_example_field_widget_form in examples/field_example/field_example.module
Implements hook_field_widget_form().
field_example_field_widget_info in examples/field_example/field_example.module
Implements hook_field_widget_info().
field_help in drupal/modules/field/field.module
Implements hook_help().
field_multiple_value_form in drupal/modules/field/field.form.inc
Special handling to create form elements for multiple values.
field_purge_field in drupal/modules/field/field.crud.inc
Purges a field record from the database.
field_sql_storage_field_storage_info in drupal/modules/field/modules/field_sql_storage/field_sql_storage.module
Implements hook_field_storage_info().
field_sql_storage_help in drupal/modules/field/modules/field_sql_storage/field_sql_storage.module
Implements hook_help().
field_test_entity_add in drupal/modules/field/tests/field_test.entity.inc
Menu callback: displays the 'Add new test_entity' form.
field_test_entity_edit in drupal/modules/field/tests/field_test.entity.inc
Menu callback: displays the 'Edit exiisting test_entity' form.
field_test_entity_form in drupal/modules/field/tests/field_test.entity.inc
Test_entity form.
field_test_entity_form_submit in drupal/modules/field/tests/field_test.entity.inc
Submit handler for field_test_entity_form().
field_test_entity_info in drupal/modules/field/tests/field_test.entity.inc
Implements hook_entity_info().
field_test_entity_nested_form in drupal/modules/field/tests/field_test.entity.inc
Form combining two separate entities.
field_test_entity_nested_form_submit in drupal/modules/field/tests/field_test.entity.inc
Submit handler for field_test_entity_nested_form().
field_test_field_formatter_info in drupal/modules/field/tests/field_test.field.inc
Implements hook_field_formatter_info().
field_test_field_formatter_settings_form in drupal/modules/field/tests/field_test.field.inc
Implements hook_field_formatter_settings_form().
field_test_field_formatter_settings_summary in drupal/modules/field/tests/field_test.field.inc
Implements hook_field_formatter_settings_summary().
field_test_field_info in drupal/modules/field/tests/field_test.field.inc
Implements hook_field_info().
field_test_field_instance_settings_form in drupal/modules/field/tests/field_test.field.inc
Implements hook_field_instance_settings_form().
field_test_field_settings_form in drupal/modules/field/tests/field_test.field.inc
Implements hook_field_settings_form().
field_test_field_storage_info in drupal/modules/field/tests/field_test.storage.inc
Implements hook_field_storage_info().
field_test_field_validate in drupal/modules/field/tests/field_test.field.inc
Implements hook_field_validate().
field_test_field_widget_info in drupal/modules/field/tests/field_test.field.inc
Implements hook_field_widget_info().
field_test_field_widget_settings_form in drupal/modules/field/tests/field_test.field.inc
Implements hook_field_widget_settings_form().
field_test_menu in drupal/modules/field/tests/field_test.module
Implements hook_menu().
field_test_permission in drupal/modules/field/tests/field_test.module
Implements hook_permission().
field_ui_default_value_widget in drupal/modules/field_ui/field_ui.admin.inc
Build default value fieldset.
field_ui_display_overview_form in drupal/modules/field_ui/field_ui.admin.inc
Menu callback; presents field display settings for a given view mode.
field_ui_display_overview_form_submit in drupal/modules/field_ui/field_ui.admin.inc
Submit handler for the display overview form.
field_ui_existing_field_options in drupal/modules/field_ui/field_ui.admin.inc
Return an array of existing field to be added to a bundle.
field_ui_fields_list in drupal/modules/field_ui/field_ui.admin.inc
Menu callback; lists all defined fields for quick reference.
field_ui_field_delete_form in drupal/modules/field_ui/field_ui.admin.inc
Menu callback; present a form for removing a field instance from a bundle.
field_ui_field_delete_form_submit in drupal/modules/field_ui/field_ui.admin.inc
Removes a field instance from a bundle.
field_ui_field_edit_form in drupal/modules/field_ui/field_ui.admin.inc
Menu callback; presents the field instance edit page.
field_ui_field_edit_form_submit in drupal/modules/field_ui/field_ui.admin.inc
Form submit handler for field instance settings form.
field_ui_field_overview_form in drupal/modules/field_ui/field_ui.admin.inc
Menu callback; listing of fields for a bundle.
field_ui_field_overview_form_submit in drupal/modules/field_ui/field_ui.admin.inc
Submit handler for the field overview form.
field_ui_field_settings_form in drupal/modules/field_ui/field_ui.admin.inc
Menu callback; presents the field settings edit page.
field_ui_field_settings_form_submit in drupal/modules/field_ui/field_ui.admin.inc
Save a field's settings after editing.
field_ui_form_node_type_form_alter in drupal/modules/field_ui/field_ui.module
Add a button Save and add fields to Create content type form.
field_ui_help in drupal/modules/field_ui/field_ui.module
Implements hook_help().
field_ui_inactive_message in drupal/modules/field_ui/field_ui.admin.inc
Helper function to display a message about inactive fields.
field_ui_menu in drupal/modules/field_ui/field_ui.module
Implements hook_menu().
field_ui_menu_title in drupal/modules/field_ui/field_ui.module
Menu title callback.
field_ui_widget_type_form in drupal/modules/field_ui/field_ui.admin.inc
Menu callback; select a widget for the field.
field_ui_widget_type_form_submit in drupal/modules/field_ui/field_ui.admin.inc
Submit the change in widget type.
field_update_instance in drupal/modules/field/field.crud.inc
Updates an instance of a field.
FileTransfer::getSettingsForm in drupal/includes/filetransfer/filetransfer.inc
Returns a form to collect connection settings credentials.
file_ajax_progress in drupal/modules/file/file.module
Menu callback for upload progress.
file_ajax_upload in drupal/modules/file/file.module
Menu callback; Shared Ajax callback for file uploads and deletions.
file_copy in drupal/includes/file.inc
Copies a file to a new location and adds a file record to the database.
file_delete in drupal/includes/file.inc
Delete a file and its database record.
file_example_check_directory_submit in examples/file_example/file_example.module
Submit handler to test directory existence. This actually just checks to see if the directory is writable
file_example_create_directory_submit in examples/file_example/file_example.module
Submit handler for directory creation. Here we create a directory and set proper permissions on it using file_prepare_directory().
file_example_delete_directory_submit in examples/file_example/file_example.module
Submit handler for directory deletion.
file_example_delete_submit in examples/file_example/file_example.module
Submit handler to delete a file.
file_example_file_check_exists_submit in examples/file_example/file_example.module
Submit handler to check existence of a file.
file_example_managed_write_submit in examples/file_example/file_example.module
Submit handler to write a managed file.
file_example_permission in examples/file_example/file_example.module
Implements hook_permission().
file_example_readwrite in examples/file_example/file_example.module
Form builder function for the file example readwrite and directory creation example.
file_example_read_submit in examples/file_example/file_example.module
Submit handler for reading a stream wrapper.
file_example_session_contents in examples/file_example/file_example.module
A utility function to allow us to see what is in a session "file".
file_example_show_session_contents_submit in examples/file_example/file_example.module
Utility submit function for debugging: Show $_SESSION.
file_example_stream_wrappers in examples/file_example/file_example.module
Implements hook_stream_wrappers(). hook_stream_wrappers() is Drupal's way of exposing the class that PHP will use to provide a new stream wrapper class. In this case, we'll expose the 'session' scheme, so a file reference like…
file_example_unmanaged_php_submit in examples/file_example/file_example.module
file_example_unmanaged_write_submit in examples/file_example/file_example.module
file_field_formatter_info in drupal/modules/file/file.field.inc
Implements hook_field_formatter_info().
file_field_info in drupal/modules/file/file.field.inc
Implements hook_field_info().
file_field_instance_settings_form in drupal/modules/file/file.field.inc
Implements hook_field_instance_settings_form().
file_field_settings_form in drupal/modules/file/file.field.inc
Implements hook_field_settings_form().
file_field_widget_form in drupal/modules/file/file.field.inc
Implements hook_field_widget_form().
file_field_widget_info in drupal/modules/file/file.field.inc
Implements hook_field_widget_info().
file_field_widget_process in drupal/modules/file/file.field.inc
An element #process callback for the file_generic field type.
file_field_widget_process_multiple in drupal/modules/file/file.field.inc
An element #process callback for a group of file_generic fields.
file_field_widget_settings_form in drupal/modules/file/file.field.inc
Implements hook_field_widget_settings_form().
file_help in drupal/modules/file/file.module
Implements hook_help().
file_managed_file_process in drupal/modules/file/file.module
Process function to expand the managed_file element type.
file_managed_file_save_upload in drupal/modules/file/file.module
Given a managed_file element, save any files that have been uploaded into it.
file_managed_file_validate in drupal/modules/file/file.module
An #element_validate callback for the managed_file element.
file_module_test_form in drupal/modules/file/tests/file_module_test.module
Form builder for testing a 'managed_file' element.
file_module_test_form_submit in drupal/modules/file/tests/file_module_test.module
Form submission handler for file_module_test_form().
file_move in drupal/includes/file.inc
Move a file to a new location and update the file's database entry.
file_munge_filename in drupal/includes/file.inc
Modify a filename as needed for security purposes.
file_requirements in drupal/modules/file/file.install
Implements hook_requirements().
file_save_data in drupal/includes/file.inc
Save a string to the specified destination and create a database file entry.
file_save_upload in drupal/includes/file.inc
Saves a file upload to a new location.
file_test_stream_wrappers in drupal/modules/simpletest/tests/file_test.module
Implements hook_stream_wrappers().
file_unmanaged_copy in drupal/includes/file.inc
Copies a file to a new location without invoking the file API.
file_unmanaged_save_data in drupal/includes/file.inc
Save a string to the specified destination without invoking file API.
file_validate_extensions in drupal/includes/file.inc
Check that the filename ends with an allowed extension.
file_validate_image_resolution in drupal/includes/file.inc
Verify that image dimensions are within the specified maximum and minimum.
file_validate_is_image in drupal/includes/file.inc
Check that the file is recognized by image_get_info() as an image.
file_validate_name_length in drupal/includes/file.inc
Check for files with names longer than we can store in the database.
file_validate_size in drupal/includes/file.inc
Check that the file's size is below certain limits.
filter_admin_disable in drupal/modules/filter/filter.admin.inc
Menu callback; confirm deletion of a format.
filter_admin_disable_submit in drupal/modules/filter/filter.admin.inc
Process filter disable form submission.
filter_admin_format_form in drupal/modules/filter/filter.admin.inc
Generate a text format form.
filter_admin_format_form_submit in drupal/modules/filter/filter.admin.inc
Process text format form submissions.
filter_admin_format_form_validate in drupal/modules/filter/filter.admin.inc
Validate text format form submissions.
filter_admin_format_page in drupal/modules/filter/filter.admin.inc
Menu callback; Display a text format form.
filter_admin_overview in drupal/modules/filter/filter.admin.inc
Menu callback; Displays a list of all text formats and allows them to be rearranged.
filter_admin_overview_submit in drupal/modules/filter/filter.admin.inc
filter_example_filter_info in examples/filter_example/filter_example.module
Implements hook_filter_info().
filter_filter_info in drupal/modules/filter/filter.module
Implements hook_filter_info().
filter_form_access_denied in drupal/modules/filter/filter.module
#pre_render callback for #type 'text_format' to hide field value from prying eyes.
filter_help in drupal/modules/filter/filter.module
Implements hook_help().
filter_permission in drupal/modules/filter/filter.module
Implements hook_permission().
filter_process_format in drupal/modules/filter/filter.module
Expands an element into a base element with text format selector attached.
format_interval in drupal/includes/common.inc
Format a time interval with the requested granularity.
format_plural in drupal/includes/common.inc
Format a string containing a count of items.
format_size in drupal/includes/common.inc
Generate a string representation for the given byte count.
format_username in drupal/includes/common.inc
Format a username.
form_example_intro in examples/form_example/form_example.module
form_example_menu in examples/form_example/form_example.module
Implements hook_menu() to set up the URLs (menu entries) for the form examples.
form_example_states_form in examples/form_example/form_example_states.inc
This form shows off the #states system by dynamically showing parts of the form based on the state of other parts.
form_example_states_form_submit in examples/form_example/form_example_states.inc
form_example_tutorial in examples/form_example/form_example_tutorial.inc
Main Form tutorial page.
form_example_tutorial_1 in examples/form_example/form_example_tutorial.inc
This first form function is from the Form Tutorial handbook page
form_example_tutorial_10 in examples/form_example/form_example_tutorial.inc
Example 10: A form with a file upload field.
form_example_tutorial_10_submit in examples/form_example/form_example_tutorial.inc
Submit handler for form_example_tutorial_10().
form_example_tutorial_10_validate in examples/form_example/form_example_tutorial.inc
Validate handler for form_example_tutorial_10().
form_example_tutorial_2 in examples/form_example/form_example_tutorial.inc
This is Example 2, a basic form with a submit button.
form_example_tutorial_3 in examples/form_example/form_example_tutorial.inc
Example 3: A basic form with fieldsets.
form_example_tutorial_4 in examples/form_example/form_example_tutorial.inc
Example 4: Basic form with required fields.
form_example_tutorial_5 in examples/form_example/form_example_tutorial.inc
Example 5: Basic form with additional element attributes.
form_example_tutorial_6 in examples/form_example/form_example_tutorial.inc
Example 6: A basic form with a validate handler.
form_example_tutorial_7 in examples/form_example/form_example_tutorial.inc
Example 7: With a submit handler.
form_example_tutorial_7_submit in examples/form_example/form_example_tutorial.inc
Submit function for form_example_tutorial_7().
form_example_tutorial_8 in examples/form_example/form_example_tutorial.inc
Example 8: A simple multistep form with a Next and a Back button.
form_example_tutorial_8_page_two in examples/form_example/form_example_tutorial.inc
Returns the form for the second page of form_example_tutorial_8().
form_example_tutorial_8_page_two_submit in examples/form_example/form_example_tutorial.inc
The page 2 submit handler.
form_example_tutorial_9 in examples/form_example/form_example_tutorial.inc
Example 9: A form with a dynamically added new fields.
form_example_tutorial_9_submit in examples/form_example/form_example_tutorial.inc
Submit function for form_example_tutorial_9().
form_example_wizard in examples/form_example/form_example_wizard.inc
The primary formbuilder function for the wizard form. This is the form that you should call with drupal_get_form() from your code, and it will include the rest of the step forms defined. You are not required to change this function, as this will…
form_example_wizard_location_info in examples/form_example/form_example_wizard.inc
Returns form elements for the 'location info' page of the wizard. This is the second step of the wizard. This step asks for a textfield value: a City. This step also includes a validation declared later.
form_example_wizard_location_info_validate in examples/form_example/form_example_wizard.inc
Custom validation form for the 'location info' page of the wizard. This is the validation function for the second step of the wizard. The city cannot be empty or be "San Francisco".
form_example_wizard_other_info in examples/form_example/form_example_wizard.inc
Returns form elements for the 'other info' page of the wizard. This is the thid and last step of the example wizard.
form_example_wizard_personal_info in examples/form_example/form_example_wizard.inc
Returns form elements for the 'personal info' page of the wizard. This is the first step of the wizard, asking for two textfields: first name and last name.
form_example_wizard_submit in examples/form_example/form_example_wizard.inc
Wizard form submit handler.
form_label_test_form in drupal/modules/simpletest/tests/form_test.module
A form for testing form labels and required marks.
form_process_date in drupal/includes/form.inc
Roll out a single date element.
form_process_machine_name in drupal/includes/form.inc
Processes a machine-readable name form element.
form_process_password_confirm in drupal/includes/form.inc
Expand a password_confirm field into two text boxes.
form_process_select in drupal/includes/form.inc
Processes a select list form element.
form_process_tableselect in drupal/includes/form.inc
Create the correct amount of checkbox or radio elements to populate the table.
form_test_clicked_button_validate in drupal/modules/simpletest/tests/form_test.module
Form validation handler for the form_test_clicked_button() form.
form_test_element_validate_name in drupal/modules/simpletest/tests/form_test.module
Form element validation handler for 'name' in form_test_validate_form().
form_test_form_rebuild_preserve_values_form in drupal/modules/simpletest/tests/form_test.module
Form builder for testing preservation of values during a rebuild.
form_test_form_rebuild_preserve_values_form_submit in drupal/modules/simpletest/tests/form_test.module
Form submit handler for form_test_form_rebuild_preserve_values_form().
form_test_form_state_values_clean_form in drupal/modules/simpletest/tests/form_test.module
Form builder for form_state_values_clean() test.
form_test_form_user_register_form_alter in drupal/modules/simpletest/tests/form_test.module
Implements hook_form_FORM_ID_alter() for the registration form.
form_test_limit_validation_errors_element_validate_test in drupal/modules/simpletest/tests/form_test.module
Form element validation handler for the 'test' element.
form_test_limit_validation_errors_form in drupal/modules/simpletest/tests/form_test.module
Builds a simple form with a button triggering partial validation.
form_test_load_include_custom in drupal/modules/simpletest/tests/form_test.module
Menu callback for testing custom form includes.
form_test_load_include_menu in drupal/modules/simpletest/tests/form_test.file.inc
Form constructor for testing FAPI file inclusion of the file specified in hook_menu().
form_test_menu in drupal/modules/simpletest/tests/form_test.module
Implements hook_menu().
form_test_programmatic_form_validate in drupal/modules/simpletest/tests/form_test.module
Form validation handler for programmatic form submissions.
form_test_state_persist in drupal/modules/simpletest/tests/form_test.module
Form constructor for testing form state persistence.
form_test_validate_form_validate in drupal/modules/simpletest/tests/form_test.module
Form validation handler for form_test_validate_form().
form_validate_machine_name in drupal/includes/form.inc
Form element validation handler for #type 'machine_name'.
forum_admin_settings in drupal/modules/forum/forum.admin.inc
Form builder for the forum settings page.
forum_block_configure in drupal/modules/forum/forum.module
Implements hook_block_configure().
forum_block_info in drupal/modules/forum/forum.module
Implements hook_block_info().
forum_block_view in drupal/modules/forum/forum.module
Implements hook_block_view().
forum_block_view_pre_render in drupal/modules/forum/forum.module
A #pre_render callback. Lists nodes based on the element's #query property. *
forum_confirm_delete in drupal/modules/forum/forum.admin.inc
Returns a confirmation page for deleting a forum taxonomy term.
forum_confirm_delete_submit in drupal/modules/forum/forum.admin.inc
Implement forms api _submit call. Deletes a forum after confirmation.
forum_enable in drupal/modules/forum/forum.install
Implements hook_enable().
forum_form in drupal/modules/forum/forum.module
Implements hook_form().
forum_form_alter in drupal/modules/forum/forum.module
Implements hook_form_alter().
forum_form_container in drupal/modules/forum/forum.admin.inc
Returns a form for adding a container to the forum vocabulary
forum_form_forum in drupal/modules/forum/forum.admin.inc
Returns a form for adding a forum to the forum vocabulary
forum_form_main in drupal/modules/forum/forum.admin.inc
@file Administrative page callbacks for the forum module.
forum_form_submit in drupal/modules/forum/forum.admin.inc
Process forum form and container form submissions.
forum_get_topics in drupal/modules/forum/forum.module
forum_help in drupal/modules/forum/forum.module
Implements hook_help().
forum_menu_local_tasks_alter in drupal/modules/forum/forum.module
Implements hook_menu_local_tasks_alter().
forum_node_info in drupal/modules/forum/forum.module
Implements hook_node_info().
forum_node_validate in drupal/modules/forum/forum.module
Implements hook_node_validate().
forum_node_view in drupal/modules/forum/forum.module
Implements hook_node_view().
forum_overview in drupal/modules/forum/forum.admin.inc
Returns an overview list of existing forums and containers
forum_permission in drupal/modules/forum/forum.module
Implements hook_permission().
garland_breadcrumb in drupal/themes/garland/template.php
Return a themed breadcrumb trail.
garland_form_system_theme_settings_alter in drupal/themes/garland/theme-settings.php
Implements hook_form_FORM_ID_alter().
garland_preprocess_page in drupal/themes/garland/template.php
Override or insert variables into the page template.
help_help in drupal/modules/help/help.module
Implements hook_help().
help_main in drupal/modules/help/help.admin.inc
Menu callback; prints a page listing a glossary of Drupal terminology.
help_page in drupal/modules/help/help.admin.inc
Menu callback; prints a page listing general help for a module.
hook_action_info in drupal/modules/system/system.api.php
Declares information about actions.
hook_action_info_alter in drupal/modules/system/system.api.php
Alters the actions declared by another module.
hook_aggregator_fetch_info in drupal/modules/aggregator/aggregator.api.php
Implement this hook to expose the title and a short description of your fetcher.
hook_aggregator_parse_info in drupal/modules/aggregator/aggregator.api.php
Implement this hook to expose the title and a short description of your parser.
hook_aggregator_process_info in drupal/modules/aggregator/aggregator.api.php
Implement this hook to expose the title and a short description of your processor.
hook_block_configure in drupal/modules/block/block.api.php
Define a configuration form for a block.
hook_block_info in drupal/modules/block/block.api.php
Define all blocks provided by the module.
hook_block_view in drupal/modules/block/block.api.php
Return a rendered or renderable view of a block.
hook_block_view_MODULE_DELTA_alter in drupal/modules/block/block.api.php
Perform alterations to a specific block.
hook_comment_delete in drupal/modules/comment/comment.api.php
The comment is being deleted by the moderator.
hook_comment_publish in drupal/modules/comment/comment.api.php
The comment is being published by the moderator.
hook_comment_unpublish in drupal/modules/comment/comment.api.php
The comment is being unpublished by the moderator.
hook_date_format_types in drupal/modules/system/system.api.php
Define additional date types.
hook_entity_info in drupal/modules/system/system.api.php
Inform the base system and the Field API about one or more entity types.
hook_field_attach_form in drupal/modules/field/field.api.php
Act on field_attach_form().
hook_field_extra_fields in drupal/modules/field/field.api.php
Exposes "pseudo-field" components on fieldable entities.
hook_field_formatter_info in drupal/modules/field/field.api.php
Expose Field API formatter types.
hook_field_formatter_settings_form in drupal/modules/field_ui/field_ui.api.php
Returns form elements for a formatter's settings.
hook_field_formatter_settings_summary in drupal/modules/field_ui/field_ui.api.php
Returns a short summary for the current formatter settings of an instance.
hook_field_formatter_view in drupal/modules/field/field.api.php
Build a renderable array for a field value.
hook_field_info in drupal/modules/field/field.api.php
Define Field API field types.
hook_field_instance_settings_form in drupal/modules/field_ui/field_ui.api.php
Add settings to an instance field settings form.
hook_field_settings_form in drupal/modules/field_ui/field_ui.api.php
Add settings to a field settings form.
hook_field_storage_info in drupal/modules/field/field.api.php
Expose Field API storage backends.
hook_field_validate in drupal/modules/field/field.api.php
Validate this module's field data.
hook_field_widget_info in drupal/modules/field/field.api.php
Expose Field API widget types.
hook_field_widget_settings_form in drupal/modules/field_ui/field_ui.api.php
Add settings to a widget settings form.
hook_filetransfer_info in drupal/modules/system/system.api.php
Register information about FileTransfer classes provided by a module.
hook_file_validate in drupal/modules/system/system.api.php
Check that files meet a given criteria.
hook_filter_FILTER_settings in drupal/modules/filter/filter.api.php
Settings callback for hook_filter_info().
hook_filter_FILTER_tips in drupal/modules/filter/filter.api.php
Tips callback for hook_filter_info().
hook_filter_info in drupal/modules/filter/filter.api.php
Define content filters.
hook_form in drupal/modules/node/node.api.php
Display a node editing form.
hook_form_alter in drupal/modules/system/system.api.php
Perform alterations before a form is rendered.
hook_form_BASE_FORM_ID_alter in drupal/modules/system/system.api.php
Provide a form-specific alteration for shared forms.
hook_form_FORM_ID_alter in drupal/modules/system/system.api.php
Provide a form-specific alteration instead of the global hook_form_alter().
hook_form_system_theme_settings_alter in drupal/modules/system/theme.api.php
Allow themes to alter the theme-specific settings form.
hook_help in drupal/modules/help/help.api.php
Provide online user help.
hook_image_effect_info in drupal/modules/image/image.api.php
Define information about image effects provided by a module.
hook_image_toolkits in drupal/modules/system/system.api.php
Define image toolkits provided by this module.
hook_language_negotiation_info in drupal/modules/locale/locale.api.php
Allow modules to define their own language providers.
hook_language_types_info in drupal/modules/locale/locale.api.php
Allow modules to define their own language types.
hook_language_types_info_alter in drupal/modules/locale/locale.api.php
Perform alterations on language types.
hook_locale in drupal/modules/locale/locale.api.php
Allows modules to define their own text groups that can be translated.
hook_mail_alter in drupal/modules/system/system.api.php
Alter an email message created with the drupal_mail() function.
hook_menu_contextual_links_alter in drupal/modules/system/system.api.php
Alter contextual links before they are rendered.
hook_menu_local_tasks_alter in drupal/modules/system/system.api.php
Alter tabs and actions displayed on the page before they are rendered.
hook_modules_enabled in drupal/modules/system/system.api.php
Perform necessary actions after modules are enabled.
hook_node_info in drupal/modules/node/node.api.php
Define module-provided node types.
hook_node_operations in drupal/modules/node/node.api.php
Add mass node operations.
hook_node_validate in drupal/modules/node/node.api.php
Perform node validation before a node is created or updated.
hook_options_list in drupal/modules/field/modules/options/options.api.php
Returns the list of options to be displayed for a field.
hook_page_alter in drupal/modules/system/system.api.php
Perform alterations before a page is rendered.
hook_page_build in drupal/modules/system/system.api.php
Add elements to a page before it is rendered.
hook_permission in drupal/modules/system/system.api.php
Define user permissions.
hook_prepare in drupal/modules/node/node.api.php
Act on a node object about to be shown on the add/edit form.
hook_ranking in drupal/modules/node/node.api.php
Provide additional methods of scoring for core search results for nodes.
hook_requirements in drupal/modules/system/system.api.php
Check installation requirements and do status reporting.
hook_search_admin in drupal/modules/search/search.api.php
Add elements to the search settings form.
hook_stream_wrappers in drupal/modules/system/system.api.php
Registers PHP stream wrapper implementations associated with a module.
hook_stream_wrappers_alter in drupal/modules/system/system.api.php
Alters the list of PHP stream wrapper implementations.
hook_system_themes_page_alter in drupal/modules/system/system.api.php
Alters theme operation links.
hook_tokens in drupal/modules/system/system.api.php
Provide replacement values for placeholder tokens.
hook_token_info in drupal/modules/system/system.api.php
Provide information about available placeholder tokens and token types.
hook_token_info_alter in drupal/modules/system/system.api.php
Alter the metadata about available placeholder tokens and token types.
hook_trigger_info in drupal/modules/trigger/trigger.api.php
Declare triggers (events) for users to assign actions to.
hook_trigger_info_alter in drupal/modules/trigger/trigger.api.php
Alter triggers declared by hook_trigger_info().
hook_updater_info in drupal/modules/system/system.api.php
Provide information on Updaters (classes that can update Drupal).
hook_update_N in drupal/modules/system/system.api.php
Perform a single update.
hook_update_status_alter in drupal/modules/update/update.api.php
Alter the information about available updates for projects.
hook_username_alter in drupal/modules/system/system.api.php
Alter the username that is displayed for a user.
hook_user_cancel_methods_alter in drupal/modules/user/user.api.php
Modify account cancellation methods.
hook_user_categories in drupal/modules/user/user.api.php
Retrieve a list of user setting or profile information categories.
hook_user_login in drupal/modules/user/user.api.php
The user just logged in.
hook_user_operations in drupal/modules/user/user.api.php
Add mass user operations.
hook_user_view in drupal/modules/user/user.api.php
The user's account information is being displayed.
hook_validate in drupal/modules/node/node.api.php
Perform node validation before a node is created or updated.
hook_verify_update_archive in drupal/modules/update/update.api.php
Verify an archive after it has been downloaded and extracted.
hook_view in drupal/modules/node/node.api.php
Display a node.
hook_watchdog in drupal/modules/system/system.api.php
Log an event message
hook_xmlrpc in drupal/modules/system/system.api.php
Register XML-RPC callbacks.
image_crop_form in drupal/modules/image/image.admin.inc
Form structure for the image crop form.
image_effect_color_validate in drupal/modules/image/image.admin.inc
Element validate handler to ensure a hexadecimal color value.
image_effect_delete_form in drupal/modules/image/image.admin.inc
Form builder; Form for deleting an image effect.
image_effect_delete_form_submit in drupal/modules/image/image.admin.inc
Submit handler to delete an image effect.
image_effect_form in drupal/modules/image/image.admin.inc
Form builder; Form for adding and editing image effects.
image_effect_form_submit in drupal/modules/image/image.admin.inc
Submit handler for updating an image effect.
image_effect_integer_validate in drupal/modules/image/image.admin.inc
Element validate handler to ensure an integer pixel value.
image_effect_scale_validate in drupal/modules/image/image.admin.inc
Element validate handler to ensure that either a height or a width is specified.
image_example_colorize_form in examples/image_example/image_example.module
Form Builder; Configuration settings for colorize effect.
image_example_help in examples/image_example/image_example.module
Implements hook_help().
image_example_image_effect_info in examples/image_example/image_example.module
Implements hook_image_effect_info().
image_example_image_styles_alter in examples/image_example/image_example.module
Implements hook_image_styles_alter().
image_example_style_form in examples/image_example/image_example.pages.inc
Form for uploading and displaying an image using selected style.
image_example_style_form_submit in examples/image_example/image_example.pages.inc
Form Builder; Display a form for uploading an image.
image_example_style_form_validate in examples/image_example/image_example.pages.inc
Verify that the user supplied an image with the form..
image_field_formatter_info in drupal/modules/image/image.field.inc
Implements hook_field_formatter_info().
image_field_formatter_settings_form in drupal/modules/image/image.field.inc
Implements hook_field_formatter_settings_form().
image_field_formatter_settings_summary in drupal/modules/image/image.field.inc
Implements hook_field_formatter_settings_summary().
image_field_info in drupal/modules/image/image.field.inc
Implements hook_field_info().
image_field_instance_settings_form in drupal/modules/image/image.field.inc
Implements hook_field_instance_settings_form().
image_field_settings_form in drupal/modules/image/image.field.inc
Implements hook_field_settings_form().
image_field_widget_info in drupal/modules/image/image.field.inc
Implements hook_field_widget_info().
image_field_widget_process in drupal/modules/image/image.field.inc
An element #process callback for the image_image field type.
image_field_widget_settings_form in drupal/modules/image/image.field.inc
Implements hook_field_widget_settings_form().
image_gd_settings in drupal/modules/system/image.gd.inc
Retrieve settings for the GD2 toolkit.
image_gd_settings_validate in drupal/modules/system/image.gd.inc
Validate the submitted GD settings.
image_help in drupal/modules/image/image.module
Implement of hook_help().
image_image_effect_info in drupal/modules/image/image.effects.inc
Implements hook_image_effect_info().
image_permission in drupal/modules/image/image.module
Implements hook_permission().
image_requirements in drupal/modules/image/image.install
Implements hook_requirements() to check the PHP GD Library.
image_resize_form in drupal/modules/image/image.admin.inc
Form structure for the image resize form.
image_rotate_form in drupal/modules/image/image.admin.inc
Form structure for the image rotate form.
image_scale_form in drupal/modules/image/image.admin.inc
Form structure for the image scale form.
image_style_add_form in drupal/modules/image/image.admin.inc
Form builder; Form for adding a new image style.
image_style_add_form_submit in drupal/modules/image/image.admin.inc
Submit handler for adding a new image style.
image_style_delete_form in drupal/modules/image/image.admin.inc
Form builder; Form for deleting an image style.
image_style_delete_form_submit in drupal/modules/image/image.admin.inc
Submit handler to delete an image style.
image_style_deliver in drupal/modules/image/image.module
Menu callback; Given a style and image path, generate a derivative.
image_style_form in drupal/modules/image/image.admin.inc
Form builder; Edit an image style name and effects order.
image_style_form_add_submit in drupal/modules/image/image.admin.inc
Submit handler for adding a new image effect to an image style.
image_style_form_add_validate in drupal/modules/image/image.admin.inc
Validate handler for adding a new image effect to an image style.
image_style_form_override_submit in drupal/modules/image/image.admin.inc
Submit handler for overriding a module-defined style.
image_style_form_submit in drupal/modules/image/image.admin.inc
Submit handler for saving an image style.
image_style_name_validate in drupal/modules/image/image.admin.inc
Element validate function to ensure unique, URL safe style names.
image_style_options in drupal/modules/image/image.module
Get an array of image styles suitable for using as select list options.
image_style_revert_form in drupal/modules/image/image.admin.inc
Confirmation form to revert a database style to its default.
image_style_revert_form_submit in drupal/modules/image/image.admin.inc
Submit handler to convert an overridden style to its default.
image_test_image_toolkits in drupal/modules/simpletest/tests/image_test.module
Implements hook_image_toolkits().
js_example_accordion in examples/js_example/js_example.module
language_negotiation_info in drupal/includes/language.inc
Return all the defined language providers.
list_allowed_values_setting_validate in drupal/modules/field/modules/list/list.module
Element validate callback; check that the entered values are valid.
list_field_formatter_info in drupal/modules/field/modules/list/list.module
Implements hook_field_formatter_info().
list_field_info in drupal/modules/field/modules/list/list.module
Implements hook_field_info().
list_field_settings_form in drupal/modules/field/modules/list/list.module
Implements hook_field_settings_form().
list_field_update_forbid in drupal/modules/field/modules/list/list.module
Implements hook_field_update_forbid().
list_field_validate in drupal/modules/field/modules/list/list.module
Implements hook_field_validate().
list_help in drupal/modules/field/modules/list/list.module
Implements hook_help().
locale_block_info in drupal/modules/locale/locale.module
Implements hook_block_info().
locale_block_view in drupal/modules/locale/locale.module
Implements hook_block_view().
locale_date_format_form in drupal/modules/locale/locale.admin.inc
Provide date localization configuration options to users.
locale_date_format_form_submit in drupal/modules/locale/locale.admin.inc
Submit handler for configuring localized date formats on the locale_date_format_form.
locale_date_format_language_overview_page in drupal/modules/locale/locale.admin.inc
Display edit date format links for each language.
locale_date_format_reset_form in drupal/modules/locale/locale.admin.inc
Reset locale specific date formats to the global defaults.
locale_form_node_form_alter in drupal/modules/locale/locale.module
Implements hook_form_BASE_FORM_ID_alter().
locale_form_node_type_form_alter in drupal/modules/locale/locale.module
Implements hook_form_FORM_ID_alter().
locale_form_path_admin_form_alter in drupal/modules/locale/locale.module
Implements hook_form_FORM_ID_alter().
locale_help in drupal/modules/locale/locale.module
Implements hook_help().
locale_languages_configure_form in drupal/modules/locale/locale.admin.inc
Setting for language negotiation options
locale_languages_configure_form_submit in drupal/modules/locale/locale.admin.inc
Submit handler for language negotiation settings.
locale_languages_custom_form in drupal/modules/locale/locale.admin.inc
Custom language addition form.
locale_languages_delete_form in drupal/modules/locale/locale.admin.inc
User interface for the language deletion confirmation screen.
locale_languages_delete_form_submit in drupal/modules/locale/locale.admin.inc
Process language deletion submissions.
locale_languages_edit_form in drupal/modules/locale/locale.admin.inc
Editing screen for a particular language.
locale_languages_edit_form_validate in drupal/modules/locale/locale.admin.inc
Validate the language editing form. Reused for custom language addition too.
locale_languages_overview_form in drupal/modules/locale/locale.admin.inc
User interface for the language overview screen.
locale_languages_overview_form_submit in drupal/modules/locale/locale.admin.inc
Process language overview form submissions, updating existing languages.
locale_languages_predefined_form in drupal/modules/locale/locale.admin.inc
Predefined language setup form.
locale_languages_predefined_form_submit in drupal/modules/locale/locale.admin.inc
Process the language addition form submission.
locale_languages_predefined_form_validate in drupal/modules/locale/locale.admin.inc
Validate the language addition form.
locale_language_list in drupal/modules/locale/locale.module
Returns array of language names
locale_language_name in drupal/modules/locale/locale.module
Returns a language name
locale_language_negotiation_info in drupal/modules/locale/locale.module
Implements hook_language_negotiation_info().
locale_language_providers_session_form in drupal/modules/locale/locale.admin.inc
The URL language provider configuration form.
locale_language_providers_url_form in drupal/modules/locale/locale.admin.inc
The URL language provider configuration form.
locale_language_selector_form in drupal/modules/locale/locale.module
Form builder callback to display language selection widget.
locale_language_types_info in drupal/modules/locale/locale.module
Implements hook_language_types_info().
locale_locale in drupal/modules/locale/locale.module
Implements hook_locale().
locale_permission in drupal/modules/locale/locale.module
Implements hook_permission().
locale_test_language_types_info_alter in drupal/modules/locale/tests/locale_test.module
Implements hook_language_types_info_alter().
locale_test_locale in drupal/modules/locale/tests/locale_test.module
Implements hook_locale().
locale_translate_delete_form in drupal/modules/locale/locale.admin.inc
User interface for the string deletion confirmation screen.
locale_translate_delete_form_submit in drupal/modules/locale/locale.admin.inc
Process string deletion submissions.
locale_translate_edit_form in drupal/modules/locale/locale.admin.inc
User interface for string editing.
locale_translate_edit_form_submit in drupal/modules/locale/locale.admin.inc
Process string editing form submissions.
locale_translate_edit_form_validate in drupal/modules/locale/locale.admin.inc
Validate string editing form submissions.
locale_translate_export_pot_form in drupal/modules/locale/locale.admin.inc
Translation template export form.
locale_translate_export_po_form in drupal/modules/locale/locale.admin.inc
Form to export PO files for the languages provided.
locale_translate_import_form in drupal/modules/locale/locale.admin.inc
User interface for the translation import screen.
locale_translate_import_form_submit in drupal/modules/locale/locale.admin.inc
Process the locale import form submission.
locale_translate_overview_screen in drupal/modules/locale/locale.admin.inc
Overview screen for translations.
locale_translation_filters in drupal/modules/locale/locale.admin.inc
List locale translation filters that can be applied.
locale_translation_filter_form in drupal/modules/locale/locale.admin.inc
Return form for locale translation filters.
locale_translation_filter_form_submit in drupal/modules/locale/locale.admin.inc
Process result from locale translation filter form.
locale_translation_filter_form_validate in drupal/modules/locale/locale.admin.inc
Validate result from locale translation filter form.
map_month in drupal/includes/form.inc
Helper function for usage with drupal_map_assoc to display month names.
menu_configure in drupal/modules/menu/menu.admin.inc
Menu callback; Build the form presenting menu configuration options.
menu_delete_menu_confirm in drupal/modules/menu/menu.admin.inc
Build a confirm form for deletion of a custom menu.
menu_delete_menu_confirm_submit in drupal/modules/menu/menu.admin.inc
Delete a custom menu and all links in it.
menu_edit_item in drupal/modules/menu/menu.admin.inc
Menu callback; Build the menu link editing form.
menu_edit_item_submit in drupal/modules/menu/menu.admin.inc
Process menu and menu item add/edit form submissions.
menu_edit_item_validate in drupal/modules/menu/menu.admin.inc
Validate form values for a menu link being added or edited.
menu_edit_menu in drupal/modules/menu/menu.admin.inc
Menu callback; Build the form that handles the adding/editing of a custom menu.
menu_edit_menu_submit in drupal/modules/menu/menu.admin.inc
Submit function for adding or editing a custom menu.
menu_example_arg_optional_load in examples/menu_example/menu_example.module
Load an item based on its $id.
menu_example_id_load in examples/menu_example/menu_example.module
The special _load function to load menu_example.
menu_example_menu in examples/menu_example/menu_example.module
Implementatation of hook_menu().
menu_example_permission in examples/menu_example/menu_example.module
Implements hook_permission() to provide a demonstration access string.
menu_example_user_page_title in examples/menu_example/menu_example.module
Title callback to rename the title dynamically, based on user_page_title().
menu_form_node_form_alter in drupal/modules/menu/menu.module
Implements hook_form_BASE_FORM_ID_alter().
menu_form_node_type_form_alter in drupal/modules/menu/menu.module
Implements hook_form_FORM_ID_alter().
menu_get_menus in drupal/modules/menu/menu.module
Return an associative array of the custom menus names.
menu_help in drupal/modules/menu/menu.module
Implements hook_help().
menu_item_delete_form in drupal/modules/menu/menu.admin.inc
Build a confirm form for deletion of a single menu link.
menu_item_delete_form_submit in drupal/modules/menu/menu.admin.inc
Process menu delete form submissions.
menu_node_save in drupal/modules/menu/menu.module
Helper for hook_node_insert() and hook_node_update().
menu_overview_form in drupal/modules/menu/menu.admin.inc
Form for editing an entire menu tree at once.
menu_overview_form_submit in drupal/modules/menu/menu.admin.inc
Submit handler for the menu overview form.
menu_overview_page in drupal/modules/menu/menu.admin.inc
Menu callback which shows an overview page of all the custom menus and their descriptions.
menu_permission in drupal/modules/menu/menu.module
Implements hook_permission().
menu_reset_item_confirm in drupal/modules/menu/menu.admin.inc
Menu callback; reset a single modified menu link.
menu_reset_item_confirm_submit in drupal/modules/menu/menu.admin.inc
Process menu reset item form submissions.
menu_set_active_trail in drupal/includes/menu.inc
Sets or gets the active trail (path to menu tree root) of the current page.
menu_test_title_callback in drupal/modules/simpletest/tests/menu_test.module
Concatenates a string, by using the t() function and a case number.
MergeQuery::execute in drupal/includes/database/query.inc
Runs the query against the database.
ModuleUpdater::postInstallTasks in drupal/modules/system/system.updater.inc
Return an array of links to pages that should be visited post operation.
module_test_permission in drupal/modules/simpletest/tests/module_test.module
Implements hook_permission().
module_test_system_info_alter in drupal/modules/simpletest/tests/module_test.module
Implements hook_system_info_alter().
nodeapi_example_form_alter in examples/nodeapi_example/nodeapi_example.module
Implements hook_form_alter().
nodeapi_example_node_validate in examples/nodeapi_example/nodeapi_example.module
Implements hook_node_validate().
node_access_example_form_alter in examples/node_access_example/node_access_example.module
Implements hook_form_alter().
node_access_example_node_access in examples/node_access_example/node_access_example.module
Implements hook_node_access().
node_access_example_node_insert in examples/node_access_example/node_access_example.module
Implements hook_node_insert().
node_access_example_node_update in examples/node_access_example/node_access_example.module
Implements hook_nodeapi_update().
node_access_example_permission in examples/node_access_example/node_access_example.module
Implements hook_permission().
node_access_example_private_node_listing in examples/node_access_example/node_access_example.module
Information for the user about what nodes are marked private on the system and which of those the user has access to.
node_access_rebuild in drupal/modules/node/node.module
Rebuild the node access database. This is occasionally needed by modules that make system-wide changes to access levels.
node_action_info in drupal/modules/node/node.module
Implements hook_action_info().
node_add in drupal/modules/node/node.pages.inc
Returns a node submission form.
node_admin_nodes in drupal/modules/node/node.admin.inc
Form builder: Builds the node administration overview.
node_admin_nodes_validate in drupal/modules/node/node.admin.inc
Validate node_admin_nodes form submissions.
node_assign_owner_action_form in drupal/modules/node/node.module
Generates the settings form for node_assign_owner_action().
node_assign_owner_action_validate in drupal/modules/node/node.module
Validates settings form for node_assign_owner_action().
node_block_configure in drupal/modules/node/node.module
Implements hook_block_configure().
node_block_info in drupal/modules/node/node.module
Implements hook_block_info().
node_block_view in drupal/modules/node/node.module
Implements hook_block_view().
node_build_content in drupal/modules/node/node.module
Builds a structured array representing the node's content.
node_configure_rebuild_confirm in drupal/modules/node/node.admin.inc
Menu callback: confirm rebuilding of permissions.
node_delete_confirm in drupal/modules/node/node.pages.inc
Menu callback -- ask for confirmation of node deletion
node_delete_confirm_submit in drupal/modules/node/node.pages.inc
Execute node deletion
node_entity_info in drupal/modules/node/node.module
Implements hook_entity_info().
node_example_entity_info_alter in examples/node_example/node_example.module
Implements hook_entity_info_alter().
node_example_field_formatter_info in examples/node_example/node_example.module
Implements hook_field_formatter_info().
node_example_help in examples/node_example/node_example.module
Implements hook_help().
node_field_extra_fields in drupal/modules/node/node.module
Implements hook_field_extra_fields().
node_filters in drupal/modules/node/node.admin.inc
List node administration filters that can be applied.
node_filter_form in drupal/modules/node/node.admin.inc
Return form for node administration filters.
node_filter_form_submit in drupal/modules/node/node.admin.inc
Process result from node administration filter form.
node_form in drupal/modules/node/node.pages.inc
Generate the node add/edit form array.
node_form_block_admin_configure_alter in drupal/modules/node/node.module
Implements hook_form_FORMID_alter().
node_form_search_form_alter in drupal/modules/node/node.module
Implements hook_form_FORM_ID_alter().
node_form_submit in drupal/modules/node/node.pages.inc
node_help in drupal/modules/node/node.module
Implements hook_help().
node_list_permissions in drupal/modules/node/node.module
Helper function to generate standard node permission list for a given type.
node_mass_update in drupal/modules/node/node.admin.inc
Make mass update of nodes, changing all nodes in the $nodes array to update them with the field values in $updates.
node_multiple_delete_confirm in drupal/modules/node/node.admin.inc
node_node_operations in drupal/modules/node/node.admin.inc
Implements hook_node_operations().
node_overview_types in drupal/modules/node/content_types.inc
Displays the content type admin overview page.
node_page_default in drupal/modules/node/node.module
Menu callback; Generate a listing of promoted nodes.
node_page_edit in drupal/modules/node/node.pages.inc
Menu callback; presents the node editing form, or redirects to delete confirmation.
node_permission in drupal/modules/node/node.module
Implements hook_permission().
node_preview in drupal/modules/node/node.pages.inc
Generate a node preview.
node_ranking in drupal/modules/node/node.module
Implements hook_ranking().
node_requirements in drupal/modules/node/node.module
Implements hook_requirements().
node_revision_delete_confirm in drupal/modules/node/node.pages.inc
node_revision_delete_confirm_submit in drupal/modules/node/node.pages.inc
node_revision_overview in drupal/modules/node/node.pages.inc
Generate an overview table of older revisions of a node.
node_revision_revert_confirm in drupal/modules/node/node.pages.inc
Ask for confirmation of the reversion to prevent against CSRF attacks.
node_revision_revert_confirm_submit in drupal/modules/node/node.pages.inc
node_search_admin in drupal/modules/node/node.module
Implements hook_search_admin().
node_show in drupal/modules/node/node.module
Generate an array which displays a node detail page.
node_test_node_view in drupal/modules/node/tests/node_test.module
Implements hook_node_view().
node_tokens in drupal/modules/node/node.tokens.inc
Implements hook_tokens().
node_token_info in drupal/modules/node/node.tokens.inc
Implements hook_token_info().
node_type_delete_confirm in drupal/modules/node/content_types.inc
Menu callback; delete a single content type.
node_type_delete_confirm_submit in drupal/modules/node/content_types.inc
Process content type delete confirm submissions.
node_type_form in drupal/modules/node/content_types.inc
Generates the node type editing form.
node_type_form_submit in drupal/modules/node/content_types.inc
Implements hook_form_submit().
node_type_form_validate in drupal/modules/node/content_types.inc
Validates the content type submission form generated by node_type_form().
node_unpublish_by_keyword_action_form in drupal/modules/node/node.module
Generates settings form for node_unpublish_by_keyword_action().
node_validate in drupal/modules/node/node.module
Perform validation checks on the given node.
number_field_formatter_info in drupal/modules/field/modules/number/number.module
Implements hook_field_formatter_info().
number_field_formatter_settings_form in drupal/modules/field/modules/number/number.module
Implements hook_field_formatter_settings_form().
number_field_formatter_settings_summary in drupal/modules/field/modules/number/number.module
Implements hook_field_formatter_settings_summary().
number_field_info in drupal/modules/field/modules/number/number.module
Implements hook_field_info().
number_field_instance_settings_form in drupal/modules/field/modules/number/number.module
Implements hook_field_instance_settings_form().
number_field_settings_form in drupal/modules/field/modules/number/number.module
Implements hook_field_settings_form().
number_field_validate in drupal/modules/field/modules/number/number.module
Implements hook_field_validate().
number_field_widget_info in drupal/modules/field/modules/number/number.module
Implements hook_field_widget_info().
number_field_widget_validate in drupal/modules/field/modules/number/number.module
FAPI validation of an individual number element.
number_help in drupal/modules/field/modules/number/number.module
Implements hook_help().
openid_authentication in drupal/modules/openid/openid.module
Authenticate a user or attempt registration.
openid_authentication_page in drupal/modules/openid/openid.pages.inc
Menu callback; Process an OpenID authentication.
openid_begin in drupal/modules/openid/openid.module
The initial step of OpenID authentication responsible for the following:
openid_form_user_register_form_alter in drupal/modules/openid/openid.module
Implements hook_form_FORM_ID_alter().
openid_help in drupal/modules/openid/openid.module
Implements hook_help().
openid_redirect in drupal/modules/openid/openid.inc
Creates a js auto-submit redirect for (for the 2.x protocol)
openid_redirect_form in drupal/modules/openid/openid.inc
openid_requirements in drupal/modules/openid/openid.install
Implements hook_requirements().
openid_test_html_openid1 in drupal/modules/openid/tests/openid_test.module
Menu callback; regular HTML page with OpenID 1.0 <link> element.
openid_test_html_openid2 in drupal/modules/openid/tests/openid_test.module
Menu callback; regular HTML page with OpenID 2.0 <link> element.
openid_test_yadis_http_equiv in drupal/modules/openid/tests/openid_test.module
Menu callback; regular HTML page with <meta> element.
openid_test_yadis_xrds in drupal/modules/openid/tests/openid_test.module
Menu callback; XRDS document that references the OP Endpoint URL.
openid_test_yadis_x_xrds_location in drupal/modules/openid/tests/openid_test.module
Menu callback; regular HTML page with an X-XRDS-Location HTTP header.
openid_user_add in drupal/modules/openid/openid.pages.inc
Form builder; Add an OpenID identity.
openid_user_add_validate in drupal/modules/openid/openid.pages.inc
openid_user_delete_form in drupal/modules/openid/openid.pages.inc
Menu callback; Delete the specified OpenID identity from the system.
openid_user_delete_form_submit in drupal/modules/openid/openid.pages.inc
openid_user_identities in drupal/modules/openid/openid.pages.inc
Menu callback; Manage OpenID identities for the specified user.
openid_user_insert in drupal/modules/openid/openid.module
Implements hook_user_insert().
options_field_widget_info in drupal/modules/field/modules/options/options.module
Implements hook_field_widget_info().
options_field_widget_settings_form in drupal/modules/field/modules/options/options.module
Implements hook_field_widget_settings_form().
options_field_widget_validate in drupal/modules/field/modules/options/options.module
Form element validation handler for options element.
options_help in drupal/modules/field/modules/options/options.module
Implements hook_help().
overlay_disable_message in drupal/modules/overlay/overlay.module
Returns a renderable array representing a message for disabling the overlay.
overlay_form_user_profile_form_alter in drupal/modules/overlay/overlay.module
Implements hook_form_FORM_ID_alter().
overlay_help in drupal/modules/overlay/overlay.module
Implements hook_help().
overlay_permission in drupal/modules/overlay/overlay.module
Implements hook_permission().
overlay_user_dismiss_message in drupal/modules/overlay/overlay.module
Menu callback; dismisses the overlay accessibility message for this user.
page_example_arguments in examples/page_example/page_example.module
A more complex page callback that takes arguments.
page_example_description in examples/page_example/page_example.module
page_example_help in examples/page_example/page_example.module
Implements hook_help().
page_example_permission in examples/page_example/page_example.module
Implements hook_permission().
page_example_simple in examples/page_example/page_example.module
A simple page callback.
password_confirm_validate in drupal/includes/form.inc
Validate password_confirm element.
path_admin_delete_confirm in drupal/modules/path/path.admin.inc
Menu callback; confirms deleting an URL alias
path_admin_filter_form in drupal/modules/path/path.admin.inc
Return a form to filter URL aliases.
path_admin_form in drupal/modules/path/path.admin.inc
Return a form for editing or creating an individual URL alias.
path_admin_form_submit in drupal/modules/path/path.admin.inc
Save a URL alias to the database.
path_admin_form_validate in drupal/modules/path/path.admin.inc
Verify that a URL alias is valid
path_admin_overview in drupal/modules/path/path.admin.inc
Return a listing of all defined URL aliases.
path_form_element_validate in drupal/modules/path/path.module
Form element validation handler for URL alias form element.
path_form_node_form_alter in drupal/modules/path/path.module
Implements hook_form_BASE_FORM_ID_alter().
path_form_taxonomy_form_term_alter in drupal/modules/path/path.module
Implements hook_form_FORM_ID_alter().
path_help in drupal/modules/path/path.module
Implements hook_help().
path_permission in drupal/modules/path/path.module
Implements hook_permission().
php_disable in drupal/modules/php/php.install
Implements hook_disable().
php_enable in drupal/modules/php/php.install
Implements hook_enable().
php_filter_info in drupal/modules/php/php.module
Implements hook_filter_info().
php_help in drupal/modules/php/php.module
Implements hook_help().
php_permission in drupal/modules/php/php.module
Implements hook_permission().
poll_block_info in drupal/modules/poll/poll.module
Implements hook_block_info().
poll_block_latest_poll_view in drupal/modules/poll/poll.module
Return content for 'latest poll' block.
poll_block_view in drupal/modules/poll/poll.module
Implements hook_block_view().
poll_cancel in drupal/modules/poll/poll.module
Submit callback for poll_cancel_form().
poll_cancel_form in drupal/modules/poll/poll.module
Builds the cancel form for a poll.
poll_field_extra_fields in drupal/modules/poll/poll.module
Implements hook_field_extra_fields().
poll_form in drupal/modules/poll/poll.module
Implements hook_form().
poll_help in drupal/modules/poll/poll.module
Implements hook_help().
poll_node_info in drupal/modules/poll/poll.module
Implements hook_node_info().
poll_page in drupal/modules/poll/poll.pages.inc
Menu callback to provide a simple list of all polls available.
poll_permission in drupal/modules/poll/poll.module
Implements hook_permission().
poll_token_info in drupal/modules/poll/poll.tokens.inc
Implements hook_token_info().
poll_validate in drupal/modules/poll/poll.module
Implements hook_validate().
poll_view_voting in drupal/modules/poll/poll.module
Generates the voting form for a poll.
poll_view_voting_validate in drupal/modules/poll/poll.module
Validation function for processing votes
poll_vote in drupal/modules/poll/poll.module
Submit handler for processing a vote.
poll_votes in drupal/modules/poll/poll.pages.inc
Callback for the 'votes' tab for polls you can see other votes on
profile_admin_overview in drupal/modules/profile/profile.admin.inc
Form builder to display a listing of all editable profile fields.
profile_admin_overview_submit in drupal/modules/profile/profile.admin.inc
Submit handler to update changed profile field weights and categories.
profile_block_configure in drupal/modules/profile/profile.module
Implements hook_block_configure().
profile_block_info in drupal/modules/profile/profile.module
Implements hook_block_info().
profile_block_view in drupal/modules/profile/profile.module
Implements hook_block_view().
profile_browse in drupal/modules/profile/profile.pages.inc
Menu callback; display a list of user information.
profile_field_delete in drupal/modules/profile/profile.admin.inc
Menu callback; deletes a field from all user profiles.
profile_field_delete_submit in drupal/modules/profile/profile.admin.inc
Process a field delete form submission.
profile_field_form in drupal/modules/profile/profile.admin.inc
Menu callback: Generate a form to add/edit a user profile field.
profile_field_form_submit in drupal/modules/profile/profile.admin.inc
Process profile_field_form submissions.
profile_field_form_validate in drupal/modules/profile/profile.admin.inc
Validate profile_field_form submissions.
profile_help in drupal/modules/profile/profile.module
Implements hook_help().
profile_user_form_validate in drupal/modules/profile/profile.module
Form validation handler for the user register/profile form.
queue_example_add_remove_form in examples/queue_example/queue_example.module
Provides an interface to add items to the queue, to retrieve (claim) an item from the head of the queue, and to claim and delete. Also allows the user to run cron manually, so that claimed items can be released.
queue_example_add_remove_form_claim in examples/queue_example/queue_example.module
Submit function for the "claim" button. Claims (retrieves) an item from the queue and reports the results.
queue_example_add_remove_form_clear_queue in examples/queue_example/queue_example.module
Submit handler for clearing/deleting the queue.
queue_example_add_remove_form_delete in examples/queue_example/queue_example.module
Submit function for "Claim and delete" button.
queue_example_add_remove_form_insert in examples/queue_example/queue_example.module
Submit function for the insert-into-queue button.
queue_example_add_remove_form_run_cron in examples/queue_example/queue_example.module
Submit function for "run cron" button.
rdf_help in drupal/modules/rdf/rdf.module
Implements hook_help().
render_example_add_suffix in examples/render_example/render_example.module
A '#pre_render' function.
render_example_arrays in examples/render_example/render_example.module
Provides a number of render arrays and show what they do. Each array is keyed by a description; it's returned for rendering at page render time. It's easy to add new examples to this.
render_example_demo_form in examples/render_example/render_example.module
Builds the form that offers options of what items to show.
render_example_info in examples/render_example/render_example.module
Simple basic information about the module; an entry point.
render_example_page_alter in examples/render_example/render_example.module
Implements hook_page_alter().
SearchQuery::parseSearchExpression in drupal/modules/search/search.extender.inc
Parses the search query into SQL conditions.
search_admin_settings in drupal/modules/search/search.admin.inc
Menu callback: displays the search module settings page.
search_admin_settings_submit in drupal/modules/search/search.admin.inc
Form submission handler for search_admin_settings().
search_admin_settings_validate in drupal/modules/search/search.admin.inc
Form validation handler for search_admin_settings().
search_block_info in drupal/modules/search/search.module
Implements hook_block_info().
search_box in drupal/modules/search/search.module
Form builder; Output a search form for the search block's search box.
search_box_form_submit in drupal/modules/search/search.module
Process a block search form submission.
search_embedded_form_form in drupal/modules/search/tests/search_embedded_form.module
Builds a form for embedding in search results for testing.
search_embedded_form_form_submit in drupal/modules/search/tests/search_embedded_form.module
Submit handler for search_embedded_form_form().
search_excerpt in drupal/modules/search/search.module
Returns snippets from a piece of text, with certain keywords highlighted. Used for formatting search results.
search_form in drupal/modules/search/search.module
Builds a search form.
search_form_submit in drupal/modules/search/search.pages.inc
Process a search form submission.
search_help in drupal/modules/search/search.module
Implements hook_help().
search_permission in drupal/modules/search/search.module
Implements hook_permission().
search_reindex_confirm in drupal/modules/search/search.admin.inc
Menu callback: confirm wiping of the index.
search_reindex_confirm_submit in drupal/modules/search/search.admin.inc
Handler for wipe confirmation
search_view in drupal/modules/search/search.pages.inc
Menu callback; presents the search form and/or search results.
seven_node_add_list in drupal/themes/seven/template.php
Display the list of available node types for node creation.
seven_tablesort_indicator in drupal/themes/seven/template.php
Override of theme_tablesort_indicator().
shortcut_block_info in drupal/modules/shortcut/shortcut.module
Implements hook_block_info().
shortcut_block_view in drupal/modules/shortcut/shortcut.module
Implements hook_block_view().
shortcut_help in drupal/modules/shortcut/shortcut.module
Implements hook_help().
shortcut_link_add in drupal/modules/shortcut/shortcut.admin.inc
Form callback: builds the form for adding a new shortcut link.
shortcut_link_add_inline in drupal/modules/shortcut/shortcut.admin.inc
Menu page callback: creates a new link in the provided shortcut set.
shortcut_link_add_submit in drupal/modules/shortcut/shortcut.admin.inc
Submit handler for shortcut_link_add().
shortcut_link_delete in drupal/modules/shortcut/shortcut.admin.inc
Form callback: builds the confirmation form for deleting a shortcut link.
shortcut_link_delete_submit in drupal/modules/shortcut/shortcut.admin.inc
Submit handler for shortcut_link_delete_submit().
shortcut_link_edit in drupal/modules/shortcut/shortcut.admin.inc
Form callback: builds the form for editing a shortcut link.
shortcut_link_edit_submit in drupal/modules/shortcut/shortcut.admin.inc
Submit handler for shortcut_link_edit().
shortcut_link_edit_validate in drupal/modules/shortcut/shortcut.admin.inc
Validation handler for the shortcut link add and edit forms.
shortcut_permission in drupal/modules/shortcut/shortcut.module
Implements hook_permission().
shortcut_preprocess_page in drupal/modules/shortcut/shortcut.module
Implements hook_preprocess_page().
shortcut_set_add_form in drupal/modules/shortcut/shortcut.admin.inc
Form callback: builds the form for adding a shortcut set.
shortcut_set_add_form_submit in drupal/modules/shortcut/shortcut.admin.inc
Submit handler for shortcut_set_add_form().
shortcut_set_add_form_validate in drupal/modules/shortcut/shortcut.admin.inc
Validation handler for shortcut_set_add_form().
shortcut_set_admin in drupal/modules/shortcut/shortcut.admin.inc
Menu page callback: builds the page for administering shortcut sets.
shortcut_set_customize in drupal/modules/shortcut/shortcut.admin.inc
Form callback: builds the form for customizing shortcut sets.
shortcut_set_customize_submit in drupal/modules/shortcut/shortcut.admin.inc
Submit handler for shortcut_set_customize().
shortcut_set_delete_form in drupal/modules/shortcut/shortcut.admin.inc
Form callback: builds the confirmation form for deleting a shortcut set.
shortcut_set_delete_form_submit in drupal/modules/shortcut/shortcut.admin.inc
Submit handler for shortcut_set_delete_form().
shortcut_set_edit_form in drupal/modules/shortcut/shortcut.admin.inc
Form callback: builds the form for editing the shortcut set name.
shortcut_set_edit_form_submit in drupal/modules/shortcut/shortcut.admin.inc
Submit handler for shortcut_set_edit_form().
shortcut_set_edit_form_validate in drupal/modules/shortcut/shortcut.admin.inc
Validation handler for shortcut_set_edit_form().
shortcut_set_switch in drupal/modules/shortcut/shortcut.admin.inc
Form callback: builds the form for switching shortcut sets.
shortcut_set_switch_submit in drupal/modules/shortcut/shortcut.admin.inc
Submit handler for shortcut_set_switch().
shortcut_set_switch_validate in drupal/modules/shortcut/shortcut.admin.inc
Validation handler for shortcut_set_switch().
shortcut_toolbar_pre_render in drupal/modules/shortcut/shortcut.module
Pre-render function for adding shortcuts to the toolbar drawer.
simpletest_clean_database in drupal/modules/simpletest/simpletest.module
Removed prefixed tables from the database that are left over from crashed tests.
simpletest_clean_environment in drupal/modules/simpletest/simpletest.module
Remove all temporary database tables and directories.
simpletest_clean_temporary_directories in drupal/modules/simpletest/simpletest.module
Find all leftover temporary directories and remove them.
simpletest_example_node_info in examples/simpletest_example/simpletest_example.module
Implements hook_node_info().
simpletest_example_permission in examples/simpletest_example/simpletest_example.module
Implements hook_permission().
simpletest_help in drupal/modules/simpletest/simpletest.module
Implements hook_help().
simpletest_permission in drupal/modules/simpletest/simpletest.module
Implements hook_permission().
simpletest_result_form in drupal/modules/simpletest/simpletest.pages.inc
Test results form for $test_id.
simpletest_result_status_image in drupal/modules/simpletest/simpletest.pages.inc
Get the appropriate image for the status.
simpletest_run_tests in drupal/modules/simpletest/simpletest.module
Actually runs tests.
simpletest_settings_form in drupal/modules/simpletest/simpletest.pages.inc
Provides settings form for SimpleTest variables.
simpletest_test_form in drupal/modules/simpletest/simpletest.pages.inc
List tests arranged in groups that can be selected and run.
simpletest_test_form_submit in drupal/modules/simpletest/simpletest.pages.inc
Run selected tests.
statistics_access_log in drupal/modules/statistics/statistics.admin.inc
Menu callback; Displays recent page accesses.
statistics_block_configure in drupal/modules/statistics/statistics.module
Implements hook_block_configure().
statistics_block_info in drupal/modules/statistics/statistics.module
Implements hook_block_info().
statistics_block_view in drupal/modules/statistics/statistics.module
Implements hook_block_view().
statistics_help in drupal/modules/statistics/statistics.module
Implements hook_help().
statistics_node_tracker in drupal/modules/statistics/statistics.pages.inc
statistics_permission in drupal/modules/statistics/statistics.module
Implements hook_permission().
statistics_ranking in drupal/modules/statistics/statistics.module
Implements hook_ranking().
statistics_recent_hits in drupal/modules/statistics/statistics.admin.inc
Menu callback; presents the "recent hits" page.
statistics_settings_form in drupal/modules/statistics/statistics.admin.inc
Form builder; Configure access logging.
statistics_token_info in drupal/modules/statistics/statistics.tokens.inc
Implements hook_token_info().
statistics_top_pages in drupal/modules/statistics/statistics.admin.inc
Menu callback; presents the "top pages" page.
statistics_top_referrers in drupal/modules/statistics/statistics.admin.inc
Menu callback; presents the "referrer" page.
statistics_top_visitors in drupal/modules/statistics/statistics.admin.inc
Menu callback; presents the "top visitors" page.
statistics_user_tracker in drupal/modules/statistics/statistics.pages.inc
syslog_form_system_logging_settings_alter in drupal/modules/syslog/syslog.module
Implements hook_form_FORM_ID_alter().
syslog_help in drupal/modules/syslog/syslog.module
Implements hook_help().
SystemTestFileTransfer::getSettingsForm in drupal/modules/simpletest/tests/system_test.module
system_actions_configure in drupal/modules/system/system.admin.inc
Menu callback; Creates the form for configuration of a single action.
system_actions_configure_submit in drupal/modules/system/system.admin.inc
Process system_actions_configure() form submissions.
system_actions_delete_form in drupal/modules/system/system.admin.inc
Create the form for confirmation of deleting an action.
system_actions_delete_form_submit in drupal/modules/system/system.admin.inc
Process system_actions_delete form submissions.
system_actions_manage in drupal/modules/system/system.admin.inc
Menu callback; Displays an overview of available and configured actions.
system_actions_manage_form in drupal/modules/system/system.admin.inc
Define the form for the actions overview page.
system_action_delete_orphans_post in drupal/modules/system/system.admin.inc
Post-deletion operations for deleting action orphans.
system_action_info in drupal/modules/system/system.module
Implements hook_action_info().
system_add_date_formats_form_submit in drupal/modules/system/system.admin.inc
Process new date format string submission.
system_add_date_formats_form_validate in drupal/modules/system/system.admin.inc
Validate new date format string submission.
system_add_date_format_type_form in drupal/modules/system/system.admin.inc
Add new date type.
system_add_date_format_type_form_submit in drupal/modules/system/system.admin.inc
Process system_add_date_format_type form submissions.
system_add_date_format_type_form_validate in drupal/modules/system/system.admin.inc
Validate system_add_date_format_type form submissions.
system_admin_config_page in drupal/modules/system/system.admin.inc
Menu callback; Provide the administration overview page.
system_admin_menu_block_page in drupal/modules/system/system.admin.inc
Provide a single block from the administration menu as a page. This function is often a destination for these blocks. For example, 'admin/structure/types' needs to have a destination to be valid in the Drupal menu system, but too much…
system_block_info in drupal/modules/system/system.module
Implements hook_block_info().
system_block_view in drupal/modules/system/system.module
Implements hook_block_view().
system_check_directory in drupal/modules/system/system.module
Checks the existence of the directory specified in $form_element.
system_clean_url_settings in drupal/modules/system/system.admin.inc
Form builder; Configure clean URL settings.
system_clear_cache_submit in drupal/modules/system/system.admin.inc
Submit callback; clear system caches.
system_configure_date_formats_form in drupal/modules/system/system.admin.inc
Allow users to add additional date formats.
system_cron_settings in drupal/modules/system/system.admin.inc
Form builder; Cron form.
system_date_delete_format_form in drupal/modules/system/system.admin.inc
Menu callback; present a form for deleting a date format.
system_date_delete_format_form_submit in drupal/modules/system/system.admin.inc
Delete a configured date format.
system_date_format_types in drupal/modules/system/system.module
Implements hook_date_format_types().
system_date_time_formats in drupal/modules/system/system.admin.inc
Displays the date format strings overview page.
system_date_time_settings in drupal/modules/system/system.admin.inc
Form builder; Configure the site date and time settings.
system_delete_date_format_type_form in drupal/modules/system/system.admin.inc
Menu callback; present a form for deleting a date type.
system_delete_date_format_type_form_submit in drupal/modules/system/system.admin.inc
Delete a configured date type.
system_entity_info in drupal/modules/system/system.module
Implements hook_entity_info().
system_filetransfer_info in drupal/modules/system/system.module
Implements hook_filetransfer_info().
system_file_system_settings in drupal/modules/system/system.admin.inc
Form builder; Configure the site file handling.
system_get_module_admin_tasks in drupal/modules/system/system.module
Generate a list of tasks offered by a specified module.
system_goto_action_form in drupal/modules/system/system.module
Settings form for system_goto_action().
system_help in drupal/modules/system/system.module
Implements hook_help().
system_image_toolkits in drupal/modules/system/system.module
Implements hook_image_toolkits().
system_image_toolkit_settings in drupal/modules/system/system.admin.inc
Form builder; Configure site image toolkit usage.
system_ip_blocking in drupal/modules/system/system.admin.inc
Menu callback. Display blocked IP addresses.
system_ip_blocking_delete in drupal/modules/system/system.admin.inc
IP deletion confirm page.
system_ip_blocking_delete_submit in drupal/modules/system/system.admin.inc
Process system_ip_blocking_delete form submissions.
system_ip_blocking_form in drupal/modules/system/system.admin.inc
Define the form for blocking IP addresses.
system_ip_blocking_form_submit in drupal/modules/system/system.admin.inc
system_ip_blocking_form_validate in drupal/modules/system/system.admin.inc
system_logging_settings in drupal/modules/system/system.admin.inc
Form builder; Configure error reporting settings.
system_menu in drupal/modules/system/system.module
Implements hook_menu().
system_message_action_form in drupal/modules/system/system.module
system_modules in drupal/modules/system/system.admin.inc
Menu callback; provides module enable/disable interface.
system_modules_confirm_form in drupal/modules/system/system.admin.inc
Display confirmation form for required modules.
system_modules_submit in drupal/modules/system/system.admin.inc
Submit callback; handles modules form submission.
system_modules_uninstall in drupal/modules/system/system.admin.inc
Builds a form of currently disabled modules.
system_modules_uninstall_confirm_form in drupal/modules/system/system.admin.inc
Confirm uninstall of selected modules.
system_modules_uninstall_submit in drupal/modules/system/system.admin.inc
Processes the submitted uninstall form.
system_modules_uninstall_validate in drupal/modules/system/system.admin.inc
Validates the submitted uninstall form.
system_performance_settings in drupal/modules/system/system.admin.inc
Form builder; Configure site performance settings.
system_permission in drupal/modules/system/system.module
Implements hook_permission().
system_regional_settings in drupal/modules/system/system.admin.inc
Form builder; Configure the site regional settings.
system_requirements in drupal/modules/system/system.install
Test and report Drupal installation requirements.
system_retrieve_file in drupal/modules/system/system.module
Attempts to get a file using drupal_http_request and to store it locally.
system_rss_feeds_settings in drupal/modules/system/system.admin.inc
Form builder; Configure how the site handles RSS feeds.
system_run_cron in drupal/modules/system/system.admin.inc
Menu callback: run cron manually.
system_run_cron_submit in drupal/modules/system/system.admin.inc
Submit callback; run cron.
system_send_email_action_form in drupal/modules/system/system.module
Return a form definition so the Send email action can be configured.
system_send_email_action_validate in drupal/modules/system/system.module
Validate system_send_email_action form submissions.
system_settings_form in drupal/modules/system/system.module
Add default buttons to a form and set its prefix.
system_settings_form_submit in drupal/modules/system/system.module
Execute the system_settings_form.
system_site_information_settings in drupal/modules/system/system.admin.inc
Form builder; The general site information form.
system_site_information_settings_validate in drupal/modules/system/system.admin.inc
Validates the submitted site-information form.
system_site_maintenance_mode in drupal/modules/system/system.admin.inc
Form builder; Configure the site's maintenance status.
system_stream_wrappers in drupal/modules/system/system.module
Implements hook_stream_wrappers().
system_test_basic_auth_page in drupal/modules/simpletest/tests/system_test.module
system_test_filetransfer_info in drupal/modules/simpletest/tests/system_test.module
Implements hook_filetransfer_info().
system_test_init in drupal/modules/simpletest/tests/system_test.module
Implements hook_init().
system_test_main_content_fallback in drupal/modules/simpletest/tests/system_test.module
Menu callback to test main content fallback().
system_test_modules_disabled in drupal/modules/simpletest/tests/system_test.module
Implements hook_modules_disabled().
system_test_modules_enabled in drupal/modules/simpletest/tests/system_test.module
Implements hook_modules_enabled().
system_test_modules_installed in drupal/modules/simpletest/tests/system_test.module
Implements hook_modules_installed().
system_test_modules_uninstalled in drupal/modules/simpletest/tests/system_test.module
Implements hook_modules_uninstalled().
system_test_set_header in drupal/modules/simpletest/tests/system_test.module
system_themes_admin_form in drupal/modules/system/system.admin.inc
Form to select the administration theme.
system_themes_admin_form_submit in drupal/modules/system/system.admin.inc
Process system_themes_admin_form form submissions.
system_themes_page in drupal/modules/system/system.admin.inc
Menu callback; displays a listing of all themes.
system_theme_default in drupal/modules/system/system.admin.inc
Menu callback; Set the default theme.
system_theme_disable in drupal/modules/system/system.admin.inc
Menu callback; Disables a theme.
system_theme_enable in drupal/modules/system/system.admin.inc
Menu callback; Enables a theme.
system_theme_settings in drupal/modules/system/system.admin.inc
Form builder; display theme configuration for entire site and individual themes.
system_theme_settings_submit in drupal/modules/system/system.admin.inc
Process system_theme_settings form submissions.
system_theme_settings_validate in drupal/modules/system/system.admin.inc
Validator for the system_theme_settings() form.
system_time_zones in drupal/modules/system/system.module
Generate an array of time zones and their local time&date.
system_token_info in drupal/modules/system/system.tokens.inc
Implements hook_token_info().
system_updater_info in drupal/modules/system/system.module
Implements hook_updater_info().
system_update_7003 in drupal/modules/system/system.install
Update {blocked_ips} with valid IP addresses from {access}.
system_update_7007 in drupal/modules/system/system.install
Convert to new method of storing permissions.
system_update_7033 in drupal/modules/system/system.install
Move CACHE_AGGRESSIVE to CACHE_NORMAL.
system_update_7060 in drupal/modules/system/system.install
Create fields in preparation for migrating upload.module to file.module.
system_update_7061 in drupal/modules/system/system.install
Migrate upload.module data to the newly created file field.
system_user_login in drupal/modules/system/system.module
Implements hook_user_login().
system_user_timezone in drupal/modules/system/system.module
Add the time zone field to the user edit and register forms.
tablesort_header in drupal/includes/tablesort.inc
Format a column header.
taxonomy_entity_info in drupal/modules/taxonomy/taxonomy.module
Implements hook_entity_info().
taxonomy_field_extra_fields in drupal/modules/taxonomy/taxonomy.module
Implements hook_field_extra_fields().
taxonomy_field_formatter_info in drupal/modules/taxonomy/taxonomy.module
Implements hook_field_formatter_info().
taxonomy_field_info in drupal/modules/taxonomy/taxonomy.module
Implements hook_field_info().
taxonomy_field_settings_form in drupal/modules/taxonomy/taxonomy.module
Implements hook_field_settings_form().
taxonomy_field_validate in drupal/modules/taxonomy/taxonomy.module
Implements hook_field_validate().
taxonomy_field_widget_info in drupal/modules/taxonomy/taxonomy.module
Implements hook_field_widget_info().
taxonomy_form_term in drupal/modules/taxonomy/taxonomy.admin.inc
Form function for the term edit form.
taxonomy_form_term_submit in drupal/modules/taxonomy/taxonomy.admin.inc
Submit handler to insert or update a term.
taxonomy_form_term_validate in drupal/modules/taxonomy/taxonomy.admin.inc
Validation handler for the term form.
taxonomy_form_vocabulary in drupal/modules/taxonomy/taxonomy.admin.inc
Display form for adding and editing vocabularies.
taxonomy_form_vocabulary_submit in drupal/modules/taxonomy/taxonomy.admin.inc
Accept the form submission for a vocabulary and save the results.
taxonomy_help in drupal/modules/taxonomy/taxonomy.module
Implements hook_help().
taxonomy_overview_terms in drupal/modules/taxonomy/taxonomy.admin.inc
Form builder for the taxonomy terms overview.
taxonomy_overview_terms_submit in drupal/modules/taxonomy/taxonomy.admin.inc
Submit handler for terms overview form.
taxonomy_overview_vocabularies in drupal/modules/taxonomy/taxonomy.admin.inc
Form builder to list and manage vocabularies.
taxonomy_overview_vocabularies_submit in drupal/modules/taxonomy/taxonomy.admin.inc
Submit handler for vocabularies overview. Updates changed vocabulary weights.
taxonomy_permission in drupal/modules/taxonomy/taxonomy.module
Implements hook_permission().
taxonomy_term_confirm_delete in drupal/modules/taxonomy/taxonomy.admin.inc
Form builder for the term delete form.
taxonomy_term_confirm_delete_submit in drupal/modules/taxonomy/taxonomy.admin.inc
Submit handler to delete a term after confirmation.
taxonomy_term_confirm_parents in drupal/modules/taxonomy/taxonomy.admin.inc
Form builder for the confirmation of multiple term parents.
taxonomy_term_page in drupal/modules/taxonomy/taxonomy.pages.inc
Menu callback; displays all nodes associated with a term.
taxonomy_test_form_alter in drupal/modules/simpletest/tests/taxonomy_test.module
Implements hook_form_alter().
taxonomy_token_info in drupal/modules/taxonomy/taxonomy.tokens.inc
Implements hook_token_info().
taxonomy_vocabulary_confirm_delete in drupal/modules/taxonomy/taxonomy.admin.inc
Form builder for the vocabulary delete confirmation form.
taxonomy_vocabulary_confirm_delete_submit in drupal/modules/taxonomy/taxonomy.admin.inc
Submit handler to delete a vocabulary after confirmation.
taxonomy_vocabulary_confirm_reset_alphabetical in drupal/modules/taxonomy/taxonomy.admin.inc
Form builder to confirm resetting a vocabulary to alphabetical order.
taxonomy_vocabulary_confirm_reset_alphabetical_submit in drupal/modules/taxonomy/taxonomy.admin.inc
Submit handler to reset a vocabulary to alphabetical order after confirmation.
template_preprocess_aggregator_feed_source in drupal/modules/aggregator/aggregator.pages.inc
Process variables for aggregator-feed-source.tpl.php.
template_preprocess_aggregator_item in drupal/modules/aggregator/aggregator.pages.inc
Process variables for aggregator-item.tpl.php.
template_preprocess_aggregator_summary_item in drupal/modules/aggregator/aggregator.pages.inc
Process variables for aggregator-summary-item.tpl.php.
template_preprocess_block_admin_display_form in drupal/modules/block/block.admin.inc
Processes variables for block-admin-display-form.tpl.php.
template_preprocess_comment in drupal/modules/comment/comment.module
Process variables for comment.tpl.php.
template_preprocess_dashboard_admin_display_form in drupal/modules/dashboard/dashboard.module
Preprocesses variables for block-admin-display-form.tpl.php.
template_preprocess_forums in drupal/modules/forum/forum.module
Process variables for forums.tpl.php
template_preprocess_forum_icon in drupal/modules/forum/forum.module
Process variables to format the icon for each individual topic.
template_preprocess_forum_topic_list in drupal/modules/forum/forum.module
Preprocess variables to format the topic listing.
template_preprocess_node in drupal/modules/node/node.module
Process variables for node.tpl.php
template_preprocess_username in drupal/includes/theme.inc
Preprocesses variables for theme_username().
template_preprocess_user_picture in drupal/modules/user/user.module
Process variables for user-picture.tpl.php.
text_field_formatter_info in drupal/modules/field/modules/text/text.module
Implements hook_field_formatter_info().
text_field_formatter_settings_form in drupal/modules/field/modules/text/text.module
Implements hook_field_formatter_settings_form().
text_field_formatter_settings_summary in drupal/modules/field/modules/text/text.module
Implements hook_field_formatter_settings_summary().
text_field_info in drupal/modules/field/modules/text/text.module
Implements hook_field_info().
text_field_instance_settings_form in drupal/modules/field/modules/text/text.module
Implements hook_field_instance_settings_form().
text_field_settings_form in drupal/modules/field/modules/text/text.module
Implements hook_field_settings_form().
text_field_validate in drupal/modules/field/modules/text/text.module
Implements hook_field_validate().
text_field_widget_form in drupal/modules/field/modules/text/text.module
Implements hook_field_widget_form().
text_field_widget_info in drupal/modules/field/modules/text/text.module
Implements hook_field_widget_info().
text_field_widget_settings_form in drupal/modules/field/modules/text/text.module
Implements hook_field_widget_settings_form().
text_help in drupal/modules/field/modules/text/text.module
Implements hook_help().
theme in drupal/includes/theme.inc
Generates themed output.
ThemeUpdater::postInstallTasks in drupal/modules/system/system.updater.inc
Return an array of links to pages that should be visited post operation.
theme_aggregator_categorize_items in drupal/modules/aggregator/aggregator.pages.inc
Returns HTML for the aggregator page list form for assigning categories.
theme_aggregator_page_rss in drupal/modules/aggregator/aggregator.pages.inc
Prints the RSS page for a feed.
theme_book_admin_table in drupal/modules/book/book.admin.inc
Returns HTML for a book administration form.
theme_breadcrumb in drupal/includes/theme.inc
Returns HTML for a breadcrumb trail.
theme_color_scheme_form in drupal/modules/color/color.module
Returns HTML for a theme's color form.
theme_comment_block in drupal/modules/comment/comment.module
Returns HTML for a list of recent comments to be displayed in the comment block.
theme_comment_post_forbidden in drupal/modules/comment/comment.module
Returns HTML for a "you can't post comments" notice.
theme_dashboard_disabled_blocks in drupal/modules/dashboard/dashboard.module
Returns HTML for a set of disabled blocks, for display in dashboard customization mode.
theme_dblog_message in drupal/modules/dblog/dblog.admin.inc
Returns HTML for a log message.
theme_feed_icon in drupal/includes/theme.inc
Returns HTML for a feed icon.
theme_field_multiple_value_form in drupal/modules/field/field.form.inc
Returns HTML for an individual form element.
theme_file_formatter_table in drupal/modules/file/file.field.inc
Returns HTML for a file attachments table.
theme_file_upload_help in drupal/modules/file/file.field.inc
Returns HTML for help text based on file upload validators.
theme_file_widget_multiple in drupal/modules/file/file.field.inc
Returns HTML for a group of file upload widgets.
theme_filter_admin_overview in drupal/modules/filter/filter.admin.inc
Returns HTML for the text format administration overview form.
theme_filter_tips in drupal/modules/filter/filter.pages.inc
Returns HTML for a set of filter tips.
theme_filter_tips_more_info in drupal/modules/filter/filter.module
Returns HTML for a link to the more extensive filter tips.
theme_image_example_colorize_summary in examples/image_example/image_example.module
Formats a summary of an image colorize effect.
theme_image_example_image in examples/image_example/image_example.pages.inc
Theme function displays an image rendered using the specified style.
theme_image_resize_summary in drupal/modules/image/image.admin.inc
Returns HTML for a summary of an image resize effect.
theme_image_rotate_summary in drupal/modules/image/image.admin.inc
Returns HTML for a summary of an image rotate effect.
theme_image_scale_summary in drupal/modules/image/image.admin.inc
Returns HTML for a summary of an image scale effect.
theme_image_style_effects in drupal/modules/image/image.admin.inc
Returns HTML for a listing of the effects within a specific image style.
theme_image_style_list in drupal/modules/image/image.admin.inc
Returns HTML for the page containing the list of image styles.
theme_image_style_preview in drupal/modules/image/image.admin.inc
Returns HTML for a preview of an image style.
theme_locale_date_format_form in drupal/modules/locale/locale.admin.inc
Returns HTML for a locale date format form.
theme_locale_languages_configure_form in drupal/modules/locale/locale.admin.inc
Returns HTML for a language configuration form.
theme_locale_languages_overview_form in drupal/modules/locale/locale.admin.inc
Returns HTML for the language overview form.
theme_mark in drupal/includes/theme.inc
Returns HTML for a marker for new or updated content.
theme_menu_local_task in drupal/includes/menu.inc
Returns HTML for a single local task link.
theme_menu_local_tasks in drupal/includes/menu.inc
Returns HTML for primary and secondary local tasks.
theme_menu_overview_form in drupal/modules/menu/menu.admin.inc
Returns HTML for the menu overview form into a table.
theme_more_help_link in drupal/includes/theme.inc
Returns HTML for a "more help" link.
theme_more_link in drupal/includes/theme.inc
Returns HTML for a "more" link, like those used in blocks.
theme_nodeapi_example_rating in examples/nodeapi_example/nodeapi_example.module
A custom theme function.
theme_node_add_list in drupal/modules/node/node.pages.inc
Returns HTML for a list of available node types for node creation.
theme_node_preview in drupal/modules/node/node.pages.inc
Returns HTML for a node preview for display during node creation and editing.
theme_node_recent_block in drupal/modules/node/node.module
Returns HTML for a list of recent content.
theme_node_search_admin in drupal/modules/node/node.module
Returns HTML for the content ranking part of the search settings admin page.
theme_options_none in drupal/modules/field/modules/options/options.module
Returns HTML for the label for the empty value for options that are not required.
theme_overlay_disable_message in drupal/modules/overlay/overlay.module
Returns the HTML for the message about how to disable the overlay.
theme_pager in drupal/includes/pager.inc
Returns HTML for a query pager.
theme_pager_link in drupal/includes/pager.inc
Returns HTML for a link to a specific query result page.
theme_poll_choices in drupal/modules/poll/poll.module
Returns HTML for an admin poll form for choices.
theme_profile_admin_overview in drupal/modules/profile/profile.admin.inc
Returns HTML for the profile field overview form into a drag and drop enabled table.
theme_queue_items in examples/queue_example/queue_example.module
Theme the queue display.
theme_render_example_add_notes in examples/render_example/render_example.module
Wrap a div and add a little text after the rendered #children.
theme_shortcut_set_customize in drupal/modules/shortcut/shortcut.admin.inc
Returns HTML for a shortcut set customization form.
theme_simpletest_test_table in drupal/modules/simpletest/simpletest.pages.inc
Returns HTML for a test list generated by simpletest_test_form() into a table.
theme_status_messages in drupal/includes/theme.inc
Returns HTML for status and/or error messages, grouped by type.
theme_status_report in drupal/modules/system/system.admin.inc
Returns HTML for the status report.
theme_system_admin_index in drupal/modules/system/system.admin.inc
Returns HTML for the output of the dashboard page.
theme_system_compact_link in drupal/modules/system/system.module
Returns HTML for a link to show or hide inline help descriptions.
theme_system_date_time_settings in drupal/modules/system/system.admin.inc
Returns HTML for the date settings form.
theme_system_modules_fieldset in drupal/modules/system/system.admin.inc
Returns HTML for the modules form.
theme_system_modules_uninstall in drupal/modules/system/system.admin.inc
Returns HTML for a table of currently disabled modules.
theme_system_powered_by in drupal/modules/system/system.module
Returns HTML for the Powered by Drupal text.
theme_system_themes_page in drupal/modules/system/system.admin.inc
Returns HTML for the Appearance page.
theme_tablesort_indicator in drupal/includes/theme.inc
Returns HTML for a sort icon.
theme_task_list in drupal/includes/theme.maintenance.inc
Returns HTML for a list of maintenance tasks to perform.
theme_taxonomy_overview_terms in drupal/modules/taxonomy/taxonomy.admin.inc
Returns HTML for a terms overview form as a sortable list of terms.
theme_taxonomy_overview_vocabularies in drupal/modules/taxonomy/taxonomy.admin.inc
Returns HTML for the vocabulary overview form as a sortable list of vocabularies.
theme_toolbar_toggle in drupal/modules/toolbar/toolbar.module
Formats an element used to toggle the toolbar drawer's visibility.
theme_trigger_display in drupal/modules/trigger/trigger.admin.inc
Returns HTML for the form showing actions assigned to a trigger.
theme_update_last_check in drupal/modules/update/update.module
Returns HTML for the last time we checked for update data.
theme_update_report in drupal/modules/update/update.report.inc
Returns HTML for the project status report.
theme_update_status_label in drupal/modules/update/update.report.inc
Returns HTML for a label to display for a project's update status.
theme_update_version in drupal/modules/update/update.report.inc
Returns HTML for the version display of a project.
theme_user_admin_permissions in drupal/modules/user/user.admin.inc
Returns HTML for the administer permissions page.
theme_user_admin_roles in drupal/modules/user/user.admin.inc
Returns HTML for the role order and new role form.
theme_vertical_tabs in drupal/includes/form.inc
Returns HTML for an element's children fieldsets as vertical tabs.
token_example_example_form in examples/token_example/token_example.module
Form builder; display lists of supported token entities and text to tokenize.
token_example_token_info in examples/token_example/token_example.tokens.inc
Implements hook_token_info().
toolbar_help in drupal/modules/toolbar/toolbar.module
Implements hook_help().
toolbar_permission in drupal/modules/toolbar/toolbar.module
Implements hook_permission().
toolbar_view in drupal/modules/toolbar/toolbar.module
Build the admin menu as a structured array ready for drupal_render().
tracker_help in drupal/modules/tracker/tracker.module
Implements hook_help().
tracker_page in drupal/modules/tracker/tracker.pages.inc
Menu callback; prints a listing of active nodes on the site.
translation_form_node_form_alter in drupal/modules/translation/translation.module
Implements hook_form_alter().
translation_form_node_type_form_alter in drupal/modules/translation/translation.module
Implements hook_form_FORM_ID_alter().
translation_help in drupal/modules/translation/translation.module
Implements hook_help().
translation_node_overview in drupal/modules/translation/translation.pages.inc
Overview page for a node's translations.
translation_node_prepare in drupal/modules/translation/translation.module
Implements hook_node_prepare().
translation_node_validate in drupal/modules/translation/translation.module
Implements hook_node_validate().
translation_permission in drupal/modules/translation/translation.module
Implements hook_permission().
trigger_assign_form in drupal/modules/trigger/trigger.admin.inc
Returns the form for assigning an action to a trigger.
trigger_assign_form_submit in drupal/modules/trigger/trigger.admin.inc
Submit function for trigger_assign_form().
trigger_assign_form_validate in drupal/modules/trigger/trigger.admin.inc
Validation function for trigger_assign_form().
trigger_example_form in examples/trigger_example/trigger_example.module
Trigger example test form
trigger_example_form_submit in examples/trigger_example/trigger_example.module
Submit handler for the trigger_example_form.
trigger_example_help in examples/trigger_example/trigger_example.module
Implements hook_help().
trigger_example_trigger_info in examples/trigger_example/trigger_example.module
Implements hook_trigger_info().
trigger_example_trigger_info_alter in examples/trigger_example/trigger_example.module
Implements hook_trigger_info_alter().
trigger_help in drupal/modules/trigger/trigger.module
Implements hook_help().
trigger_test_action_info in drupal/modules/trigger/tests/trigger_test.module
Implements hook_action_info().
trigger_test_trigger_info in drupal/modules/trigger/tests/trigger_test.module
Implements hook_trigger_info().
trigger_trigger_info in drupal/modules/trigger/trigger.module
Implements hook_trigger_info().
trigger_unassign in drupal/modules/trigger/trigger.admin.inc
Confirm removal of an assigned action.
trigger_unassign_submit in drupal/modules/trigger/trigger.admin.inc
Submit callback for trigger_unassign() form.
truncate_utf8 in drupal/includes/unicode.inc
Truncates a UTF-8-encoded string safely to a number of characters.
Updater::factory in drupal/includes/updater.inc
Return an Updater of the appropriate type depending on the source.
Updater::getProjectTitle in drupal/includes/updater.inc
Return the project name from a Drupal info file.
Updater::getUpdaterFromDirectory in drupal/includes/updater.inc
Determine which Updater class can operate on the given directory.
Updater::install in drupal/includes/updater.inc
Installs a Drupal project, returns a list of next actions.
Updater::prepareInstallDirectory in drupal/includes/updater.inc
Make sure the installation parent directory exists and is writable.
Updater::update in drupal/includes/updater.inc
Updates a Drupal project, returns a list of next actions.
UpdateTestFileTransfer::getSettingsForm in drupal/modules/update/tests/update_test.module
update_authorize_batch_copy_project in drupal/modules/update/update.authorize.inc
Copy a project to its proper place when authorized with elevated privileges.
update_authorize_install_batch_finished in drupal/modules/update/update.authorize.inc
Batch callback for when the authorized install batch is finished.
update_authorize_run_install in drupal/modules/update/update.authorize.inc
Callback invoked by authorize.php to install a new project.
update_authorize_run_update in drupal/modules/update/update.authorize.inc
Callback invoked by authorize.php to update existing projects.
update_authorize_update_batch_finished in drupal/modules/update/update.authorize.inc
Batch callback for when the authorized update batch is finished.
update_calculate_project_data in drupal/modules/update/update.compare.inc
Calculate the current update status of all projects on the site.
update_calculate_project_update_status in drupal/modules/update/update.compare.inc
Calculate the current update status of a specific project.
update_do_one in drupal/includes/update.inc
Perform one update and store the results for display on finished page.
update_fetch_data_batch in drupal/modules/update/update.fetch.inc
Process a step in the batch for fetching available update data.
update_fetch_data_finished in drupal/modules/update/update.fetch.inc
Batch API callback when all fetch tasks have been completed.
update_help in drupal/modules/update/update.module
Implements hook_help().
update_mail in drupal/modules/update/update.module
Implements hook_mail().
update_manager_archive_extract in drupal/modules/update/update.manager.inc
Unpack a downloaded archive file.
update_manager_batch_project_get in drupal/modules/update/update.manager.inc
Batch operation: download, unpack, and verify a project.
update_manager_download_batch_finished in drupal/modules/update/update.manager.inc
Batch callback invoked when the download batch is completed.
update_manager_install_form in drupal/modules/update/update.manager.inc
Build the form for the update manager page to install new projects.
update_manager_install_form_submit in drupal/modules/update/update.manager.inc
Handle form submission when installing new projects via the update manager.
update_manager_install_form_validate in drupal/modules/update/update.manager.inc
Validate the form for installing a new project via the update manager.
update_manager_update_form in drupal/modules/update/update.manager.inc
Build the form for the update manager page to update existing projects.
update_manager_update_form_submit in drupal/modules/update/update.manager.inc
Submit function for the main update form.
update_manager_update_form_validate in drupal/modules/update/update.manager.inc
Validation callback to ensure that at least one project is selected.
update_manager_update_ready_form in drupal/modules/update/update.manager.inc
Build the form when the site is ready to update (after downloading).
update_manager_update_ready_form_submit in drupal/modules/update/update.manager.inc
Submit handler for the form to confirm that an update should continue.
update_manual_status in drupal/modules/update/update.fetch.inc
Callback to manually check the update status without cron.
update_process_project_info in drupal/modules/update/update.compare.inc
Process the list of projects on the system to figure out the currently installed versions, and other information that is required before we can compare against the available releases to produce the status report.
update_requirements in drupal/modules/update/update.install
Implements hook_requirements().
update_script_selection_form in drupal/update.php
update_settings in drupal/modules/update/update.settings.inc
Form builder for the update settings tab.
update_settings_validate in drupal/modules/update/update.settings.inc
Validation callback for the settings form.
update_test_filetransfer_info in drupal/modules/update/tests/update_test.module
Implements hook_filetransfer_info().
update_test_menu in drupal/modules/update/tests/update_test.module
Implements hook_menu().
update_verify_update_archive in drupal/modules/update/update.module
Implements hook_verify_update_archive().
user_account_form in drupal/modules/user/user.module
Helper function to add default user account fields to user registration and edit form.
user_account_form_validate in drupal/modules/user/user.module
Form validation handler for user_account_form().
user_action_info in drupal/modules/user/user.module
Implements hook_action_info().
user_admin in drupal/modules/user/user.admin.inc
user_admin_account in drupal/modules/user/user.admin.inc
Form builder; User administration page.
user_admin_account_submit in drupal/modules/user/user.admin.inc
Submit the user administration update form.
user_admin_account_validate in drupal/modules/user/user.admin.inc
user_admin_permissions in drupal/modules/user/user.admin.inc
Menu callback: administer permissions.
user_admin_permissions_submit in drupal/modules/user/user.admin.inc
Save permissions selected on the administer permissions page.
user_admin_role in drupal/modules/user/user.admin.inc
Form to configure a single role.
user_admin_roles in drupal/modules/user/user.admin.inc
Form to re-order roles or add a new one.
user_admin_roles_order_submit in drupal/modules/user/user.admin.inc
Form submit function. Update the role weights.
user_admin_role_delete_confirm in drupal/modules/user/user.admin.inc
Form to confirm role delete operation.
user_admin_role_delete_confirm_submit in drupal/modules/user/user.admin.inc
Form submit handler for user_admin_role_delete_confirm().
user_admin_role_submit in drupal/modules/user/user.admin.inc
Form submit handler for the user_admin_role() form.
user_admin_role_validate in drupal/modules/user/user.admin.inc
Form validation handler for the user_admin_role() form.
user_admin_settings in drupal/modules/user/user.admin.inc
Form builder; Configure user settings for this site.
user_block_configure in drupal/modules/user/user.module
Implements hook_block_configure().
user_block_info in drupal/modules/user/user.module
Implements hook_block_info().
user_block_view in drupal/modules/user/user.module
Implements hook_block_view().
user_cancel in drupal/modules/user/user.module
Cancel a user account.
user_cancel_confirm in drupal/modules/user/user.pages.inc
Menu callback; Cancel a user account via e-mail confirmation link.
user_cancel_confirm_form in drupal/modules/user/user.pages.inc
Form builder; confirm form for cancelling user account.
user_cancel_confirm_form_submit in drupal/modules/user/user.pages.inc
Submit handler for the account cancellation confirm form.
user_cancel_methods in drupal/modules/user/user.pages.inc
Helper function to return available account cancellation methods.
user_entity_info in drupal/modules/user/user.module
Implements hook_entity_info().
user_external_login_register in drupal/modules/user/user.module
Helper function for authentication modules. Either logs in or registers the current user, based on username. Either way, the global $user object is populated and login tasks are performed.
user_field_extra_fields in drupal/modules/user/user.module
Implements hook_field_extra_fields().
user_filters in drupal/modules/user/user.module
List user administration filters that can be applied.
user_filter_form in drupal/modules/user/user.admin.inc
Form builder; Return form for user administration filters.
user_filter_form_submit in drupal/modules/user/user.admin.inc
Process result from user administration filter form.
user_form_field_ui_field_edit_form_alter in drupal/modules/user/user.module
Implements hook_form_FORM_ID_alter().
user_form_process_password_confirm in drupal/modules/user/user.module
Form element process handler for client-side password validation.
user_form_test_current_password in drupal/modules/user/tests/user_form_test.module
A test form for user_validate_current_pass().
user_form_test_current_password_submit in drupal/modules/user/tests/user_form_test.module
Submit function for the test form for user_validate_current_pass().
user_help in drupal/modules/user/user.module
Implement hook_help().
user_login in drupal/modules/user/user.module
Form builder; the main user login form.
user_login_block in drupal/modules/user/user.module
user_login_final_validate in drupal/modules/user/user.module
The final validation handler on the login form.
user_login_name_validate in drupal/modules/user/user.module
A FAPI validate handler. Sets an error if supplied username has been blocked.
user_menu_title in drupal/modules/user/user.module
Menu item title callback for the 'user' path.
user_multiple_cancel_confirm in drupal/modules/user/user.module
user_pass in drupal/modules/user/user.pages.inc
Form builder; Request a password reset.
user_pass_reset in drupal/modules/user/user.pages.inc
Menu callback; process one time login link and redirects to the user page on success.
user_pass_submit in drupal/modules/user/user.pages.inc
user_pass_validate in drupal/modules/user/user.pages.inc
user_permission in drupal/modules/user/user.module
Implements hook_permission().
user_profile_form in drupal/modules/user/user.pages.inc
Form builder; edit a user account or one of their profile categories.
user_profile_form_submit in drupal/modules/user/user.pages.inc
Submit function for the user account and profile editing form.
user_register_form in drupal/modules/user/user.module
Form builder; the user registration form.
user_register_submit in drupal/modules/user/user.module
Submit handler for the user registration form.
user_roles in drupal/modules/user/user.module
Retrieve an array of roles matching specified conditions.
user_tokens in drupal/modules/user/user.tokens.inc
Implements hook_tokens().
user_token_info in drupal/modules/user/user.tokens.inc
Implements hook_token_info().
user_update_7000 in drupal/modules/user/user.install
Increase the length of the password field to accommodate better hashes.
user_update_7002 in drupal/modules/user/user.install
Convert user time zones from time zone offsets to time zone names.
user_update_7011 in drupal/modules/user/user.install
Updates email templates to use new tokens.
user_update_7014 in drupal/modules/user/user.install
Rename the 'post comments without approval' permission.
user_user_categories in drupal/modules/user/user.module
Implements hook_user_categories().
user_user_operations in drupal/modules/user/user.module
Implements hook_user_operations().
user_user_view in drupal/modules/user/user.module
Implements hook_user_view().
user_validate_current_pass in drupal/modules/user/user.module
Form validation handler for the current password on the user_account_form().
user_validate_mail in drupal/modules/user/user.module
Validates a user's email address.
user_validate_name in drupal/modules/user/user.module
Verify the syntax of the given name.
user_validate_picture in drupal/modules/user/user.module
Validates an image uploaded by a user.
vertical_tabs_example_form_alter in examples/vertical_tabs_example/vertical_tabs_example.module
Implement hook_form_alter().
watchdog_severity_levels in drupal/includes/common.inc
Severity levels, as defined in RFC 3164: http://www.ietf.org/rfc/rfc3164.txt.
xmlrpc_example_alter_form in examples/xmlrpc_example/xmlrpc_example.module
Present a form to enable or disable the code implemented in hook_xmlrpc_alter.
xmlrpc_example_client_add_submit in examples/xmlrpc_example/xmlrpc_example.module
Submit: query the XML-RPC endpoint for the method xmlrpc_example.add and report the result as a Drupal message.
xmlrpc_example_client_form in examples/xmlrpc_example/xmlrpc_example.module
Present a form to get two arguments, and make a call to an XML-RPC server using these arguments as input, showing the result in a message.
xmlrpc_example_client_multicall_submit in examples/xmlrpc_example/xmlrpc_example.module
Submit a multicall request: query the XML-RPC endpoint for the methods xmlrpc_example.add and xmlrpc_example.subtract and report the result as a Drupal message. Drupal's XML-RPC client builds the system.multicall request automatically when there…
xmlrpc_example_client_request_methods_submit in examples/xmlrpc_example/xmlrpc_example.module
Submit: query the XML-RPC endpoint for the method system.listMethods and report the result as a Drupal message. The result is a list of the available methods in this XML-RPC server.
xmlrpc_example_client_subtract_submit in examples/xmlrpc_example/xmlrpc_example.module
Submit: query the XML-RPC endpoint for the method xmlrpc_example.subtract and report the result as a Drupal message.
xmlrpc_example_info in examples/xmlrpc_example/xmlrpc_example.module
A simple landing-page information function.
xmlrpc_example_server_form in examples/xmlrpc_example/xmlrpc_example.module
Present a form to configure the service options. In this case the maximum and minimum values for any of the operations (add or subtraction).
xmlrpc_example_xmlrpc in examples/xmlrpc_example/xmlrpc_example.module
Implements hook_xmlrpc().
xmlrpc_server in drupal/includes/xmlrpcs.inc
Invokes XML-RPC methods on this server.
xmlrpc_server_call in drupal/includes/xmlrpcs.inc
Dispatches an XML-RPC request and any parameters to the appropriate handler.
xmlrpc_server_method_signature in drupal/includes/xmlrpcs.inc
Returns the method signature of a function.
xmlrpc_server_multicall in drupal/includes/xmlrpcs.inc
Dispatches multiple XML-RPC requests.
_action_example_page in examples/action_example/action_example.module
A simple page to explain to the developer what to do.
_aggregator_characters in drupal/modules/aggregator/aggregator.processor.inc
Helper function for teaser length choices.
_ajax_example_get_first_dropdown_options in examples/ajax_example/ajax_example.module
Helper function to populate the first dropdown. This would normally be pulling data from the database.
_ajax_example_get_second_dropdown_options in examples/ajax_example/ajax_example.module
Helper function to populate the second dropdown. This would normally be pulling data from the database.
_batch_do in drupal/includes/batch.inc
Do one execution pass in JavaScript-mode and return progress to the browser.
_batch_page in drupal/includes/batch.inc
State-based dispatcher for the batch processing page.
_batch_test_finished_helper in drupal/modules/simpletest/tests/batch_test.callbacks.inc
Common 'finished' callbacks for batches 1 to 4.
_block_rehash in drupal/modules/block/block.module
Update the 'block' DB table with the blocks currently exported by modules.
_book_add_form_elements in drupal/modules/book/book.module
Build the common elements of the book form for the node and outline forms.
_book_admin_table_tree in drupal/modules/book/book.admin.inc
Recursive helper to build the main table in the book administration page form.
_book_install_type_create in drupal/modules/book/book.install
_book_parent_select in drupal/modules/book/book.module
Build the parent selection form element for the node form or outline tab.
_comment_get_modes in drupal/modules/comment/comment.module
Return an array of viewing modes for comment listings.
_drupal_log_error in drupal/includes/errors.inc
Log a PHP error or exception, display an error page in fatal cases.
_element_validate_integer in drupal/modules/field/field.module
Helper form element validator: integer.
_element_validate_integer_positive in drupal/modules/field/field.module
Helper form element validator: integer > 0.
_element_validate_number in drupal/modules/field/field.module
Helper form element validator: number.
_field_example_page in examples/field_example/field_example.module
A simple page to explain to the developer what to do.
_field_ui_field_overview_form_validate_add_existing in drupal/modules/field_ui/field_ui.admin.inc
Helper function for field_ui_field_overview_form_validate.
_field_ui_field_overview_form_validate_add_new in drupal/modules/field_ui/field_ui.admin.inc
Helper function for field_ui_field_overview_form_validate.
_file_generic_settings_extensions in drupal/modules/file/file.field.inc
Element validate callback for the allowed file extensions field.
_file_generic_settings_max_filesize in drupal/modules/file/file.field.inc
Element validate callback for the maximum upload size field.
_file_test_form in drupal/modules/simpletest/tests/file_test.module
Form to test file uploads.
_file_test_form_submit in drupal/modules/simpletest/tests/file_test.module
Process the upload.
_filter_autop_tips in drupal/modules/filter/filter.module
Filter tips callback for auto-paragraph filter.
_filter_example_filter_foo_settings in examples/filter_example/filter_example.module
Settings callback for foo filter
_filter_example_filter_foo_tips in examples/filter_example/filter_example.module
Filter tips callback for foo filter.
_filter_example_filter_time_tips in examples/filter_example/filter_example.module
Filter tips callback for time filter.
_filter_example_information in examples/filter_example/filter_example.module
Simply returns a little bit of information about the example.
_filter_html_escape_tips in drupal/modules/filter/filter.module
Filter tips callback for HTML escaping filter.
_filter_html_settings in drupal/modules/filter/filter.module
Settings callback for the HTML filter.
_filter_html_tips in drupal/modules/filter/filter.module
Filter tips callback for HTML filter.
_filter_url_settings in drupal/modules/filter/filter.module
Settings callback for URL filter.
_filter_url_tips in drupal/modules/filter/filter.module
Filter tips callback for URL filter.
_format_date_callback in drupal/includes/common.inc
Callback function for preg_replace_callback().
_form_test_checkbox in drupal/modules/simpletest/tests/form_test.module
Build a form to test a checkbox.
_form_test_disabled_elements in drupal/modules/simpletest/tests/form_test.module
Build a form to test disabled elements.
_form_test_input_forgery in drupal/modules/simpletest/tests/form_test.module
Build a form to test input forgery of enabled elements.
_form_test_tableselect_form_builder in drupal/modules/simpletest/tests/form_test.module
Build a form to test the tableselect element.
_form_test_tableselect_get_data in drupal/modules/simpletest/tests/form_test.module
Create a header and options array. Helper function for callbacks.
_form_test_tableselect_multiple_false_form_submit in drupal/modules/simpletest/tests/form_test.module
Process the tableselect #multiple = FALSE submitted values.
_form_test_tableselect_multiple_true_form_submit in drupal/modules/simpletest/tests/form_test.module
Process the tableselect #multiple = TRUE submitted values.
_form_test_vertical_tabs_form in drupal/modules/simpletest/tests/form_test.module
Tests functionality of vertical tabs.
_forum_parent_select in drupal/modules/forum/forum.admin.inc
Returns a select box for available parent terms
_image_field_resolution_validate in drupal/modules/image/image.field.inc
Element validate function for resolution fields.
_locale_import_parse_plural_forms in drupal/includes/locale.inc
Parses a Plural-Forms entry from a Gettext Portable Object file header
_locale_import_po in drupal/includes/locale.inc
Parses Gettext Portable Object file information and inserts into database
_locale_languages_common_controls in drupal/modules/locale/locale.admin.inc
Common elements of the language addition and editing form.
_locale_languages_configure_form_language_table in drupal/modules/locale/locale.admin.inc
Helper function to build a language provider table.
_locale_prepare_predefined_list in drupal/includes/locale.inc
Prepares the language code list for a select form item with only the unsupported ones
_locale_rebuild_js in drupal/includes/locale.inc
(Re-)Creates the JavaScript translation file for a language.
_locale_translate_seek in drupal/includes/locale.inc
Perform a string search and display results in a table
_menu_example_basic_instructions in examples/menu_example/menu_example.module
Page callback for the simplest introduction menu entry.
_menu_example_menu_page in examples/menu_example/menu_example.module
Page callback for use with most of the menu entries. The arguments it receives determine what it outputs.
_menu_example_simple_title_callback in examples/menu_example/menu_example.module
Title callback to rewrite the '/user' menu link.
_menu_item_localize in drupal/includes/menu.inc
Localize the router item title using t() or another callback.
_menu_overview_tree_form in drupal/modules/menu/menu.admin.inc
Recursive helper function for menu_overview_form().
_menu_parents_recurse in drupal/modules/menu/menu.module
Recursive helper function for menu_parent_options().
_menu_site_is_offline in drupal/includes/menu.inc
Checks whether the site is in maintenance mode.
_node_access_rebuild_batch_finished in drupal/modules/node/node.module
Post-processing for node_access_rebuild_batch.
_node_characters in drupal/modules/node/content_types.inc
Helper function for teaser length choices.
_node_mass_update_batch_finished in drupal/modules/node/node.admin.inc
Node Mass Update Batch 'finished' callback.
_openid_user_login_form_alter in drupal/modules/openid/openid.module
_php_filter_tips in drupal/modules/php/php.module
Tips callback for php filter.
_poll_choice_form in drupal/modules/poll/poll.module
_profile_field_types in drupal/modules/profile/profile.module
_profile_form_explanation in drupal/modules/profile/profile.module
_session_test_get in drupal/modules/simpletest/tests/session_test.module
Page callback, prints the stored session value to the screen.
_session_test_is_logged_in in drupal/modules/simpletest/tests/session_test.module
Menu callback, only available if current user is logged in.
_session_test_no_set in drupal/modules/simpletest/tests/session_test.module
Menu callback: turns off session saving and then tries to save a value anyway.
_session_test_set in drupal/modules/simpletest/tests/session_test.module
Page callback, stores a value in $_SESSION['session_test_value'].
_session_test_set_message in drupal/modules/simpletest/tests/session_test.module
Menu callback, sets a message to me displayed on the following page.
_session_test_set_not_started in drupal/modules/simpletest/tests/session_test.module
Menu callback, stores a value in $_SESSION['session_test_value'] without having started the session in advance.
_shortcut_link_form_elements in drupal/modules/shortcut/shortcut.admin.inc
Helper function for building a form for adding or editing shortcut links.
_simpletest_batch_finished in drupal/modules/simpletest/simpletest.module
_simpletest_batch_operation in drupal/modules/simpletest/simpletest.module
Batch operation callback.
_simpletest_example_explanation in examples/simpletest_example/simpletest_example.module
Return an explanation of this module.
_simpletest_format_summary_line in drupal/modules/simpletest/simpletest.module
_system_modules_build_row in drupal/modules/system/system.admin.inc
Build a table row for the system modules page.
_system_test_first_shutdown_function in drupal/modules/simpletest/tests/system_test.module
Dummy shutdown function which registers another shutdown function.
_system_test_second_shutdown_function in drupal/modules/simpletest/tests/system_test.module
Dummy shutdown function.
_update_manager_check_backends in drupal/modules/update/update.manager.inc
Checks for file transfer backends and prepares a form fragment about them.
_update_message_text in drupal/modules/update/update.module
Helper function to return the appropriate message text when the site is out of date or missing a security update.
_update_no_data in drupal/modules/update/update.module
Prints a warning message when there is no data about available updates.
_update_requirement_check in drupal/modules/update/update.install
Private helper method to fill in the requirements array.
_user_cancel in drupal/modules/user/user.module
Last batch processing step for cancelling a user account.
_user_mail_text in drupal/modules/user/user.module
Returns a mail string for a variable name.
_vertical_tabs_example_explanation in examples/vertical_tabs_example/vertical_tabs_example.module
Simple explanation page.
_xmlrpc in drupal/includes/xmlrpc.inc
Performs one or more XML-RPC requests.
_xmlrpc_example_server_add in examples/xmlrpc_example/xmlrpc_example.module
This is the callback for the xmlrpc_example.add method.
_xmlrpc_example_server_subtract in examples/xmlrpc_example/xmlrpc_example.module
This is the callback for the xmlrpc_example.subtract xmlrpc method.

Code

drupal/includes/bootstrap.inc, line 1279

<?php
function t($string, array $args = array(), array $options = array()) {
  global $language;
  static $custom_strings;

  // Merge in default.
  if (empty($options['langcode'])) {
    $options['langcode'] = isset($language->language) ? $language->language : 'en';
  }
  if (empty($options['context'])) {
    $options['context'] = '';
  }

  // First, check for an array of customized strings. If present, use the array
  // *instead of* database lookups. This is a high performance way to provide a
  // handful of string replacements. See settings.php for examples.
  // Cache the $custom_strings variable to improve performance.
  if (!isset($custom_strings[$options['langcode']])) {
    $custom_strings[$options['langcode']] = variable_get('locale_custom_strings_' . $options['langcode'], array());
  }
  // Custom strings work for English too, even if locale module is disabled.
  if (isset($custom_strings[$options['langcode']][$options['context']][$string])) {
    $string = $custom_strings[$options['langcode']][$options['context']][$string];
  }
  // Translate with locale module if enabled.
  elseif ($options['langcode'] != 'en' && function_exists('locale')) {
    $string = locale($string, $options['context'], $options['langcode']);
  }
  if (empty($args)) {
    return $string;
  }
  else {
    // Transform arguments before inserting them.
    foreach ($args as $key => $value) {
      switch ($key[0]) {
        case '@':
          // Escaped only.
          $args[$key] = check_plain($value);
          break;

        case '%':
        default:
          // Escaped and placeholder.
          $args[$key] = drupal_placeholder($value);
          break;

        case '!':
          // Pass-through.
      }
    }
    return strtr($string, $args);
  }
}
?>