• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/414

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

414 Cards in this Set

  • Front
  • Back
custom_url_rewrite_inbound
"custom_url_rewrite_inbound is not a hook, it's a function you can add to settings.php to alter incoming requests so they map to a Drupal path. This function is called before modules are loaded and the menu system is initialized and it changes..."
custom_url_rewrite_outbound
"custom_url_rewrite_outbound is not a hook, it's a function you can add to settings.php to alter all links generated by Drupal. This function is called from url(). This function is called very frequently (100+ times per page) so performance..."
hook_access
Define access restrictions.
hook_actions_delete
Execute code after an action is deleted.
hook_action_info
Declare information about one or more Drupal actions.
hook_action_info_alter
Alter the actions declared by another module.
hook_block
Declare a block or set of blocks.
hook_boot
"Perform setup tasks. See also, hook_init."
hook_comment
Respond to comment actions.
hook_cron
Perform periodic actions.
hook_db_rewrite_sql
"Rewrite database queries, usually for access control."
hook_delete
Respond to node deletion.
hook_disable
Perform necessary actions before module is disabled.
hook_elements
Allows modules to declare their own Forms API element types and specify their default values.
hook_enable
Perform necessary actions after module is enabled.
hook_exit
Perform cleanup tasks.
hook_file_download
Control access to private file downloads and specify HTTP headers.
hook_filter
Define content filters.
hook_filter_tips
Provide tips for using filters.
hook_flush_caches
Add a list of cache tables to be cleared.
hook_footer
Insert closing HTML.
hook_form
Display a node editing form.
hook_forms
Map form_ids to builder functions.
hook_form_alter
Perform alterations before a form is rendered.
hook_form_FORM_ID_alter
Provide a form-specific alteration instead of the global hook_form_alter().
hook_help
Provide online user help.
hook_hook_info
Expose a list of triggers (events) that users can assign actions to.
hook_init
"Perform setup tasks. See also, hook_boot."
hook_insert
Respond to node insertion.
hook_install
"Install the current version of the database schema, and any other setup tasks."
hook_link
Define internal Drupal links.
hook_link_alter
"Perform alterations before links on a node are rendered. One popular use of this hook is to modify/remove links from other modules. If you want to add a link to the links section of a node, use hook_link instead."
hook_load
Load node-type-specific information.
hook_locale
Allows modules to define their own text groups that can be translated.
hook_mail
Prepare a message based on parameters; called from drupal_mail().
hook_mail_alter
"Alter any aspect of email sent by Drupal. You can use this hook to add a common site footer to all outgoing email, add extra header fields, and/or modify the email in any way. HTML-izing the outgoing email is one possibility. See also drupal_mail()."
hook_menu
Define menu items and page callbacks.
hook_menu_alter
Alter the data being saved to the {menu_router} table after hook_menu is invoked.
hook_menu_link_alter
Alter the data being saved to the {menu_links} table by menu_link_save().
hook_nodeapi
Act on nodes defined by other modules.
hook_node_access_records
Set permissions for a node to be written to the database.
hook_node_grants
Inform the node access system what permissions the user has.
hook_node_info
Define module-provided node types.
hook_node_operations
Add mass node operations.
hook_node_type
Act on node type changes.
hook_perm
Define user permissions.
hook_ping
Ping another server.
hook_prepare
This is a hook used by node modules. It is called after load but before the node is shown on the add/edit form.
hook_profile_alter
Alter profile items before they are rendered.
hook_requirements
Check installation requirements and do status reporting.
hook_schema
Define the current version of the database schema.
hook_schema_alter
Perform alterations to existing database schemas.
hook_search
Define a custom search routine.
hook_search_preprocess
Preprocess text for the search index.
hook_system_info_alter
Alter the information parsed from module and theme .info files
hook_taxonomy
Act on taxonomy changes.
hook_term_path
Allows modules to provide an alternative path for the terms it manages.
hook_theme
Register a module (or theme's) theme implementations.
hook_theme_registry_alter
Alter the theme registry information returned from hook_theme().
hook_translated_menu_link_alter
"Alter a menu link after it's translated, but before it's rendered."
hook_translation_link_alter
Perform alterations on translation links.
hook_uninstall
Remove any tables or variables that the module sets.
hook_update
Respond to node updating.
hook_update_index
Update Drupal's full-text index for this module.
hook_update_last_removed
Return a number which is no longer available as hook_update_N().
hook_update_N
Perform a single update.
hook_update_projects_alter
Alter the list of projects before fetching data and comparing versions.
hook_update_status_alter
Alter the information about available updates for projects.
hook_user
Act on user account actions.
hook_user_operations
Add mass user operations.
hook_validate
Verify a node editing form.
hook_view
Display a node.
hook_watchdog
Log an event message
hook_xmlrpc
Register XML-RPC callbacks.
module_hook
Determine whether a module implements a hook.
module_implements
Determine which modules are implementing a hook.
module_invoke
Invoke a hook in a particular module.
module_invoke_all
Invoke a hook in all enabled modules that implement it.
db_affected_rows
Determine the number of rows changed by the preceding query.
db_check_setup
Verify if the database is set up correctly.
db_column_exists
Check if a column exists in the given table.
db_connect
Initialize a database connection.
db_decode_blob
Returns text from a Binary Large OBject value. In case of PostgreSQL decodes data after select from bytea field.
db_distinct_field
Adds the DISTINCT flag to the supplied query if a DISTINCT doesn't already exist in the query. Returns the altered query.
db_encode_blob
Returns a properly formatted Binary Large OBject value. In case of PostgreSQL encodes data for insert into bytea field.
db_error
Determine whether the previous query caused an error.
db_escape_string
"Prepare user input for use in a database query, preventing SQL injection attacks. Note: This function requires PostgreSQL 7.2 or later."
db_escape_table
"Restrict a dynamic table, column or constraint name to safe characters."
db_fetch_array
Fetch one result row from the previous query as an array.
db_fetch_object
Fetch one result row from the previous query as an object.
db_is_active
Returns a boolean depending on the availability of the database.
db_last_insert_id
Returns the last insert id. This function is thread safe.
db_lock_table
Lock a table. This function automatically starts a transaction.
db_placeholders
Generate placeholders for an array of query arguments of a single type.
db_prefix_tables
Append a database prefix to all tables in a query.
db_query
Runs a basic query in the active database.
db_query_range
Runs a limited-range query in the active database.
db_query_temporary
Runs a SELECT query and stores its results in a temporary table.
db_result
Return an individual result field from the previous query.
db_rewrite_sql
"Rewrites node, taxonomy and comment queries. Use it for listing queries. Do not use FROM table1, table2 syntax, use JOIN instead."
db_set_active
Activate a database for future queries.
db_status_report
Report database status.
db_table_exists
Check if a table exists.
db_unlock_tables
Unlock all locked tables. This function automatically commits a transaction.
db_version
Returns the version of the database server currently in use.
pager_query
Perform a paged database query.
tablesort_sql
Create an SQL sort clause.
update_sql
Perform an SQL query and return success or failure.
_db_error_page
Helper function to show fatal database errors.
_db_query
Helper function for db_query().
_db_query_callback
Helper function for db_query().
_db_rewrite_sql
Helper function for db_rewrite_sql.
drupal_help_arg
Generates elements for the $arg array in the help hook.
menu_cache_clear
Clears the cached cached data for a single named menu.
menu_cache_clear_all
Clears all cached menu data. This should be called any time broad changes might have been made to the router items or menu links.
menu_execute_active_handler
Execute the page callback associated with the current path
menu_get_active_breadcrumb
"Get the breadcrumb for the current page, as determined by the active trail."
menu_get_active_help
Returns the help associated with the active menu item.
menu_get_active_menu_name
Get the active menu for the current page - determines the active trail.
menu_get_active_title
"Get the title of the current page, as determined by the active trail."
menu_get_active_trail
Gets the active trail (path to root menu root) of the current page.
menu_get_ancestors
Returns the ancestors (and relevant placeholders) for any given path.
menu_get_item
Get a router item.
menu_get_names
Build a list of named menus.
menu_get_object
Get a loaded object from a router item.
menu_link_children_relative_depth
Find the depth of an item's children relative to its depth.
menu_link_delete
Delete one or several menu links.
menu_link_load
"Get a menu link by its mlid, access checked and link translated for rendering."
menu_link_maintain
"Insert, update or delete an uncustomized menu link related to a module."
menu_link_save
Save a menu link.
menu_list_system_menus
Return an array containing the names of system-defined (default) menus.
menu_local_tasks
Collects the local tasks (tabs) for a given level.
menu_navigation_links
Return an array of links for a navigation menu.
menu_path_is_external
Returns TRUE if a path is external (e.g.http://example.com).
menu_primary_links
Return an array of links to be rendered as the Primary links.
menu_primary_local_tasks
Returns the rendered local tasks at the top level.
menu_rebuild
(Re)populate the database tables used by various menu functions.
menu_router_build
"Collect, alter and store the menu definitions."
menu_secondary_links
Return an array of links to be rendered as the Secondary links.
menu_secondary_local_tasks
Returns the rendered local tasks at the second level.
menu_set_active_item
"Set the active path, which determines which page is loaded."
menu_set_active_menu_name
Set (or get) the active menu for the current page - determines the active trail.
menu_set_active_trail
Sets or gets the active trail (path to root menu root) of the current page.
menu_set_item
Replaces the statically cached item for a given path.
menu_tab_root_path
"Returns the router path, or the path of the parent tab of a default local task."
menu_tree
Render a menu tree based on the current path.
menu_tree_all_data
Get the data structure representing a named menu tree.
menu_tree_check_access
Check access and perform other dynamic operations for each link in the tree.
menu_tree_collect_node_links
Recursive helper function - collect node links.
menu_tree_data
Build the data representing a menu tree.
menu_tree_output
Returns a rendered menu tree.
menu_tree_page_data
"Get the data structure representing a named menu tree, based on the current page."
menu_unserialize
"The menu system uses serialized arrays stored in the database for arguments. However, often these need to change according to the current path. This function unserializes such an array and does the necessary change."
menu_valid_path
Validates the path of a menu link being created or edited.
theme_menu_item
Generate the HTML output for a menu item and submenu.
theme_menu_item_link
Generate the HTML output for a single menu link.
theme_menu_local_task
Generate the HTML output for a single local task link.
theme_menu_local_tasks
Returns the rendered local tasks. The default implementation renders them as tabs.
theme_menu_tree
Generate the HTML output for a menu tree
_menu_check_access
Check access to a menu item using the access callback
_menu_clear_page_cache
Helper function to clear the page and block caches at most twice per page load.
_menu_delete_item
Helper function for menu_link_delete; deletes a single menu link.
_menu_find_router_path
Find the router path which will serve this path.
_menu_item_localize
Localize the router item title using t() or another callback.
_menu_link_build
Builds a link from a router item.
_menu_link_map_translate
This function translates the path elements in the map using any to_arg helper function. These functions take an argument and return an object. Seehttp://drupal.org/node/109153 for more information.
_menu_link_move_children
Update the children of a menu link that's being moved.
_menu_link_parents_set
Helper function that sets the p1..p9 values for a menu link being saved.
_menu_link_translate
This function is similar to _menu_translate() but does link-specific preparation such as always calling to_arg functions.
_menu_load_objects
Loads objects into the map as defined in the $item['load_functions'].
_menu_navigation_links_rebuild
Helper function to build menu links for the items in the menu router.
_menu_router_build
Helper function to build the router table based on the data from hook_menu.
_menu_router_cache
Helper function to store the menu router if we have it in memory.
_menu_set_expanded_menus
Helper function to update a list of menus with expanded items
_menu_site_is_offline
Checks whether the site is off-line for maintenance.
_menu_translate
Handles dynamic path translation and menu access control.
_menu_tree_check_access
Recursive helper function formenu_tree_check_access()
_menu_tree_cid
Helper function - compute the real cache ID for menu tree data.
_menu_tree_data
Recursive helper function to build the data representing a menu tree.
_menu_update_parental_status
Check and update the has_children status for the parent of a link.
date_validate
"Validates the date type to stop dates like February 30, 2006."
drupal_execute
"Retrieves a form using a form_id, populates it with $form_state['values'], processes it, and returns any validation errors encountered. This function is the programmatic counterpart to drupal_get_form()."
drupal_get_form
"Retrieves a form from a constructor function, or from the cache if the form was built in a previous page-load. The form is then passed on for processing, after and rendered for display if necessary."
drupal_prepare_form
"Prepares a structured form array by adding required elements, executing any hook_form_alter functions, and optionally inserting a validation token to prevent tampering."
drupal_process_form
"This function is the heart of form API. The form gets built, validated and in appropriate cases, submitted."
drupal_rebuild_form
"Retrieves a form, caches it and processes it with an empty $_POST."
drupal_redirect_form
Redirect the user to a URL after a form has been processed.
drupal_render_form
Renders a structured form array into themed HTML.
drupal_retrieve_form
Retrieves the structured array that defines a given form.
drupal_validate_form
Validates user-submitted form data from the $form_state using the validate functions defined in a structured form array.
expand_date
Roll out a single date element.
expand_password_confirm
Expand a password_confirm field into two text boxes.
expand_radios
"Roll out a single radios element to a list of radios, using the options array as index."
form_builder
"Walk through the structured form array, adding any required properties to each element and mapping the incoming $_POST data to the proper elements."
form_clean_id
Prepare an HTML ID attribute string for a form item.
form_error
Flag an element as having an error.
form_execute_handlers
"A helper function used to execute custom validation and submission handlers for a given form. Button-specific handlers are checked first. If none exist, the function falls back to form-level handlers."
form_expand_ahah
"Add AHAH information about a form element to the page to communicate with javascript. If #ahah[path] is set on an element, this additional javascript is added to the page header to attach the AHAH behaviors. See ahah.js for more information."
form_get_cache
Fetch a form from cache.
form_get_error
Return the error message filed against the form with the specified name.
form_get_errors
Return an associative array of all errors.
form_get_options
Traverses a select element's #option array looking for any values that hold the given key. Returns an array of indexes that match.
form_set_cache
Store a form in the cache.
form_set_error
File an error against a form element.
form_set_value
Change submitted form values during the form processing cycle.
form_type_checkboxes_value
Helper function to determine the value for a checkboxes form element.
form_type_checkbox_value
Helper function to determine the value for a checkbox form element.
form_type_image_button_value
Helper function to determine the value for an image button form element.
form_type_password_confirm_value
Helper function to determine the value for a password_confirm form element.
form_type_select_value
Helper function to determine the value for a select form element.
form_type_textfield_value
Helper function to determine the value for a textfield form element.
form_type_token_value
Helper function to determine the value for form's token value.
map_month
Helper function for usage with drupal_map_assoc to display month names.
password_confirm_validate
Validate password_confirm element.
process_weight
Expand weight elements into selects.
theme_button
Theme a form button.
theme_checkbox
Format a checkbox.
theme_checkboxes
Format a set of checkboxes.
theme_date
Format a date selection element.
theme_fieldset
Format a group of form items.
theme_file
Format a file upload field.
theme_form
Format a form.
theme_form_element
Return a themed form element.
theme_hidden
Format a hidden form field.
theme_image_button
Theme a form image button.
theme_item
Format a form item.
theme_password
Format a password field.
theme_password_confirm
Format a password_confirm item.
theme_radio
Format a radio button.
theme_radios
Format a set of radio buttons.
theme_select
Format a dropdown menu or scrolling selection box.
theme_submit
Theme a form submit button.
theme_textarea
Format a textarea.
theme_textfield
Format a textfield.
theme_token
Format a form token.
weight_value
"If no default value is set for weight select boxes, use 0."
_element_info
Retrieve the default properties for the defined element type.
_form_builder_handle_input_element
"Populate the #value and #name properties of input elements so they can be processed and rendered. Also, execute any #process handlers attached to a specific element."
_form_builder_ie_cleanup
"In IE, if only one submit button is present, AND the enter key is used to submit the form, no form value is sent for it and our normal button detection code will never detect a match. We call this function after all other button-detection is complete..."
_form_button_was_clicked
Helper function to handle the sometimes-convoluted logic of button click detection.
_form_set_class
Sets a form element's class attribute.
_form_set_value
Helper function for form_set_value().
_form_validate
"Performs validation on form elements. First ensures required fields are completed, #maxlength is not exceeded, and selected options were in the list of options given to the user. Then calls user-defined validators."
file_check_directory
"Check that the directory exists and is writable. Directories need to have execute permissions to be considered a directory by FTP servers, etc."
file_check_location
Check if a file is really located inside $directory. Should be used to make sure a file specified is really located within the directory to prevent exploits.
file_check_path
"Checks path to see if it is a directory, or a dir/file."
file_copy
Copies a file to a new location. This is a powerful function that in many ways performs like an advanced version of copy().
file_create_filename
"Create a full file path from a directory and filename. If a file with the specified name already exists, an alternative will be used."
file_create_path
"Make sure the destination is a complete path and resides in the file system directory, if it is not prepend the file system directory."
file_create_url
Create the download path to a file.
file_delete
Delete a file.
file_destination
Determines the destination path for a file depending on how replacement of existing files should be handled.
file_directory_path
Determine the default 'files' directory.
file_directory_temp
Determine the default temporary directory.
file_download
Call modules that implement hook_file_download() to find out if a file is accessible and what headers it should be transferred with. If a module returns -1drupal_access_denied() will be returned. If one or more modules returned headers the download...
file_get_mimetype
"Determine an Internet Media Type, or MIME type from a filename."
file_move
Moves a file to a new location.
file_munge_filename
"Munge the filename as needed for security purposes. For instance the file name ""exploit.php.pps"" would become ""exploit.php_.pps""."
file_save_data
Save a string to the specified destination.
file_save_upload
Saves a file upload to a new location. The source file is validated as a proper upload and handled as such.
file_scan_directory
Finds all files that match a given mask in a given directory. Directories and files beginning with a period are excluded; this prevents hidden files and directories (such as SVN working directories) from being scanned.
file_set_status
Set the status of a file.
file_space_used
Determine total disk space used by a single user or the whole filesystem.
file_transfer
Transfer file using http to client. Pipes a file through Drupal to the client.
file_unmunge_filename
Undo the effect of upload_munge_filename().
file_upload_max_size
Determine the maximum file upload size by querying the PHP settings.
file_validate_extensions
Check that the filename ends with an allowed extension. This check is not enforced for the user #1.
file_validate_image_resolution
If the file is an image verify that its dimensions are within the specified maximum and minimum dimensions. Non-image files will be ignored.
file_validate_is_image
Check that the file is recognized by image_get_info() as an image.
file_validate_name_length
Check for files with names longer than we can store in the database.
file_validate_size
Check that the file's size is below certain limits. This check is not enforced for the user #1.
do_search
Do a query on the full-text search index for a word or words.
hook_search
Define a custom search routine.
hook_update_index
Update Drupal's full-text index for this module.
search_box
Form builder; Output a search form for the search block and the theme's search box.
search_box_form_submit
Process a block search form submission.
search_data
"Perform a standard search on the given keys, and return the formatted results."
search_excerpt
"Returns snippets from a piece of text, with certain keywords highlighted. Used for formatting search results."
search_form
Render a search form.
search_index
Update the full-text search index for a particular item.
template_preprocess_search_block_form
Process variables for search-block-form.tpl.php.
template_preprocess_search_theme_form
Process variables for search-theme-form.tpl.php.
hook_access
Define access restrictions.
hook_node_access_records
Set permissions for a node to be written to the database.
hook_node_grants
Inform the node access system what permissions the user has.
node_access
Determine whether the current user may perform the given operation on the specified node.
node_access_acquire_grants
"This function will call module invoke to get a list of grants and then write them to the database. It is called at node save, and should be called by modules whenever something other than a node_save causes the permissions on a node to change."
node_access_grants
Fetch an array of permission IDs granted to the given user ID.
node_access_needs_rebuild
"Flag / unflag the node access grants for rebuilding, or read the current value of the flag."
node_access_rebuild
Rebuild the node access database. This is occasionally needed by modules that make system-wide changes to access levels.
node_access_view_all_nodes
Determine whether the user has a global viewing grant for all nodes.
node_access_write_grants
"This function will write a list of grants to the database, deleting any pre-existing grants. If a realm is provided, it will only delete grants from that realm, but it will always delete a grant from the 'all' realm. Modules which utilize..."
node_db_rewrite_sql
Implementation of hook_db_rewrite_sql
_node_access_join_sql
Generate an SQL join clause for use in fetching a node listing.
_node_access_rebuild_batch_finished
Post-processing for node_access_rebuild_batch.
_node_access_rebuild_batch_operation
Batch operation for node_access_rebuild_batch.
_node_access_where_sql
Generate an SQL where clause for use in fetching a node listing.
phptemplate_menu_local_tasks
Returns the rendered local tasks. The default implementation renders them as tabs. Overridden to split the secondary tasks.
theme_admin_block
This function formats an administrative block for display.
theme_admin_block_content
This function formats the content of an administrative block.
theme_admin_page
This function formats an administrative page for viewing.
theme_aggregator_page_opml
Theme the OPML feed output.
theme_aggregator_page_rss
Theme the RSS output.
theme_blocks
Return a set of blocks available for the current user.
theme_book_admin_table
Theme function for the book administration page form.
theme_book_title_link
Generate the HTML output for a link to a book title when used as a block title.
theme_box
Return a themed box.
theme_breadcrumb
Return a themed breadcrumb trail.
theme_button
Theme a form button.
theme_checkbox
Format a checkbox.
theme_checkboxes
Format a set of checkboxes.
theme_closure
Execute hook_footer() which is run at the end of the page right before the close of the body tag.
theme_color_scheme_form
Theme color form.
theme_comment_admin_overview
Theme the comment admin form.
theme_comment_controls
Theme comment controls box where the user can change the default display mode and display order of comments.
theme_comment_flat_collapsed
Theme comment flat collapsed view.
theme_comment_flat_expanded
Theme comment flat expanded view.
theme_comment_post_forbidden
"Theme a ""you can't post comments"" notice."
theme_comment_submitted
"Theme a ""Submitted by ..."" notice."
theme_comment_thread_collapsed
Theme comment thread collapsed view.
theme_comment_thread_expanded
Theme comment thread expanded view.
theme_comment_view
Theme a single comment block.
theme_date
Format a date selection element.
theme_dblog_filters
Theme dblog administration filter selector.
theme_feed_icon
Return code that emits an feed icon.
theme_fieldset
Format a group of form items.
theme_file
Format a file upload field.
theme_filter_admin_order
Theme filter order configuration form.
theme_filter_admin_overview
Theme the admin overview form.
theme_filter_tips
Format a set of filter tips.
theme_filter_tips_more_info
Format a link to the more extensive filter tips.
theme_form
Format a form.
theme_form_element
Return a themed form element.
theme_help
Return a themed help message.
theme_hidden
Format a hidden form field.
theme_image
Return a themed image.
theme_image_button
Theme a form image button.
theme_indentation
Create a standard indentation div. Used for drag and drop tables.
theme_item
Format a form item.
theme_item_list
Return a themed list of items.
theme_links
Return a themed set of links.
theme_locale_languages_overview_form
Theme the language overview form.
theme_mark
"Return a themed marker, useful for marking new or updated content."
theme_menu_item
Generate the HTML output for a menu item and submenu.
theme_menu_item_link
Generate the HTML output for a single menu link.
theme_menu_local_task
Generate the HTML output for a single local task link.
theme_menu_local_tasks
Returns the rendered local tasks. The default implementation renders them as tabs.
theme_menu_overview_form
Theme the menu overview form into a table.
theme_menu_tree
Generate the HTML output for a menu tree
theme_more_help_link
Returns code that emits the 'more help'-link.
theme_more_link
Returns code that emits the 'more' link used on blocks.
theme_node_add_list
Display the list of available node types for node creation.
theme_node_admin_nodes
Theme node administration overview.
theme_node_filters
Theme node administration filter selector.
theme_node_filter_form
Theme node administration filter form.
theme_node_form
Present a node submission form.
theme_node_list
Format a listing of links to nodes.
theme_node_log_message
Theme a log message.
theme_node_preview
Display a node preview for display during node creation and editing.
theme_node_search_admin
Theme the content ranking part of the search settings admin page.
theme_node_submitted
"Format the ""Submitted by username on date/time"" for each node"
theme_pager
Format a query pager.
theme_pager_first
"Format a ""first page"" link."
theme_pager_last
"Format a ""last page"" link."
theme_pager_link
Format a link to a specific query result page.
theme_pager_next
"Format a ""next page"" link."
theme_pager_previous
"Format a ""previous page"" link."
theme_password
Format a password field.
theme_password_confirm
Format a password_confirm item.
theme_placeholder
Formats text for emphasized display in a placeholder inside a sentence. Used automatically by t().
theme_poll_choices
Theme the admin poll form for choices.
theme_profile_admin_overview
Theme the profile field overview into a drag and drop enabled table.
theme_progress_bar
Return a themed progress bar.
theme_radio
Format a radio button.
theme_radios
Format a set of radio buttons.
theme_select
Format a dropdown menu or scrolling selection box.
theme_status_messages
Return a themed set of status and/or error messages. The messages are grouped by type.
theme_status_report
Theme requirements status report.
theme_submenu
"Return a themed submenu, typically displayed under the tabs."
theme_submit
Theme a form submit button.
theme_syslog_format
Format a system log entry.
theme_system_admin_by_module
Theme output of the dashboard page.
theme_system_modules
Theme callback for the modules form.
theme_system_modules_uninstall
Themes a table of currently disabled modules.
theme_system_powered_by
Format the Powered by Drupal text.
theme_system_themes_form
Theme function for the system themes form.
theme_system_theme_select_form
Theme the theme select form.
theme_table
Return a themed table.
theme_tablesort_indicator
Return a themed sort icon.
theme_table_select_header_cell
Returns a header cell for tables that have a select all functionality.
theme_task_list
Return a themed list of maintenance tasks to perform.
theme_taxonomy_overview_terms
Theme the terms overview as a sortable list of terms.
theme_taxonomy_overview_vocabularies
Theme the vocabulary overview as a sortable list of vocabularies.
theme_taxonomy_term_page
Render a taxonomy term page HTML output.
theme_taxonomy_term_select
Format the selection field for choosing terms (by deafult the default selection field is used).
theme_textarea
Format a textarea.
theme_textfield
Format a textfield.
theme_token
Format a form token.
theme_trigger_display
Display actions assigned to this hook-op combination in a table.
theme_update_report
Theme project status report.
theme_update_version
Theme the version display of a project.
theme_upload_attachments
Displays file attachments in table
theme_upload_form_current
Theme the attachments list.
theme_upload_form_new
Theme the attachment form. Note: required to output prefix/suffix.
theme_username
Format a username.
theme_user_admin_account
Theme user administration overview.
theme_user_admin_new_role
Theme the new-role form.
theme_user_admin_perm
Theme the administer permissions page.
theme_user_filters
Theme user administration filter selector.
theme_user_filter_form
Theme user administration filter form.
theme_user_list
Make a list of users.
theme_user_profile
Theme a user page.
theme_user_signature
Theme output of user signature.
theme_xml_icon
Return code that emits an XML icon.