theme

Versions
5 – 6
theme()
7
theme($hook, $variables = array())

Generate the themed output.

All requests for theme hooks must go through this function. It examines the request and routes it to the appropriate theme function. The theme registry is checked to determine which implementation to use, which may be a function or a template.

If the implementation is a function, it is executed and its return value passed along.

If the implementation is a template, the arguments are converted to a $variables array. This array is then modified by the module implementing the hook, theme engine (if applicable) and the theme. The following functions may be used to modify the $variables array. They are processed in this order when available:

  • template_preprocess(&$variables) This sets a default set of variables for all template implementations.
  • template_preprocess_HOOK(&$variables) This is the first preprocessor called specific to the hook; it should be implemented by the module that registers it.
  • MODULE_preprocess(&$variables) This will be called for all templates; it should only be used if there is a real need. It's purpose is similar to template_preprocess().
  • MODULE_preprocess_HOOK(&$variables) This is for modules that want to alter or provide extra variables for theming hooks not registered to itself. For example, if a module named "foo" wanted to alter the $submitted variable for the hook "node" a preprocess function of foo_preprocess_node() can be created to intercept and alter the variable.
  • ENGINE_engine_preprocess(&$variables) This function should only be implemented by theme engines and exists so that it can set necessary variables for all hooks.
  • ENGINE_engine_preprocess_HOOK(&$variables) This is the same as the previous function, but it is called for a single theming hook.
  • ENGINE_preprocess(&$variables) This is meant to be used by themes that utilize a theme engine. It is provided so that the preprocessor is not locked into a specific theme. This makes it easy to share and transport code but theme authors must be careful to prevent fatal re-declaration errors when using sub-themes that have their own preprocessor named exactly the same as its base theme. In the default theme engine (PHPTemplate), sub-themes will load their own template.php file in addition to the one used for its parent theme. This increases the risk for these errors. A good practice is to use the engine name for the base theme and the theme name for the sub-themes to minimize this possibility.
  • ENGINE_preprocess_HOOK(&$variables) The same applies from the previous function, but it is called for a specific hook.
  • THEME_preprocess(&$variables) These functions are based upon the raw theme; they should primarily be used by themes that do not use an engine or by sub-themes. It serves the same purpose as ENGINE_preprocess().
  • THEME_preprocess_HOOK(&$variables) The same applies from the previous function, but it is called for a specific hook.
There are two special variables that these hooks can set: 'template_file' and 'template_files'. These will be merged together to form a list of 'suggested' alternate template files to use, in reverse order of priority. template_file will always be a higher priority than items in template_files. theme() will then look for these files, one at a time, and use the first one that exists.

Parameters

$hook The name of the theme function to call. May be an array, in which case the first hook that actually has an implementation registered will be used. This can be used to choose 'fallback' theme implementations, so that if the specific theme hook isn't implemented anywhere, a more generic one will be used. This can allow themes to create specific theme implementations for named objects.

... Additional arguments to pass along to the theme function.

Return value

An HTML string that generates the themed output.

▾ 949 functions call theme()

admin_menu_adjust_items in contrib/admin_menu/admin_menu.inc
Add some hard-coded features for better user experience.
advanced_help_get_tree in contrib/advanced_help/advanced_help.module
Build a tree of advanced help topics.
advanced_help_index_page in contrib/advanced_help/advanced_help.module
Page callback to view the advanced help topic index.
advanced_help_search_view in contrib/advanced_help/advanced_help.module
Page callback for advanced help search.
advanced_help_topic_page in contrib/advanced_help/advanced_help.module
Page callback to view a help topic.
advanced_help_view_topic in contrib/advanced_help/advanced_help.module
Load and render a help topic.
aggregator_block in core/modules/aggregator/aggregator.module
Implementation of hook_block().
aggregator_categorize_items in core/modules/aggregator/aggregator.pages.inc
Form builder; build the page list form.
aggregator_page_categories in core/modules/aggregator/aggregator.pages.inc
Menu callback; displays all the categories used by the aggregator.
aggregator_page_opml in core/modules/aggregator/aggregator.pages.inc
Menu callback; generates an OPML representation of all feeds.
aggregator_page_rss in core/modules/aggregator/aggregator.pages.inc
Menu callback; generate an RSS 0.92 feed of aggregator items or categories.
aggregator_page_source in core/modules/aggregator/aggregator.pages.inc
Menu callback; displays all the items captured from a particular feed.
aggregator_page_sources in core/modules/aggregator/aggregator.pages.inc
Menu callback; displays all the feeds used by the aggregator.
aggregator_view in core/modules/aggregator/aggregator.admin.inc
Displays the aggregator administration page.
ahah_example_autocheckboxes_callback in contrib/examples/ahah_example/autocheckboxes.inc
Callback for autocheckboxes. Process the form with the number of checkboxes we want to provide.
ahah_example_autotextfields_callback in contrib/examples/ahah_example/autotextfields.inc
ahah_example_dropdown_callback in contrib/examples/ahah_example/dependent_dropdown.inc
The AHAH callback. It processes the form using ahah_example_callback_helper() and then
ahah_example_simple_validation_callback in contrib/examples/ahah_example/ahah_example_simple_validation.inc
Callback for autocheckboxes. Process the form with the number of checkboxes we want to provide.
auto_nodetitle_node_settings_form in contrib/auto_nodetitle/auto_nodetitle.module
Helper function for hook_form_alter() renders the settings per node-type.
backup_migrate_ui_destination_display_files in contrib/backup_migrate/includes/destinations.inc
List the backup files in the given destination.
blog_block in core/modules/blog/blog.module
Implementation of hook_block().
blog_page_last in core/modules/blog/blog.pages.inc
Menu callback; displays a Drupal page containing recent blog entries of all users.
blog_page_user in core/modules/blog/blog.pages.inc
Menu callback; displays a Drupal page containing recent blog entries of a given user.
book_admin_overview in core/modules/book/book.admin.inc
Returns an administrative overview of all books.
book_block in core/modules/book/book.module
Implementation of hook_block().
book_export_html in core/modules/book/book.pages.inc
This function is called by book_export() to generate HTML for export.
book_nodeapi in core/modules/book/book.module
Implementation of hook_nodeapi().
book_node_export in core/modules/book/book.module
Generates printer-friendly HTML for a node. See alsobook_export_traverse()
book_render in core/modules/book/book.pages.inc
Menu callback; prints a listing of all books.
calendar_block in contrib/calendar/calendar.module
implementation of hook_block()
calendar_build_day in contrib/calendar/includes/calendar.inc
Build the contents of a single day for the $rows results.
calendar_build_week in contrib/calendar/includes/calendar.inc
Build one week row.
ca_action_drupal_set_message_form in contrib/ubercart/ca/ca.ca.inc
@see ca_action_drupal_set_message()
ca_admin in contrib/ubercart/ca/ca.admin.inc
Display the administration page that lets you add and modify predicates.
ca_build_email_form in contrib/ubercart/ca/ca.ca.inc
Build an email settings form.
chameleon_comment in core/themes/chameleon/chameleon.theme
chameleon_node in core/themes/chameleon/chameleon.theme
chameleon_page in core/themes/chameleon/chameleon.theme
ckeditor_profile_overview in contrib/ckeditor/includes/ckeditor.admin.inc
Controller for ckeditor profiles.
color_form_alter in core/modules/color/color.module
Implementation of hook_form_alter().
comment_admin_overview in core/modules/comment/comment.admin.inc
Form builder; Builds the comment overview form for the admin.
comment_block in core/modules/comment/comment.module
Implementation of hook_block().
comment_form in core/modules/comment/comment.module
Generate the basic commenting form, for appending to a node or display on a separate page.
comment_form_add_preview in core/modules/comment/comment.module
Form builder; Generate and validate a comment preview form.
comment_form_box in core/modules/comment/comment.module
Theme the comment form box.
comment_link in core/modules/comment/comment.module
Implementation of hook_link().
comment_links in core/modules/comment/comment.module
Build command links for a comment (e.g.\ edit, reply, delete) with respect to the current user's access permissions.
comment_render in core/modules/comment/comment.module
Renders comment(s).
comment_reply in core/modules/comment/comment.pages.inc
This function is responsible for generating a comment reply form. There are several cases that have to be handled, including: replies to comments replies to nodes attempts to reply to nodes that can no longer accept comments respecting access...
contact_admin_categories in core/modules/contact/contact.admin.inc
Categories/list tab.
contact_mail_user in core/modules/contact/contact.pages.inc
contemplate_admin in contrib/contemplate/contemplate.module
Admin page... list out the node types
contemplate_cck_get_fields in contrib/contemplate/contemplate.module
contemplate_help in contrib/contemplate/contemplate.module
Implementation of hook_help().
content_add_more_js in contrib/cck/includes/content.node_form.inc
Menu callback for AHAH addition of new empty widgets.
content_fields_list in contrib/cck/includes/content.admin.inc
Menu callback; lists all defined fields for quick reference.
content_field_overview_form in contrib/cck/includes/content.admin.inc
Menu callback; listing of fields for a content type.
content_field_wrapper_post_render in contrib/cck/content.module
Hide specified fields from the $content variable in node templates.
content_format in contrib/cck/content.module
Format a field item for display.
content_types_overview in contrib/cck/includes/content.admin.inc
Menu callback; replacement for node_overview_types().
ctools_access_admin_render_table in contrib/ctools/includes/context-access-admin.inc
Render the table. This is used both to render it initially and to rerender it upon ajax response.
ctools_ajax_image_button in contrib/ctools/includes/ajax.inc
Render an image as a button link. This will automatically apply an AJAX class to the link and add the appropriate javascript to make this happen.
ctools_comment_render in contrib/ctools/plugins/content_types/node_context/node_comments.inc
This function is a somewhat stripped down version of comment_render that removes a bunch of cruft that we both don't need, and makes it difficult to modify this.
ctools_context_ajax_item_add in contrib/ctools/includes/context-admin.inc
Ajax entry point to add an context
ctools_context_ajax_item_edit in contrib/ctools/includes/context-admin.inc
Ajax entry point to edit an item
ctools_context_handler_edit_context in contrib/ctools/includes/context-task-handler.inc
Edit contexts that go with this panel.
ctools_context_handler_render in contrib/ctools/includes/context-task-handler.inc
Render a context type task handler given a list of handlers attached to a type.
ctools_context_user_settings_form in contrib/ctools/plugins/contexts/user.inc
ctools_custom_content_type_edit_form in contrib/ctools/plugins/content_types/custom/custom.inc
Returns an edit form for the custom type.
ctools_menu_get_active_help in contrib/ctools/includes/menu.inc
CTools' replacement for ctools_menu_get_active_help()
ctools_menu_local_tasks in contrib/ctools/includes/menu.inc
CTools' variant of menu_local_tasks.
ctools_modal_add_js in contrib/ctools/includes/modal.inc
ctools_modal_form_render in contrib/ctools/includes/modal.inc
Render a form into an AJAX display.
ctools_modal_image_button in contrib/ctools/includes/modal.inc
Render an image as a button link. This will automatically apply an AJAX class to the link and add the appropriate javascript to make this happen.
ctools_node_attachments_content_type_render in contrib/ctools/plugins/content_types/node_context/node_attachments.inc
ctools_node_author_content_type_render in contrib/ctools/plugins/content_types/node_context/node_author.inc
Render the custom content type.
ctools_node_book_nav_content_type_render in contrib/ctools/plugins/content_types/node_context/node_book_nav.inc
ctools_node_content_render_node in contrib/ctools/plugins/content_types/node_context/node_content.inc
ctools_node_links_render_links in contrib/ctools/plugins/content_types/node_context/node_links.inc
ctools_node_terms_content_type_render in contrib/ctools/plugins/content_types/node_context/node_terms.inc
Render the node_terms content type.
ctools_page_breadcrumb_content_type_render in contrib/ctools/plugins/content_types/page/page_breadcrumb.inc
Output function for the 'page_breadcrumb' content type.
ctools_page_help_content_type_render in contrib/ctools/plugins/content_types/page/page_help.inc
Output function for the 'page_help' content type.
ctools_page_messages_content_type_render in contrib/ctools/plugins/content_types/page/page_messages.inc
Output function for the 'page_messages' content type.
ctools_page_primary_links_content_type_render in contrib/ctools/plugins/content_types/page/page_primary_links.inc
Output function for the 'page_primary_links' content type.
ctools_page_secondary_links_content_type_render in contrib/ctools/plugins/content_types/page/page_secondary_links.inc
Output function for the 'page_secondary_links' content type.
ctools_page_tabs_content_type_render in contrib/ctools/plugins/content_types/page/page_tabs.inc
Output function for the 'page_tabs' content type.
ctools_plugin_example_explanation_page in contrib/ctools/ctools_plugin_example/ctools_plugin_example.module
Just provide an explanation page for the admin section
ctools_profile_fields_content_type_render in contrib/ctools/plugins/content_types/user_context/profile_fields.inc
'Render' callback for the 'profile fields' content type.
ctools_stylizer_print_style_icon in contrib/ctools/includes/stylizer.inc
Render the icon for a style base.
ctools_term_list_content_type_render in contrib/ctools/plugins/content_types/term_context/term_list.inc
ctools_user_picture_content_type_render in contrib/ctools/plugins/content_types/user_context/user_picture.inc
ctools_user_profile_content_type_render in contrib/ctools/plugins/content_types/user_context/user_profile.inc
Render the user profile content type.
ctools_vocabulary_terms_content_type_render in contrib/ctools/plugins/content_types/vocabulary_context/vocabulary_terms.inc
Output function for the 'vocabulary terms' content type. Outputs a list of terms for the input vocabulary.
ctools_wizard_wrapper in contrib/ctools/includes/wizard.inc
Provide a wrapper around another form for adding multi-step information.
date_api_configure_custom_date_formats in contrib/date/date_api.admin.inc
Allow users to configure custom date formats.
date_combo_validate in contrib/date/date/date_elements.inc
Validate and update a combo element. Don't try this if there were errors before reaching this point.
date_formatter_process in contrib/date/date/date.module
Helper function for creating formatted date arrays from a formatter.
date_parts_element in contrib/date/date_api_elements.inc
Create form elements for one or more date parts.
date_timezone_process in contrib/date/date_api_elements.inc
Create a timezone form element.
date_tools_copy_import_event_form_submit in contrib/date/date_tools/date_tools.module
Event import processing.
date_tools_page in contrib/date/date_tools/date_tools.module
Main Date Tools page
dblog_event in core/modules/dblog/dblog.admin.inc
Menu callback; displays details about a log message.
dblog_overview in core/modules/dblog/dblog.admin.inc
Menu callback; displays a listing of log messages.
dblog_top in core/modules/dblog/dblog.admin.inc
Menu callback; generic function to display a page of the most frequent dblog events of a specified type.
devel_block_switch_user in contrib/devel/devel.module
devel_exit in contrib/devel/devel.module
devel_function_reference in contrib/devel/devel.module
Returns a list of all currently defined user functions in the current request lifecycle, with links their documentation.
devel_generate_taxonomy_data in contrib/devel/devel_generate.inc
devel_node_access_block in contrib/devel/devel_node_access.module
devel_queries in contrib/devel/devel.module
devel_query_table in contrib/devel/devel.module
Adds a table at the bottom of the page cataloguing data on all the database queries that were made to generate the page.
devel_session in contrib/devel/devel.module
Menu callback: display the session.
devel_switch_user_list in contrib/devel/devel.module
devel_variable_page in contrib/devel/devel.module
Menu callback; display all variables.
dna_summary in contrib/devel/devel_node_access.module
drupal_access_denied in core/includes/common.inc
Generates a 403 error if the request is not allowed.
drupal_add_feed in core/includes/common.inc
Add a feed URL for the current page.
drupal_not_found in core/includes/common.inc
Generates a 404 error if the request can not be handled.
drupal_render in core/includes/common.inc
Renders HTML given a structured array tree.
drupal_site_offline in core/includes/common.inc
Generates a site off-line message.
email_mail_page_form_submit in contrib/email/email.module
Process the site-wide contact page form submission.
emaudio_custom_url_audio in contrib/emfield/contrib/emaudio/providers/custom_url.inc
hook emaudio_PROVIDER_audio this actually displays the full/normal-sized video we want, usually on the default page view
emaudio_odeo_audio in contrib/emfield/contrib/emaudio/providers/odeo.inc
Implementation of hook emaudio_odeo_audio().
emaudio_odeo_preview in contrib/emfield/contrib/emaudio/providers/odeo.inc
Implementation of hook emaudio_odeo_preview().
emaudio_podcastalley_audio in contrib/emfield/contrib/emaudio/providers/podcastalley.inc
Implementation of hook emaudio_podcastalley_audio().
emaudio_podcastalley_preview in contrib/emfield/contrib/emaudio/providers/podcastalley.inc
Implementation of hook emaudio_podcastalley_preview().
emaudio_podomatic_audio in contrib/emfield/contrib/emaudio/providers/podomatic.inc
hook emaudio_PROVIDER_audio this actually displays the full/normal-sized video we want, usually on the default page view
emaudio_podomatic_preview in contrib/emfield/contrib/emaudio/providers/podomatic.inc
hook emaudio_PROVIDER_preview this actually displays the preview-sized video we want, commonly for the teaser
emfield_emfield_field_formatter in contrib/emfield/emfield.module
Format our field for display. This is actually called originally by each helper module that implements hook_field_formatter, which then call this.
emfield_settings in contrib/emfield/emfield.admin.inc
Callback for admin/content/emfield.
emthumb_widget_element_process in contrib/emfield/contrib/emthumb/emthumb.module
Process our emthumb element.
emvideo_archive_preview in contrib/emfield/contrib/emvideo/providers/archive.inc
hook emvideo_PROVIDER_video
emvideo_archive_video in contrib/emfield/contrib/emvideo/providers/archive.inc
hook emvideo_PROVIDER_video This actually displays the full/normal-sized video we want, usually on the default page view.
emvideo_bliptv_preview in contrib/emfield/contrib/emvideo/providers/bliptv.inc
emvideo_bliptv_video in contrib/emfield/contrib/emvideo/providers/bliptv.inc
emvideo_dailymotion_preview in contrib/emfield/contrib/emvideo/providers/dailymotion.inc
hook emvideo_PROVIDER_video this actually displays the preview-sized video we want, commonly for the teaser
emvideo_dailymotion_video in contrib/emfield/contrib/emvideo/providers/dailymotion.inc
hook emvideo_PROVIDER_video this actually displays the full/normal-sized video we want, usually on the default page view
emvideo_google_preview in contrib/emfield/contrib/emvideo/providers/google.inc
emvideo_google_video in contrib/emfield/contrib/emvideo/providers/google.inc
emvideo_guba_preview in contrib/emfield/contrib/emvideo/providers/guba.inc
emvideo_guba_video in contrib/emfield/contrib/emvideo/providers/guba.inc
emvideo_imeem_preview in contrib/emfield/contrib/emvideo/providers/imeem.inc
emvideo_imeem_video in contrib/emfield/contrib/emvideo/providers/imeem.inc
emvideo_lastfm_preview in contrib/emfield/contrib/emvideo/providers/lastfm.inc
hook emvideo_PROVIDER_video this actually displays the preview-sized video we want, commonly for the teaser
emvideo_lastfm_video in contrib/emfield/contrib/emvideo/providers/lastfm.inc
hook emvideo_PROVIDER_video this actually displays the full/normal-sized video we want, usually on the default page view
emvideo_livevideo_preview in contrib/emfield/contrib/emvideo/providers/livevideo.inc
hook emvideo_PROVIDER_video this actually displays the preview-sized video we want, commonly for the teaser
emvideo_livevideo_video in contrib/emfield/contrib/emvideo/providers/livevideo.inc
hook emvideo_PROVIDER_video this actually displays the full/normal-sized video we want, usually on the default page view
emvideo_metacafe_preview in contrib/emfield/contrib/emvideo/providers/metacafe.inc
emvideo_metacafe_video in contrib/emfield/contrib/emvideo/providers/metacafe.inc
emvideo_modal in contrib/emfield/contrib/emvideo/emvideo.module
Page callback for emvideo/thickbox/shadowbox. This will display our video in a modal window defined by the corresponding modal module. As it's a direct callback, it displays no HTML other than the video.
emvideo_myspace_preview in contrib/emfield/contrib/emvideo/providers/myspace.inc
emvideo_myspace_video in contrib/emfield/contrib/emvideo/providers/myspace.inc
emvideo_revver_preview in contrib/emfield/contrib/emvideo/providers/revver.inc
emvideo_revver_video in contrib/emfield/contrib/emvideo/providers/revver.inc
emvideo_sevenload_preview in contrib/emfield/contrib/emvideo/providers/sevenload.inc
hook emvideo_PROVIDER_video this actually displays the preview-sized video we want, commonly for the teaser
emvideo_sevenload_video in contrib/emfield/contrib/emvideo/providers/sevenload.inc
hook emvideo_PROVIDER_video this actually displays the full/normal-sized video we want, usually on the default page view
emvideo_spike_preview in contrib/emfield/contrib/emvideo/providers/spike.inc
emvideo_spike_video in contrib/emfield/contrib/emvideo/providers/spike.inc
emvideo_tudou_preview in contrib/emfield/contrib/emvideo/providers/tudou.inc
hook emvideo_PROVIDER_video this actually displays the preview-sized video we want, commonly for the teaser
emvideo_tudou_video in contrib/emfield/contrib/emvideo/providers/tudou.inc
hook emvideo_PROVIDER_video this actually displays the full/normal-sized video we want, usually on the default page view
emvideo_twistage_preview in contrib/emfield/contrib/emvideo/providers/twistage.inc
Implementation of hook_PROVIDER_preview().
emvideo_twistage_video in contrib/emfield/contrib/emvideo/providers/twistage.inc
Implementation of hook_PROVIDER_video().
emvideo_ustreamlive_preview in contrib/emfield/contrib/emvideo/providers/ustreamlive.inc
hook emvideo_PROVIDER_video this actually displays the preview-sized video we want, commonly for the teaser
emvideo_ustreamlive_video in contrib/emfield/contrib/emvideo/providers/ustreamlive.inc
hook emvideo_PROVIDER_video this actually displays the full/normal-sized video we want, usually on the default page view
emvideo_ustream_preview in contrib/emfield/contrib/emvideo/providers/ustream.inc
hook emvideo_PROVIDER_video this actually displays the preview-sized video we want, commonly for the teaser
emvideo_ustream_video in contrib/emfield/contrib/emvideo/providers/ustream.inc
hook emvideo_PROVIDER_video this actually displays the full/normal-sized video we want, usually on the default page view
emvideo_vimeo_preview in contrib/emfield/contrib/emvideo/providers/vimeo.inc
hook emvideo_PROVIDER_video this actually displays the preview-sized video we want, commonly for the teaser
emvideo_vimeo_video in contrib/emfield/contrib/emvideo/providers/vimeo.inc
hook emvideo_PROVIDER_video this actually displays the full/normal-sized video we want, usually on the default page view
emvideo_voicethread_preview in contrib/emfield/contrib/emvideo/providers/voicethread.inc
hook emvideo_PROVIDER_video this actually displays the preview-sized video we want, commonly for the teaser
emvideo_voicethread_video in contrib/emfield/contrib/emvideo/providers/voicethread.inc
hook emvideo_PROVIDER_video this actually displays the full/normal-sized video we want, usually on the default page view
emvideo_widget_settings in contrib/emfield/contrib/emvideo/emvideo.module
emvideo_yahoomusic_preview in contrib/emfield/contrib/emvideo/providers/yahoomusic.inc
hook emvideo_PROVIDER_video this actually displays the preview-sized video we want, commonly for the teaser
emvideo_yahoomusic_video in contrib/emfield/contrib/emvideo/providers/yahoomusic.inc
hook emvideo_PROVIDER_video this actually displays the full/normal-sized video we want, usually on the default page view
emvideo_youtube_preview in contrib/emfield/contrib/emvideo/providers/youtube.inc
hook emvideo_PROVIDER_video this actually displays the preview-sized video we want, commonly for the teaser
emvideo_youtube_video in contrib/emfield/contrib/emvideo/providers/youtube.inc
hook emvideo_PROVIDER_video this actually displays the full/normal-sized video we want, usually on the default page view
emvideo_zzz_custom_url_preview in contrib/emfield/contrib/emvideo/providers/zzz_custom_url.inc
emvideo_zzz_custom_url_video in contrib/emfield/contrib/emvideo/providers/zzz_custom_url.inc
event_block_upcoming in contrib/event/event.module
Creates a block that contains upcoming events.
event_calendar_month in contrib/event/event.module
Displays a monthly event calendar.
event_dst in contrib/event/event.module
Display a page with the timezone and daylight savings time regions.
event_nodeapi in contrib/event/event.module
hook_nodeapi implementation
event_page in contrib/event/event.module
Displays a page containing event information. The page layout defaults to a graphical calendar.
event_render_day in contrib/event/event.module
Returns an day of events for a calendar.
fckeditor_admin_main in contrib/fckeditor/fckeditor.admin.inc
Main administrative page
fckeditor_profile_overview in contrib/fckeditor/fckeditor.admin.inc
Controller for fckeditor profiles.
features_admin_components in contrib/features/features.admin.inc
Display the components of a feature.
features_admin_form in contrib/features/features.admin.inc
admin/build/features page callback.
features_export_build_form_populate in contrib/features/features.admin.inc
AHAH handler for features_export_form_build().
features_export_form in contrib/features/features.admin.inc
Form callback for features export form. Acts as a router based on the form_state.
features_feature_diff in contrib/features/features.admin.inc
Page callback to display the differences between what's in code and what is in the db.
fieldgroup_wrapper_post_render in contrib/cck/modules/fieldgroup/fieldgroup.module
Hide specified fields from the $content variable in node templates.
filefield_js in contrib/filefield/filefield.module
Menu callback; Shared AHAH callback for uploads and deletions.
filefield_widget_process in contrib/filefield/filefield_widget.inc
An element #process callback for the filefield_widget field type.
filefield_widget_settings_form in contrib/filefield/filefield_widget.inc
Implementation of CCK's hook_widget_settings($op == 'form').
filter_admin_format_form in core/modules/filter/filter.admin.inc
Generate a filter format form. See alsofilter_admin_format_form_validate()
filter_filter_tips in core/modules/filter/filter.module
Implementation of hook_filter_tips().
filter_form in core/modules/filter/filter.module
Generates a selector for choosing a format in a form.
filter_tips_long in core/modules/filter/filter.pages.inc
Menu callback; show a page with long filter tips.
fivestar_comment in contrib/fivestar/fivestar_comment.module
Implementation of hook_comment().
fivestar_comment_form_alter in contrib/fivestar/fivestar_comment.module
Form alter specification for comments.
fivestar_custom_widget in contrib/fivestar/fivestar.module
fivestar_form_alter in contrib/fivestar/fivestar.module
Implementation of hook_form_alter().
fivestar_help in contrib/fivestar/fivestar.module
fivestar_preview in contrib/fivestar/fivestar.module
Callback function for fivestar/preview/node. Outputs a JSON page containing a Fivestar preview of a node rating widget.
fivestar_static in contrib/fivestar/fivestar.module
fivestar_views_value_display_handler in contrib/fivestar/fivestar.module
VotingAPI Views formatter for displaying static stars.
fivestar_views_widget_handler in contrib/fivestar/fivestar.module
Generic VotingAPI Views formatter for displaying rating widget.
fivestar_vote in contrib/fivestar/fivestar.module
Callback function for fivestar/vote.
flag_actions_page in contrib/flag/flag_actions.module
Menu callback for admin/build/flags/actions.
flag_actions_token_actions_send_email_action_form in contrib/flag/flag_actions.module
flag_admin_page in contrib/flag/includes/flag.admin.inc
Flag administration page. Display a list of existing flags.
flag_create_link in contrib/flag/flag.module
A utility function for outputting a flag link.
flag_form in contrib/flag/includes/flag.admin.inc
Add/Edit flag page.
flag_link in contrib/flag/flag.module
Implementation of hook_link().
flag_page in contrib/flag/flag.module
Menu callback for (un)flagging a node.
flag_user in contrib/flag/flag.module
Implementation of hook_user().
forum_block in core/modules/forum/forum.module
Implementation of hook_block().
forum_nodeapi in core/modules/forum/forum.module
Implementation of hook_nodeapi().
forum_page in core/modules/forum/forum.pages.inc
Menu callback; prints a forum listing.
front_page in contrib/front/front_page.module
********************************************* Function to handle the display of the front page.
get_calendar_node in contrib/calendar/jcalendar/jcalendar.module
Get calendar node for popup *
gmap_location_author_block_view in contrib/gmap/gmap_location.module
gmap_location_block_view in contrib/gmap/gmap_location.module
gmap_location_node_page in contrib/gmap/gmap_location.module
Draws a page with a google map with the node on it, or if no node is set all of the nodes on it.
gmap_location_node_point in contrib/gmap/gmap_location.module
AHAH callback for getting the contents of a node point popup.
gmap_location_user_page in contrib/gmap/gmap_location.module
Draws a page with a google map that has all of the site users.
gmap_location_user_point in contrib/gmap/gmap_location.module
AHAH callback for getting the contents of a user point popup.
gmap_set_location in contrib/gmap/gmap.module
Location chooser utility function.
gmap_simple_map in contrib/gmap/gmap.module
Simple way to draw a map from inside a theme.
help_example_index_page in contrib/advanced_help/help_example/help_example.module
help_page in core/modules/help/help.admin.inc
Menu callback; prints a page listing general help for a module.
hook_nodeapi in hooks/core.php
Act on nodes defined by other modules.
hook_search in hooks/core.php
Define a custom search routine.
hook_view in hooks/node.php
Display a node.
i18ncontent_node_add_page in contrib/i18n/i18ncontent/i18ncontent.module
Replacement for node_add_page.
i18nstrings_form_alter in contrib/i18n/i18nstrings/i18nstrings.module
Implementation of hook_form_alter().
i18ntaxonomy_term_page in contrib/i18n/i18ntaxonomy/i18ntaxonomy.pages.inc
Menu callback; displays all nodes associated with a term.
i18ntaxonomy_translation_overview in contrib/i18n/i18ntaxonomy/i18ntaxonomy.admin.inc
Generate a tabular listing of translations for vocabularies.
i18n_translation_node_overview in contrib/i18n/i18n.pages.inc
Overview page for a node's translations.
imagecache_ui_preset_overview in contrib/imagecache/imagecache_ui.pages.inc
Preset Admin callbacks and required functions.
imagefield_widget_process in contrib/imagefield/imagefield_widget.inc
Element #process callback function.
imagefield_widget_settings_form in contrib/imagefield/imagefield_widget.inc
Implementation of CCK's hook_widget_settings($op = 'form').
image_attach_block in contrib/image/contrib/image_attach/image_attach.module
Implementation of hook_block().
image_attach_nodeapi in contrib/image/contrib/image_attach/image_attach.module
Implementation of hook_nodeapi().
image_block in contrib/image/image.module
Implementation of hook_block.
image_display in contrib/image/image.module
Create an <img> tag for an image.
image_gallery_admin in contrib/image/contrib/image_gallery/image_gallery.admin.inc
Menu callback for gallery admin.
image_gallery_page in contrib/image/contrib/image_gallery/image_gallery.pages.inc
Image gallery callback, displays an image gallery
image_import_form in contrib/image/contrib/image_import/image_import.pages.inc
Form generating function for the image import page.
image_view in contrib/image/image.module
Implementation of hook_view
imce_admin in contrib/imce/inc/imce.admin.inc
Admin main page.
imce_admin_theme in contrib/imce/inc/imce.admin.inc
Admin form themed.
imce_content in contrib/imce/inc/imce.page.inc
Returns the content of the file browser.
imce_create_tree in contrib/imce/inc/imce.page.inc
Create directory tree.
imce_directories_theme in contrib/imce/inc/imce.admin.inc
Directorys form themed.
imce_js_navigate in contrib/imce/inc/imce.js.inc
Ajax operation: navigate
imce_page in contrib/imce/inc/imce.page.inc
Returns the imce page for the specified user.
imce_thumbnails_theme in contrib/imce/inc/imce.admin.inc
Thumbnails form themed.
imce_user_page in contrib/imce/inc/imce.page.inc
q = user/x/imce.
img_assist_admin_settings in contrib/img_assist/img_assist.module
Implementation of hook_settings().
img_assist_filter in contrib/img_assist/img_assist.module
Implementation of hook_filter().
img_assist_header in contrib/img_assist/img_assist.module
img_assist_insert_html in contrib/img_assist/img_assist.module
img_assist_popup in contrib/img_assist/img_assist.module
img_assist_properties in contrib/img_assist/img_assist.module
Load the image properties pane.
img_assist_render_image in contrib/img_assist/img_assist.module
Return image HTML.
img_assist_thumbs in contrib/img_assist/img_assist.module
Load the thumbnail display pane.
img_assist_upload in contrib/img_assist/img_assist.module
Interface for adding images. Uses the regular image node form.
install_already_done_error in core/install.php
Show an error page when Drupal has already been installed.
install_change_settings in core/install.php
Configure and rewrite settings.php.
install_main in core/install.php
The Drupal installation happens in a series of steps. We begin by verifying that the current environment meets our minimum requirements. We then go on to verify that settings.php is properly configured. From there we connect to the configured database...
install_no_profile_error in core/install.php
Show an error page when there are no profiles available.
install_select_locale in core/install.php
Allow admin to select which locale to use for the current profile.
install_select_profile in core/install.php
Allow admin to select which profile to install.
lightbox2_acidfree_video in contrib/lightbox2/lightbox2.module
Display the video object.
lightbox2_emvideo in contrib/lightbox2/lightbox2.module
Configures settings and outputs the video.
lightbox2_imagefield_image_imagecache in contrib/lightbox2/lightbox2.formatter.inc
Function to set up the data needed for theme_imagefield_image_imagecache_lightbox2().
lightbox2_preprocess_page in contrib/lightbox2/lightbox2.module
link_field_settings in contrib/link/link.module
Implementation of hook_field_settings().
locale_block in core/modules/locale/locale.module
Implementation of hook_block(). Displays a language switcher. Translation links may be provided by other modules.
locale_translate_overview_screen in core/includes/locale.inc
Overview screen for translations.
location_display in contrib/location/location.module
location_search_page in contrib/location/contrib/location_search/location_search.module
Implementation of hook_search_page(). (It's named location_search_page because the $type is 'location'.)
location_update_index in contrib/location/contrib/location_search/location_search.module
Implementation of hook_update_index().
logintoboggan_block in contrib/logintoboggan/logintoboggan.module
Implementation of hook_block
logintoboggan_cron in contrib/logintoboggan/logintoboggan.module
Implementation of hook_cron().
logintoboggan_denied in contrib/logintoboggan/logintoboggan.module
logintoboggan_form_alter in contrib/logintoboggan/logintoboggan.module
Implementation of hook_form_alter()
logintoboggan_user in contrib/logintoboggan/logintoboggan.module
Implementation of hook_user().
menu_get_active_help in core/includes/menu.inc
Returns the help associated with the active menu item.
menu_local_tasks in core/includes/menu.inc
Collects the local tasks (tabs) for a given level.
menu_overview_page in core/modules/menu/menu.admin.inc
Menu callback which shows an overview page of all the custom menus and their descriptions.
menu_tree_output in core/includes/menu.inc
Returns a rendered menu tree.
mimemail_prepare in contrib/mimemail/mimemail.module
Sends a mime-encoded e-mail.
mollom_admin_form_list in contrib/mollom/mollom.admin.inc
Menu callback; Displays a list of forms configured for Mollom.
mollom_reports_page in contrib/mollom/mollom.admin.inc
Menu callback; Displays the administrative reports page.
nice_menus_block in contrib/nice_menus/nice_menus.module
Implementation of hook_block().
nodeapi_example_nodeapi in contrib/examples/nodeapi_example/nodeapi_example.module
Implementation of hook_nodeapi().
nodequeue_arrange_subqueue_form in contrib/nodequeue/nodequeue.module
Form definition for nodequeue drag'n'drop form.
nodequeue_node_tab in contrib/nodequeue/nodequeue.module
Display the queue controls for a node.
nodequeue_subqueue_size_text in contrib/nodequeue/nodequeue.module
Get a textual representation of a nodequeue's queue size.
nodequeue_view_queues in contrib/nodequeue/nodequeue.module
Display a list of queues and their status for the administrator.
nodequeue_view_subqueues in contrib/nodequeue/nodequeue.module
Display a list of subqueues for a queue and their sizes
nodewords_tags_edit_fields in contrib/nodewords/nodewords.module
Return the form used to set the meta tags values.
node_add_page in core/modules/node/node.pages.inc
node_admin_nodes in core/modules/node/node.admin.inc
Form builder: Builds the node administration overview.
node_block in core/modules/node/node.module
Implementation of hook_block().
node_example_view in contrib/examples/node_example/node_example.module
Implementation of hook_view().
node_overview_types in core/modules/node/content_types.inc
Displays the content type admin overview page.
node_page_default in core/modules/node/node.module
Menu callback; Generate a listing of promoted nodes.
node_preview in core/modules/node/node.pages.inc
Generate a node preview.
node_revision_overview in core/modules/node/node.pages.inc
Generate an overview table of older revisions of a node.
node_search in core/modules/node/node.module
Implementation of hook_search().
node_title_list in core/modules/node/node.module
Gather a listing of links to nodes.
node_type_form in core/modules/node/content_types.inc
Generates the node type editing form.
node_view in core/modules/node/node.module
Generate a display of the given node.
no_context_content_type_render in contrib/ctools/ctools_plugin_example/plugins/content_types/no_context_content_type.inc
Run-time rendering of the body of the block.
og_admin_settings in contrib/og/includes/og.admin.inc
Menu callback to load settings form.
og_approve in contrib/og/og.module
og_block_details in contrib/og/og.module
og_confirm_unsubscribe in contrib/og/og.pages.inc
Confirm og unsubscription form
og_create_admin_confirm in contrib/og/og.pages.inc
OG create admin form
og_manage_form in contrib/og/og.pages.inc
og_nodeapi in contrib/og/og.module
Implementation of hook_nodeapi().
og_notifications_manage_form in contrib/og/modules/og_notifications/og_notifications.pages.inc
Grouptype subscription management form.
og_page_activity in contrib/og/og.pages.inc
og_preprocess_node in contrib/og/og.module
Enrich non group nodes with the list og groups that the node belongs to.
og_remove_admin_confirm in contrib/og/og.pages.inc
OG remove admin form
og_user in contrib/og/og.module
og_views_block_notifications in contrib/og/modules/og_views/og_views.module
og_views_views_pre_view in contrib/og/modules/og_views/og_views.module
An implementation of hook_views_pre_view().
openid_form_alter in core/modules/openid/openid.module
Implementation of hook_form_alter : adds OpenID login to the login forms.
openid_user_identities in core/modules/openid/openid.pages.inc
Menu callback; Manage OpenID identities for the specified user.
optionwidgets_options in contrib/cck/modules/optionwidgets/optionwidgets.module
Helper function for finding the allowed values list for a field.
page_example_baz in contrib/examples/page_example/page_example.module
A more complex page callback that takes arguments.
page_manager_edit_page in contrib/ctools/page_manager/page_manager.admin.inc
Render the edit page for a a page, custom or system.
page_manager_edit_page_operation in contrib/ctools/page_manager/page_manager.admin.inc
Entry point to edit a single operation for a page.
page_manager_get_pages in contrib/ctools/page_manager/page_manager.admin.inc
Sort tasks into buckets based upon whether or not they have subtasks.
page_manager_list_page in contrib/ctools/page_manager/page_manager.admin.inc
Output a list of pages that are managed.
page_manager_page_admin_summary in contrib/ctools/page_manager/plugins/tasks/page.inc
Provide a nice administrative summary of the page so an admin can see at a glance what this page does and how it is configured.
page_manager_page_summary in contrib/ctools/page_manager/page_manager.admin.inc
Print the summary information for a page.
page_manager_render_operations in contrib/ctools/page_manager/page_manager.admin.inc
Render an operations array.
page_manager_term_view_admin_summary in contrib/ctools/page_manager/plugins/tasks/term_view.inc
Provide a nice administrative summary of the page so an admin can see at a glance what this page does and how it is configured.
page_title_admin_settings in contrib/page_title/page_title.admin.inc
Displays the form for the standard settings tab.
page_title_help in contrib/page_title/page_title.module
Implementation of hook_help().
panels_admin_page in contrib/panels/includes/callbacks.inc
A central administrative page for Panels.
panels_change_layout in contrib/panels/includes/display-layout.inc
Form definition for the display layout converter.
panels_edit_display_get_links in contrib/panels/includes/display-edit.inc
Get the links for a panel display.
panels_edit_display_settings_form in contrib/panels/includes/display-edit.inc
Form for display settings.
panels_edit_panel_get_links in contrib/panels/includes/display-edit.inc
Get the links for a panel region.
panels_flexible_render_item_links in contrib/panels/plugins/layouts/flexible/flexible.inc
Render the dropdown links for an item.
panels_mini_edit_content in contrib/panels/panels_mini/panels_mini.admin.inc
Pass through to the panels content editor.
panels_mini_edit_form in contrib/panels/panels_mini/panels_mini.admin.inc
Form to edit the settings of a mini panel.
panels_mini_import_form_submit in contrib/panels/panels_mini/panels_mini.admin.inc
Handle the submit button on importing a mini panel.
panels_mini_list_page in contrib/panels/panels_mini/panels_mini.admin.inc
Provide a list of mini panels, with links to edit or delete them.
panels_node_edit_content in contrib/panels/panels_node/panels_node.module
Pass through to the panels content editor.
panels_panel_context_admin_summary in contrib/panels/plugins/task_handlers/panel_context.inc
Provide a nice little summary of what's in a panel.
panels_print_layout_icon in contrib/panels/panels.module
panels_print_layout_link in contrib/panels/panels.module
Print the layout link. Sends out to a theme function. @layout
panels_render_layout in contrib/panels/includes/display-render.inc
Given a full layout structure and a content array, render a panel display. @render
panels_render_layout_admin in contrib/panels/includes/display-render.inc
Render the administrative layout of a display.
panels_render_pane in contrib/panels/includes/display-render.inc
Render a pane using the appropriate style.
panels_render_panel in contrib/panels/includes/display-render.inc
Render a panel, by storing the content of each pane in an appropriate array and then passing through to the theme function that will render the panel in the configured panel style.
panels_show_pane in contrib/panels/includes/display-edit.inc
panels_stylizer_list_styles_form_submit in contrib/panels/panels_stylizer/panels_stylizer.admin.inc
Accept submission from the sort/filter form and apply it to the list
panels_stylizer_list_styles_page in contrib/panels/panels_stylizer/panels_stylizer.admin.inc
Entry point for the panels style builder administration.
panels_stylizer_pane_preview in contrib/panels/panels_stylizer/panels_stylizer.module
Generate a preview given the current settings.
panels_stylizer_region_preview in contrib/panels/panels_stylizer/panels_stylizer.module
Generate a preview given the current settings.
path_admin_overview in core/modules/path/path.admin.inc
Return a listing of all defined URL aliases. When filter key passed, perform a standard search on the given key, and return the list of matching URL aliases.
path_redirect_admin_redirects in contrib/path_redirect/path_redirect.admin.inc
Render a list of redirects for the main admin page.
path_redirect_list_redirects in contrib/path_redirect/path_redirect.admin.inc
path_redirect_local_actions in contrib/path_redirect/path_redirect.module
performance_view_details in contrib/devel/performance/performance.module
performance_view_summary in contrib/devel/performance/performance.module
phptemplate_comment_submitted in core/themes/garland/template.php
Returns the themed submitted-by string for the comment.
phptemplate_node_submitted in core/themes/garland/template.php
Returns the themed submitted-by string for the node.
poll_choice_js in core/modules/poll/poll.module
Menu callback for AHAH additions.
poll_page in core/modules/poll/poll.pages.inc
Menu callback to provide a simple list of all polls available.
poll_view_results in core/modules/poll/poll.module
Generates a graphical representation of the results of a poll.
poll_votes in core/modules/poll/poll.pages.inc
Callback for the 'votes' tab for polls you can see other votes on
print_insert_link in contrib/print/print.module
Auxiliary function to display a formatted Printer-friendly link
print_link in contrib/print/print.module
Implementation of hook_link().
print_link_alter in contrib/print/print.module
Implementation of hook_link_alter().
print_mail_form in contrib/print/print_mail/print_mail.inc
Menu callback for the send by e-mail form.
print_mail_insert_link in contrib/print/print_mail/print_mail.module
Auxiliary function to display a formatted send by e-mail link
print_mail_link in contrib/print/print_mail/print_mail.module
Implementation of hook_link().
print_pdf_insert_link in contrib/print/print_pdf/print_pdf.module
Auxiliary function to display a formatted PDF version link
print_pdf_link in contrib/print/print_pdf/print_pdf.module
Implementation of hook_link().
profile_block in core/modules/profile/profile.module
Implementation of hook_block().
profile_browse in core/modules/profile/profile.pages.inc
Menu callback; display a list of user information.
scaffolding_example_overview_pager in contrib/examples/scaffolding_example/scaffolding_example.admin.inc
Builds a sortable, paged overview of all records.
scaffolding_example_page in contrib/examples/scaffolding_example/scaffolding_example.pages.inc
Build a simple listing page for records.
search_data in core/modules/search/search.module
Perform a standard search on the given keys, and return the formatted results.
search_view in core/modules/search/search.pages.inc
Menu callback; presents the search form and/or search results.
simplenews_admin_news in contrib/simplenews/simplenews.admin.inc
Menu callback: Admin form for sent and draft newsletters. See alsosimplenews_admin_news_submit()
simplenews_block in contrib/simplenews/simplenews.module
Implementation of hook_block().
simplenews_mail in contrib/simplenews/simplenews.module
Implementation of hook_mail().
simplenews_subscription_list_form in contrib/simplenews/simplenews.admin.inc
Build the form for admin subscription.
simplenews_types_overview in contrib/simplenews/simplenews.admin.inc
Menu callback: newsletter admin form with list of available newsletter series.
site_map_block in contrib/site_map/site_map.module
Implementation of hook_block().
site_map_page in contrib/site_map/site_map.module
Menu callback for the site map.
statistics_access_log in core/modules/statistics/statistics.admin.inc
Menu callback; Displays recent page accesses.
statistics_node_tracker in core/modules/statistics/statistics.pages.inc
statistics_recent_hits in core/modules/statistics/statistics.admin.inc
Menu callback; presents the "recent hits" page.
statistics_top_pages in core/modules/statistics/statistics.admin.inc
Menu callback; presents the "top pages" page.
statistics_top_referrers in core/modules/statistics/statistics.admin.inc
Menu callback; presents the "referrer" page.
statistics_top_visitors in core/modules/statistics/statistics.admin.inc
Menu callback; presents the "top visitors" page.
statistics_user_tracker in core/modules/statistics/statistics.pages.inc
syslog_watchdog in core/modules/syslog/syslog.module
system_actions_manage in core/modules/system/system.module
Menu callback. Display an overview of available and configured actions.
system_admin_by_module in core/modules/system/system.admin.inc
Menu callback; prints a listing of admin tasks for each installed module.
system_admin_menu_block_page in core/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/content/types' needs to have a destination to be valid in the Drupal menu system, but too much...
system_batch_page in core/modules/system/system.admin.inc
Default page callback for batches.
system_block in core/modules/system/system.module
Implementation of hook_block().
system_logging_overview in core/modules/system/system.admin.inc
Menu callback; Menu page for the various logging options.
system_main_admin_page in core/modules/system/system.admin.inc
Menu callback; Provide the administration overview page.
system_modules_confirm_form in core/modules/system/system.admin.inc
Display confirmation form for dependencies.
system_modules_uninstall_confirm_form in core/modules/system/system.admin.inc
Confirm uninstall of selected modules.
system_settings_overview in core/modules/system/system.admin.inc
Menu callback; displays a module's settings page.
system_status in core/modules/system/system.admin.inc
Menu callback: displays the site status report. Can also be used as a pure check.
system_themes_form in core/modules/system/system.admin.inc
Menu callback; displays a listing of all themes. See alsosystem_themes_form_submit()
system_theme_select_form in core/modules/system/system.module
Returns a fieldset containing the theme select form.
t in core/includes/common.inc
Translate strings to the page language or a given language.
tablesort_header in core/includes/tablesort.inc
Format a column header.
tagadelic_block in contrib/tagadelic/tagadelic.module
implementation of hook_block
tagadelic_page_chunk in contrib/tagadelic/tagadelic.module
menu callback renders a tagadelic page
tagadelic_page_list in contrib/tagadelic/tagadelic.module
menu callback renders a tagadelic page with listed items: each voc
tagadelic_tags_lists in contrib/tagadelic/tagadelic.module
API function that returns the tags of a node in fancy titled lists
taxonomy_render_nodes in core/modules/taxonomy/taxonomy.module
Accepts the result of a pager_query() call, such as that performed by taxonomy_select_nodes(), and formats each node along with a pager.
taxonomy_term_page in core/modules/taxonomy/taxonomy.pages.inc
Menu callback; displays all nodes associated with a term.
template_preprocess_advanced_help_popup in contrib/advanced_help/advanced_help.module
Fill in a bunch of page variables for our specialized popup page.
template_preprocess_aggregator_feed_source in core/modules/aggregator/aggregator.pages.inc
Process variables for aggregator-feed-source.tpl.php. See alsoaggregator-feed-source.tpl.php
template_preprocess_aggregator_summary_items in core/modules/aggregator/aggregator.pages.inc
Process variables for aggregator-summary-items.tpl.php. See alsoaggregator-summary-item.tpl.php
template_preprocess_aggregator_wrapper in core/modules/aggregator/aggregator.pages.inc
Process variables for aggregator-wrapper.tpl.php. See alsoaggregator-wrapper.tpl.php
template_preprocess_calendar in contrib/calendar/theme/theme.inc
Display a view as a calendar.
template_preprocess_calendar_day in contrib/calendar/theme/theme.inc
Display a day view.
template_preprocess_calendar_week in contrib/calendar/theme/theme.inc
Display a week view.
template_preprocess_calendar_year in contrib/calendar/theme/theme.inc
Display a year view.
template_preprocess_comment in core/modules/comment/comment.module
Process variables for comment.tpl.php. See alsocomment.tpl.php
template_preprocess_comment_folded in core/modules/comment/comment.module
Process variables for comment-folded.tpl.php. See alsocomment-folded.tpl.php
template_preprocess_content_copy_export_form in contrib/cck/modules/content_copy/content_copy.module
template_preprocess_content_display_overview_form in contrib/cck/theme/theme.inc
Theme preprocess function for content-admin-display-overview-form.tpl.php.
template_preprocess_content_field_overview_form in contrib/cck/theme/theme.inc
@file Theme preprocess function for content-admin-field-overview-form.tpl.php.
template_preprocess_date_navigation in contrib/date/theme/theme.inc
Preprocessor to construct back and next navigation from the date argument.
template_preprocess_emvideo_modal_iframe in contrib/emfield/contrib/emvideo/emvideo.theme.inc
Display the video in an iFrame.
template_preprocess_event_node_day in contrib/event/event.theme
Format an event node for display in an expanded calendar, like a calendar page
template_preprocess_event_node_list in contrib/event/event.theme
Format a list of event nodes for display
template_preprocess_event_node_month in contrib/event/event.theme
Format an event node for display in an expanded calendar, like a calendar page
template_preprocess_event_node_table in contrib/event/event.theme
Format an event node for display in an expanded calendar, like a calendar page
template_preprocess_event_node_week in contrib/event/event.theme
Format an event node for display in an expanded calendar, like a calendar page
template_preprocess_features_admin_components in contrib/features/theme/theme.inc
Display feature component info
template_preprocess_forums in core/modules/forum/forum.module
Process variables for forums.tpl.php
template_preprocess_forum_list in core/modules/forum/forum.module
Process variables to format a forum listing.
template_preprocess_forum_submitted in core/modules/forum/forum.module
Process variables to format submission info for display in the forum list and topic list.
template_preprocess_forum_topic_list in core/modules/forum/forum.module
Preprocess variables to format the topic listing.
template_preprocess_gmap_view_gmap in contrib/gmap/gmap.views.inc
template_preprocess_location in contrib/location/location.module
Theme preprocess function for a location.
template_preprocess_locations in contrib/location/location.module
Theme preprocess function for theming a group of locations.
template_preprocess_maintenance_page in core/includes/theme.maintenance.inc
The variables generated here is a mirror of template_preprocess_page(). This preprocessor will run it's course when theme_maintenance_page() is invoked. It is also used in theme_install_page() and theme_update_page() to keep all the variables...
template_preprocess_node in core/includes/theme.inc
Process variables for node.tpl.php
template_preprocess_page in core/includes/theme.inc
Process variables for page.tpl.php
template_preprocess_page_manager_edit_page in contrib/ctools/page_manager/theme/page_manager.theme.inc
Preprocess the page manager edit page.
template_preprocess_panels_dashboard in contrib/panels/includes/callbacks.inc
template_preprocess_panels_pane in contrib/panels/panels.module
Clean up the panel pane variables for the template.
template_preprocess_pane_rounded_shadow in contrib/panels/panels_stylizer/plugins/style_bases/pane/pane_rounded_shadow/pane_rounded_shadow.inc
template_preprocess_poll_results in core/modules/poll/poll.module
Preprocess the poll_results theme hook.
template_preprocess_profile_block in core/modules/profile/profile.module
Process variables for profile-block.tpl.php.
template_preprocess_profile_listing in core/modules/profile/profile.module
Process variables for profile-listing.tpl.php.
template_preprocess_search_results in core/modules/search/search.pages.inc
Process variables for search-results.tpl.php.
template_preprocess_search_results_location in contrib/location/contrib/location_search/location_search.module
template_preprocess_search_result_location in contrib/location/contrib/location_search/location_search.module
template_preprocess_simplenews_block in contrib/simplenews/simplenews.module
Process variables to format the simplenews block.
template_preprocess_site_map in contrib/site_map/site_map.theme.inc
Process variables for site-map.tpl.php. See alsosite-map.tpl.php
template_preprocess_user_picture in core/modules/user/user.module
Process variables for user-picture.tpl.php.
template_preprocess_views_ui_edit_item in contrib/views/includes/admin.inc
Add information about a section to a display.
template_preprocess_views_ui_edit_tab in contrib/views/includes/admin.inc
template_preprocess_views_ui_edit_view in contrib/views/includes/admin.inc
Preprocess the view edit page.
template_preprocess_views_ui_list_views in contrib/views/includes/admin.inc
Preprocess the list views theme
template_preprocess_views_view in contrib/views/theme/theme.inc
Preprocess the primary theme implementation for a view.
template_preprocess_views_view_row_comment in contrib/views/modules/comment.views.inc
Template helper for theme_views_view_row_comment
template_preprocess_views_view_row_search in contrib/views/modules/search.views.inc
Template helper for theme_views_view_row_search
template_preprocess_views_view_table in contrib/views/theme/theme.inc
Display a view as a table style.
template_preprocess_wysiwyg_dialog_page in contrib/wysiwyg/wysiwyg.dialog.inc
Template preprocess function for theme_wysiwyg_dialog_page(). See alsowysiwyg_dialog()
theme_admin_page in core/modules/system/system.admin.inc
This function formats an administrative page for viewing.
theme_aggregator_block_item in core/modules/aggregator/aggregator.module
Format an individual feed item for display in the block.
theme_aggregator_categorize_items in core/modules/aggregator/aggregator.pages.inc
Theme the page list form for assigning categories.
theme_blocks in core/includes/theme.inc
Return a set of blocks available for the current user.
theme_book_admin_table in core/modules/book/book.admin.inc
Theme function for the book administration page form. See alsobook_admin_table()
theme_bulk_export_export_form in contrib/ctools/bulk_export/bulk_export.module
Display the bulk export form.
theme_calendar_colorfield in contrib/calendar/calendar.module
Format calendar_color textfield.
theme_calendar_colorpicker in contrib/calendar/calendar.module
Format calendar_colorpicker.
theme_calendar_ical_icon in contrib/calendar/calendar_ical/calendar_ical.module
theme_calendar_stripe_legend in contrib/calendar/theme/theme.inc
Format a node stripe legend
theme_captcha in contrib/captcha/captcha.module
Theme function for a CAPTCHA element.
theme_captcha_admin_settings_captcha_points in contrib/captcha/captcha.admin.inc
Custom theme function for a table of (form_id -> CAPTCHA type) settings
theme_cart_review_table in contrib/ubercart/uc_cart/uc_cart_checkout_pane.inc
Format the cart contents table on the checkout page.
theme_checkbox in core/includes/form.inc
Format a checkbox.
theme_checkboxes in core/includes/form.inc
Format a set of checkboxes.
theme_comment_admin_overview in core/modules/comment/comment.admin.inc
Theme the comment admin form.
theme_comment_block in core/modules/comment/comment.module
Returns a formatted list of recent comments to be displayed in the comment block.
theme_comment_controls in core/modules/comment/comment.module
Theme comment controls box where the user can change the default display mode and display order of comments.
theme_comment_flat_collapsed in core/modules/comment/comment.module
Theme comment flat collapsed view.
theme_comment_flat_expanded in core/modules/comment/comment.module
Theme comment flat expanded view.
theme_comment_submitted in core/modules/comment/comment.module
Theme a "Submitted by ..." notice.
theme_comment_thread_collapsed in core/modules/comment/comment.module
Theme comment thread collapsed view.
theme_comment_thread_expanded in core/modules/comment/comment.module
Theme comment thread expanded view.
theme_comment_view in core/modules/comment/comment.module
Themes a single comment and related items.
theme_content_multiple_values in contrib/cck/content.module
Theme an individual form element.
theme_ctools_access_admin_add in contrib/ctools/includes/context-access-admin.inc
Theme the 'add' portion of the access form into a table.
theme_ctools_context_item_form in contrib/ctools/includes/context.theme.inc
Display the context item.
theme_date in core/includes/form.inc
Format a date selection element.
theme_date_all_day in contrib/date/date/date.theme
Adjust from/to date format to account for 'all day'.
theme_date_combo in contrib/date/date/date_elements.inc
Theme from/to date combination on form.
theme_date_display_combination in contrib/date/date/date.theme
Theme from/to date combination in the view.
theme_date_format_interval in contrib/date/date/date.theme
Theme a format interval for a date element
theme_date_popup in contrib/date/date_popup/date_popup.module
Format a date popup element.
theme_date_repeat in contrib/date/date_repeat/date_repeat_form.inc
Themes the date repeat element.
theme_date_repeat_current_exceptions in contrib/date/date_repeat/date_repeat_form.inc
Theme the exception list as a table so the buttons line up
theme_date_select in contrib/date/theme/theme.inc
Format a date selection element.
theme_date_select_element in contrib/date/theme/theme.inc
Themes for date input form elements
theme_date_text in contrib/date/theme/theme.inc
Format a date text element.
theme_date_textfield_element in contrib/date/theme/theme.inc
theme_date_text_parts in contrib/date/date/date_admin.inc
Display the text/select options for date parts in a table for easier readability.
theme_date_timezone in contrib/date/theme/theme.inc
Format a date timezone element.
theme_devel_querylog in contrib/devel/devel.module
theme_devel_variable_form in contrib/devel/devel.module
theme_emaudio_custom_url_flash in contrib/emfield/contrib/emaudio/providers/custom_url.inc
theme_emaudio_default in contrib/emfield/contrib/emaudio/emaudio.theme.inc
theme_emfield_swfobject in contrib/emfield/includes/themes/emfield.themes.inc
Theme function to add a flash file to the page.
theme_emimage_default in contrib/emfield/contrib/emimage/emimage.theme.inc
Format the image using the Default (Full Image) preset.
theme_emimage_image in contrib/emfield/contrib/emimage/emimage.theme.inc
Helper theme for various emimage themes.
theme_emimage_image_full in contrib/emfield/contrib/emimage/emimage.theme.inc
Format the image using the Full Image preset.
theme_emimage_image_preview in contrib/emfield/contrib/emimage/emimage.theme.inc
Format the image using the Preview Image preset.
theme_emimage_image_thumbnail in contrib/emfield/contrib/emimage/emimage.theme.inc
Format the image using the Thumbnail presets.
theme_emthumb_image in contrib/emfield/contrib/emthumb/emthumb.module
Returns the HTML to display a custom thumbnail image.
theme_emthumb_imagecache_formatter_full in contrib/emfield/contrib/emthumb/emthumb.theme.inc
Returns the imagecache image linked to a full media display.
theme_emthumb_imagecache_formatter_imagelink in contrib/emfield/contrib/emthumb/emthumb.theme.inc
Returns the imagecache image linked to the original image.
theme_emthumb_imagecache_formatter_lightbox2 in contrib/emfield/contrib/emthumb/emthumb.theme.inc
Returns the imagecache image linked to a modal lightbox2.
theme_emthumb_imagecache_formatter_path in contrib/emfield/contrib/emthumb/emthumb.theme.inc
Returns the path to the imagecache image.
theme_emthumb_imagecache_formatter_preview in contrib/emfield/contrib/emthumb/emthumb.theme.inc
Returns the imagecache image linked to a preview media display.
theme_emthumb_imagecache_formatter_shadowbox in contrib/emfield/contrib/emthumb/emthumb.theme.inc
Returns the imagecache image linked to a modal shadowbox.
theme_emthumb_imagecache_formatter_thickbox in contrib/emfield/contrib/emthumb/emthumb.theme.inc
Returns the imagecache image linked to a modal thickbox.
theme_emthumb_imagecache_formatter_url in contrib/emfield/contrib/emthumb/emthumb.theme.inc
Returns the URL to the imagecache image.
theme_emthumb_view_image in contrib/emfield/contrib/emthumb/emthumb.module
Returns the image thumbnail. @TODO: Is this even being used?
theme_emthumb_widget in contrib/emfield/contrib/emthumb/emthumb.module
Theme function for the emthumb_widget element.
theme_emvideo_default in contrib/emfield/contrib/emvideo/emvideo.theme.inc
theme_emvideo_lightbox2 in contrib/emfield/contrib/emvideo/emvideo.theme.inc
Display the video as a Lightbox2 modal popup. Requires the Lightbox2 module.
theme_emvideo_modal_generic in contrib/emfield/contrib/emvideo/emvideo.theme.inc
theme_emvideo_shadowbox in contrib/emfield/contrib/emvideo/emvideo.theme.inc
Display the video as a Shadowbox modal popup. Requires the Shadowbox module.
theme_emvideo_thickbox in contrib/emfield/contrib/emvideo/emvideo.theme.inc
Display the video as a Thickbox modal popup. Requires the Thickbox module.
theme_emvideo_video_replace in contrib/emfield/contrib/emvideo/emvideo.theme.inc
theme_emvideo_video_replace_preview in contrib/emfield/contrib/emvideo/emvideo.theme.inc
theme_emvideo_video_thumbnail in contrib/emfield/contrib/emvideo/emvideo.theme.inc
This will return a provided thumbnail image for a video.
theme_emvideo_video_thumbnail_no_link in contrib/emfield/contrib/emvideo/emvideo.theme.inc
theme_emvideo_video_thumbnail_provider_link in contrib/emfield/contrib/emvideo/emvideo.theme.inc
theme_emvideo_yahoomusic_flash in contrib/emfield/contrib/emvideo/providers/yahoomusic.inc
The embedded flash displaying the yahoomusic video.
theme_emvideo_youtube_flash in contrib/emfield/contrib/emvideo/providers/youtube.inc
The embedded flash displaying the youtube video.
theme_emvideo_zzz_custom_url_embedded_video in contrib/emfield/contrib/emvideo/providers/zzz_custom_url.inc
theme_emwave_default in contrib/emfield/contrib/emwave/emwave.theme.inc
theme_emwave_wave_full in contrib/emfield/contrib/emwave/emwave.theme.inc
theme_emwave_wave_preview in contrib/emfield/contrib/emwave/emwave.theme.inc
theme_event in contrib/event/event.theme
Format a date selection element.
theme_event_calendar_day in contrib/event/event.theme
Format a calendar view
theme_event_calendar_month in contrib/event/event.theme
Format a calendar view
theme_event_calendar_table in contrib/event/event.theme
Format a calendar view
theme_event_calendar_week in contrib/event/event.theme
Format a calendar view
theme_event_links in contrib/event/event.theme
Format the links for event calendars
theme_event_upcoming_block in contrib/event/event.theme
Format the upcoming event block for event calendars
theme_features_components in contrib/features/theme/theme.inc
Theme a set of features export components.
theme_features_form_package in contrib/features/theme/theme.inc
Theme for features management form.
theme_feed_icon in core/includes/theme.inc
Return code that emits an feed icon.
theme_file in core/includes/form.inc
Format a file upload field.
theme_filefield_file in contrib/filefield/filefield_formatter.inc
Theme function for the 'generic' single file formatter.
theme_filefield_formatter_default in contrib/filefield/filefield_formatter.inc
Theme function for the 'default' filefield formatter.
theme_filefield_item in contrib/filefield/filefield_formatter.inc
Theme function for any file that is managed by FileField.
theme_filefield_widget in contrib/filefield/filefield_widget.inc
FormAPI theme function. Theme the output of an image field.
theme_filefield_widget_file in contrib/filefield/filefield_widget.inc
Custom theme function for FileField upload elements.
theme_filefield_widget_preview in contrib/filefield/filefield_widget.inc
theme_filter_admin_order in core/modules/filter/filter.admin.inc
Theme filter order configuration form.
theme_filter_admin_overview in core/modules/filter/filter.admin.inc
Theme the admin overview form.
theme_fivestar in contrib/fivestar/fivestar.module
Theme the fivestar form element by adding necessary css and javascript.
theme_fivestar_color_form in contrib/fivestar/fivestar_color.inc
Theme color form.
theme_fivestar_formatter_default in contrib/fivestar/fivestar_field.inc
Theme function for 'default' fivestar field formatter.
theme_fivestar_settings in contrib/fivestar/fivestar.module
theme_fivestar_static_element in contrib/fivestar/fivestar.module
Display a static fivestar value as stars with a title and description.
theme_flag_actions_flag_form in contrib/flag/flag_actions.module
theme_flag_actions_page in contrib/flag/flag_actions.module
Theme the list of actions currently in place for flags.
theme_flag_admin_page in contrib/flag/includes/flag.admin.inc
Theme the output for the main flag administration page.
theme_flag_rules_radios in contrib/flag/includes/flag.rules_forms.inc
theme_flag_token_help in contrib/flag/includes/flag.token.inc
This is a replacement for Token's theme_token_help().
theme_gmap_address in contrib/gmap/gmap.module
theme_gmap_align in contrib/gmap/gmap.module
theme_gmap_location_infowindow_node__og in contrib/gmap/gmap_location.module
Theme an Organic Groups node info window.
theme_gmap_location_infowindow_user in contrib/gmap/gmap_location.module
Default theme for user infowindows.
theme_gmap_macrotext in contrib/gmap/gmap.module
theme_gmap_overlay_edit in contrib/gmap/gmap.module
Overlay editor theme function.
theme_gmap_style in contrib/gmap/gmap.module
Theme a gmap_style fieldset.
theme_i18nsync_workflow_checkbox in contrib/i18n/i18nsync/i18nsync.module
Theming function for workflow checkboxes.
theme_i18n_node_select_translation in contrib/i18n/i18n.pages.inc
Theme select translation form
theme_imagecache_formatter_default in contrib/imagecache/imagecache.module
theme_imagecache_formatter_imagelink in contrib/imagecache/imagecache.module
theme_imagecache_formatter_linked in contrib/imagecache/imagecache.module
theme_imagecache_imagelink in contrib/imagecache/imagecache.module
Create a link the original image that wraps the derivative image.
theme_imagecache_ui_preset_actions in contrib/imagecache/imagecache_ui.pages.inc
theme_imagefield_formatter_image_imagelink in contrib/imagefield/imagefield_formatter.inc
theme_imagefield_formatter_image_nodelink in contrib/imagefield/imagefield_formatter.inc
theme_imagefield_formatter_image_plain in contrib/imagefield/imagefield_formatter.inc
theme_imagefield_image_imagecache_lightbox2 in contrib/lightbox2/lightbox2.formatter.inc
Generate the HTML output for imagefield + imagecache images so they can be opened in a lightbox by clicking on the image on the node page or in a view.
theme_imagefield_image_imagecache_thickbox in contrib/thickbox/thickbox.module
Implementation of theme_imagefield_image_imagecache_thickbox().
theme_imagefield_item in contrib/imagefield/imagefield.module
theme_imagefield_widget in contrib/imagefield/imagefield_widget.inc
FormAPI theme function. Theme the output of an image field.
theme_imagefield_widget_item in contrib/imagefield/imagefield.module
theme_imagefield_widget_preview in contrib/imagefield/imagefield.module
theme_image_display in contrib/image/image.module
Theme an img tag for displaying the image.
theme_image_gallery in contrib/image/contrib/image_gallery/image_gallery.pages.inc
Theme a gallery page
theme_image_gallery_img in contrib/image/contrib/image_gallery/image_gallery.pages.inc
Theme a gallery image.
theme_image_import_form in contrib/image/contrib/image_import/image_import.pages.inc
Theme function for the image import form.
theme_image_settings_sizes_form in contrib/image/image.admin.inc
theme_install_page in core/includes/theme.maintenance.inc
Generate a themed installation page.
theme_item in core/includes/form.inc
Format a form item.
theme_lightbox2_emimage in contrib/lightbox2/lightbox2.formatter.inc
Generate the HTML output to open embedded cck images in a lightbox.
theme_lightbox2_emvideo in contrib/lightbox2/lightbox2.formatter.inc
Generate the HTML output to open embedded cck videos in a lightbox.
theme_lightbox2_file_formatter_lightbox2_iframe in contrib/lightbox2/lightbox2.formatter.inc
Theme function for the lightbox iframe filefield formatter.
theme_lightbox2_formatter_filefield_lightframe in contrib/lightbox2/lightbox2.formatter.inc
Theme function for the lightbox iframe filefield formatter.
theme_link in contrib/link/link.module
FAPI theme for an individual text elements.
theme_locale_languages_overview_form in core/includes/locale.inc
Theme the language overview form.
theme_location_cck_field_map in contrib/location/contrib/location_cck/location_cck.module
Generate a GMap map for one or more location field values.
theme_location_cck_field_popup in contrib/location/contrib/location_cck/location_cck.module
Theme the GMap popup text for the field.
theme_location_cck_formatter_all in contrib/location/contrib/location_cck/location_cck.module
Return both an address and a map for an individual item.
theme_location_cck_formatter_default in contrib/location/contrib/location_cck/location_cck.module
Return an address for an individual item.
theme_location_element in contrib/location/location.module
Theme function to fixup location elements.
theme_location_geocoding_options in contrib/location/location.admin.inc
theme_location_map_link_options in contrib/location/location.admin.inc
theme_location_settings in contrib/location/location.module
theme_menu_overview_form in core/modules/menu/menu.admin.inc
Theme the menu overview form into a table.
theme_mollom_admin_blacklist_form in contrib/mollom/mollom.admin.inc
Formats the blacklist form as table to embed the form.
theme_nice_menu in contrib/nice_menus/nice_menus.module
General theming function to allow any menu tree to be themed as a nice menu.
theme_nice_menu_build in contrib/nice_menus/nice_menus.module
Helper function that builds the nested lists of a nice menu.
theme_nice_menu_primary_links in contrib/nice_menus/nice_menus.module
Theme primary links as nice menus
theme_nice_menu_tree in contrib/nice_menus/nice_menus.module
Builds the final nice menu.
theme_nodequeue_arrange_subqueue_form in contrib/nodequeue/nodequeue.module
Theme the subqueue overview as a sortable list.
theme_nodequeue_generate_form in contrib/nodequeue/nodequeue_generate.module
theme_nodereference_formatter_full_teaser in contrib/cck/modules/nodereference/nodereference.module
Proxy theme function for 'full' and 'teaser' nodereference field formatters.
theme_nodewords_pages_overview in contrib/nodewords/nodewords.admin.inc
Render the list of pages with meta tags.
theme_node_admin_nodes in core/modules/node/node.admin.inc
Theme node administration overview.
theme_node_list in core/modules/node/node.module
Format a listing of links to nodes.
theme_node_search_admin in core/modules/node/node.module
Theme the content ranking part of the search settings admin page.
theme_node_submitted in core/modules/node/node.module
Format the "Submitted by username on date/time" for each node
theme_opml_icon in contrib/og/og.module
Return code that emits an XML icon. TODOL: this opml icon belongs in theme.inc
theme_options in contrib/options_element/options_element.inc
Theme an options element.
theme_pager in core/includes/pager.inc
Format a query pager.
theme_pager_first in core/includes/pager.inc
Format a "first page" link.
theme_pager_last in core/includes/pager.inc
Format a "last page" link.
theme_pager_next in core/includes/pager.inc
Format a "next page" link.
theme_pager_previous in core/includes/pager.inc
Format a "previous page" link.
theme_page_manager_handler_rearrange in contrib/ctools/page_manager/theme/page_manager.theme.inc
Turn the rearrange form into a table with tablesorting on.
theme_page_manager_lock in contrib/ctools/page_manager/theme/page_manager.theme.inc
Draw the "this task is locked from editing" box.
theme_page_manager_page_form_argument_table in contrib/ctools/page_manager/plugins/tasks/page.admin.inc
Theme the table for this form.
theme_panels_block_style_render_pane in contrib/panels/plugins/styles/block.inc
Render callback.
theme_panels_list_style_render_panel in contrib/panels/plugins/styles/list.inc
Render callback.
theme_panels_render_display_form in contrib/panels/panels.module
Theme function to render our panel as a form.
theme_panels_rounded_corners_style_render_pane in contrib/panels/plugins/styles/corners/rounded_corners.inc
Render callback for a single pane.
theme_panels_rounded_corners_style_render_panel in contrib/panels/plugins/styles/corners/rounded_corners.inc
Render callback.
theme_panels_stylizer_stylizer_style_render_pane in contrib/panels/panels_stylizer/plugins/styles/stylizer.inc
Pane render theme
theme_panels_stylizer_stylizer_style_render_region in contrib/panels/panels_stylizer/plugins/styles/stylizer.inc
Region render theme.
theme_password in core/includes/form.inc
Format a password field.
theme_password_confirm in core/includes/form.inc
Format a password_confirm item.
theme_phonenumber in contrib/examples/element_example/element_example.module
Theme function to format the output.
theme_poll_choices in core/modules/poll/poll.module
Theme the admin poll form for choices.
theme_profile_admin_overview in core/modules/profile/profile.admin.inc
Theme the profile field overview into a drag and drop enabled table. See alsoprofile_admin_overview()
theme_radio in core/includes/form.inc
Format a radio button.
theme_radios in core/includes/form.inc
Format a set of radio buttons.
theme_scaffolding_example_overview_form in contrib/examples/scaffolding_example/scaffolding_example.admin.inc
Theme the drag-and-drop overview form.
theme_select in core/includes/form.inc
Format a dropdown menu or scrolling selection box.
theme_simplenews_subscription_list in contrib/simplenews/simplenews.admin.inc
Theme subscription administration overview.
theme_site_map_feed_icon in contrib/site_map/site_map.theme.inc
Return a themed feed icon.
theme_site_map_rss_legend in contrib/site_map/site_map.theme.inc
theme_submit in core/includes/form.inc
Theme a form submit button.
theme_summary_overview in contrib/ubercart/uc_store/includes/summaries.inc
Theme a summaries array into a handy div for use with some JS enhancement.
theme_system_admin_by_module in core/modules/system/system.admin.inc
Theme output of the dashboard page.
theme_system_modules in core/modules/system/system.admin.inc
Theme callback for the modules form.
theme_system_modules_uninstall in core/modules/system/system.admin.inc
Themes a table of currently disabled modules.
theme_system_powered_by in core/modules/system/system.module
Format the Powered by Drupal text.
theme_system_themes_form in core/modules/system/system.admin.inc
Theme function for the system themes form.
theme_system_theme_select_form in core/modules/system/system.admin.inc
Theme the theme select form.
theme_tablesort_indicator in core/includes/theme.inc
Return a themed sort icon.
theme_tagadelic_list_box in contrib/tagadelic/tagadelic.module
theme function that renders an entry in tagadelic/list/ views
theme_tapir_table in contrib/ubercart/uc_store/includes/tapir.inc
Themes form data into a table for display.
theme_taxonomy_overview_terms in core/modules/taxonomy/taxonomy.admin.inc
Theme the terms overview as a sortable list of terms. See alsotaxonomy_overview_terms()
theme_taxonomy_overview_vocabularies in core/modules/taxonomy/taxonomy.admin.inc
Theme the vocabulary overview as a sortable list of vocabularies. See alsotaxonomy_overview_vocabularies()
theme_taxonomy_term_select in core/modules/taxonomy/taxonomy.module
Format the selection field for choosing terms (by deafult the default selection field is used).
theme_textarea in core/includes/form.inc
Format a textarea.
theme_textfield in core/includes/form.inc
Format a textfield.
theme_tinymce_admin_button_table in contrib/tinymce/tinymce.admin.inc
Layout for the buttons in the tinymce profile form
theme_token in core/includes/form.inc
Format a form token.
theme_token_help in contrib/token/token.pages.inc
For a given context, builds a formatted list of tokens and descriptions of their replacement values.
theme_token_tree in contrib/token/token.pages.inc
Provide a 'tree' display of nested tokens.
theme_trigger_display in core/modules/trigger/trigger.admin.inc
Display actions assigned to this hook-op combination in a table.
theme_twitter_account_list_form in contrib/twitter/twitter.pages.inc
theme_uc_admin_dashboard in contrib/ubercart/uc_store/uc_store.module
Theme the dashboard on the admin/store page.
theme_uc_attribute_options_form in contrib/ubercart/uc_attribute/uc_attribute.admin.inc
Format an attribute and its options.
theme_uc_cart_block_content in contrib/ubercart/uc_cart/uc_cart.module
Theme the shopping cart block content.
theme_uc_cart_block_summary in contrib/ubercart/uc_cart/uc_cart.module
Theme the summary table at the bottom of the default shopping cart block.
theme_uc_cart_block_title in contrib/ubercart/uc_cart/uc_cart.module
Theme the shopping cart block title
theme_uc_catalog_browse in contrib/ubercart/uc_catalog/uc_catalog.pages.inc
Display a formatted catalog page.
theme_uc_catalog_products in contrib/ubercart/uc_catalog/uc_catalog.module
Display a formatted list of products.
theme_uc_catalog_product_grid in contrib/ubercart/uc_catalog/uc_catalog.module
Display a list of products in grid format().
theme_uc_file_admin_files_form_show in contrib/ubercart/uc_file/uc_file.admin.inc
@see uc_file_admin_files_form_show_files()
theme_uc_file_hook_user_file_downloads in contrib/ubercart/uc_file/uc_file.module
Theme the download table at the user account page.
theme_uc_file_user_downloads in contrib/ubercart/uc_file/uc_file.pages.inc
theme_uc_google_checkout_shipping_settings in contrib/ubercart/payment/uc_google_checkout/uc_google_checkout.admin.inc
theme_uc_google_checkout_taxes_settings in contrib/ubercart/payment/uc_google_checkout/uc_google_checkout.admin.inc
theme_uc_object_attributes_form in contrib/ubercart/uc_attribute/uc_attribute.admin.inc
Display the formatted attribute form. See alsouc_object_attributes_form()
theme_uc_object_options_form in contrib/ubercart/uc_attribute/uc_attribute.admin.inc
Display the option form. See alsouc_object_options_form()
theme_uc_order_state_table in contrib/ubercart/uc_order/uc_order.module
Theme the order state table in the order workflow settings.
theme_uc_order_status_table in contrib/ubercart/uc_order/uc_order.module
Theme the order state table in the order workflow settings.
theme_uc_pane_sort_table in contrib/ubercart/uc_store/uc_store.module
Theme a pane sorting form into a table.
theme_uc_payment_method_table in contrib/ubercart/payment/uc_payment/uc_payment.admin.inc
theme_uc_price_settings_form in contrib/ubercart/uc_store/uc_store.admin.inc
Render the price handler form, adding tabledrag. See alsouc_price_settings_form()
theme_uc_product_attributes in contrib/ubercart/uc_attribute/uc_attribute.admin.inc
Returns a themed set of attribute options for use in order displays.
theme_uc_product_dimensions_form in contrib/ubercart/uc_product/uc_product.module
Put length, width, and height fields on the same line.
theme_uc_product_field_settings_form in contrib/ubercart/uc_product/uc_product.admin.inc
Display the product field settings form. See alsouc_product_field_settings_form()
theme_uc_product_image in contrib/ubercart/uc_product/uc_product.module
Format a product's images with imagecache and an image widget (Colorbox, Thickbox, or Lightbox2).
theme_uc_quote_method_settings in contrib/ubercart/shipping/uc_quote/uc_quote.admin.inc
Display a formatted list of shipping quote methods and form elements. See alsouc_quote_method_settings()
theme_uc_roles_expiration in contrib/ubercart/uc_roles/uc_roles.admin.inc
Theme user role expiration page.
theme_uc_roles_user_expiration in contrib/ubercart/uc_roles/uc_roles.module
Theme the role expiration table within the roles dialog on the account edit page.
theme_uc_shipping_edit_package_fieldset in contrib/ubercart/shipping/uc_shipping/uc_shipping.admin.inc
Display a formatted shipping type fieldset.
theme_uc_shipping_new_package_fieldset in contrib/ubercart/shipping/uc_shipping/uc_shipping.admin.inc
Format and display the products in a shipping type fieldset.
theme_uc_shipping_new_shipment in contrib/ubercart/shipping/uc_shipping/uc_shipping.admin.inc
Format and display the new shipment form.
theme_uc_shipping_package_dimensions in contrib/ubercart/shipping/uc_shipping/uc_shipping.module
Display length, width, and height fields on one line.
theme_uc_shipping_shipment_print in contrib/ubercart/shipping/uc_shipping/uc_shipping.admin.inc
Display the packing slip and shipping labels for printing.
theme_uc_stock_edit_form in contrib/ubercart/uc_stock/uc_stock.admin.inc
@see uc_stock_edit_form()
theme_uc_store_address_fields_form in contrib/ubercart/uc_store/uc_store.module
@see uc_store_address_fields_form()
theme_update_page in core/includes/theme.maintenance.inc
Generate a themed update page.
theme_update_report in core/modules/update/update.report.inc
Theme project status report.
theme_update_version in core/modules/update/update.report.inc
Theme the version display of a project.
theme_upload_attachments in core/modules/upload/upload.module
Displays file attachments in table
theme_upload_form_current in core/modules/upload/upload.module
Theme the attachments list.
theme_userreference_formatter_default in contrib/cck/modules/userreference/userreference.module
Theme function for 'default' userreference field formatter.
theme_user_admin_account in core/modules/user/user.admin.inc
Theme user administration overview.
theme_user_admin_new_role in core/modules/user/user.admin.inc
Theme the new-role form.
theme_user_admin_perm in core/modules/user/user.admin.inc
Theme the administer permissions page.
theme_user_list in core/modules/user/user.module
Make a list of users.
theme_views_bonus_export_feed_icon in contrib/views_bonus/export/views_bonus_export.module
Theme a feed link.
theme_views_export_export_form in contrib/views/views_export/views_export.module
theme_views_mini_pager in contrib/views/theme/theme.inc
theme_views_ui_rearrange_form in contrib/views/includes/admin.inc
Turn the rearrange form into a proper table
theme_views_ui_style_plugin_table in contrib/views/includes/admin.inc
Theme the form for the table style plugin
theme_webform_admin_content in contrib/webform/webform.module
Generate a list of all webforms avaliable on this site.
theme_webform_admin_settings in contrib/webform/webform.module
theme_webform_components_form in contrib/webform/webform_components.inc
Theme the node components form. Use a table to organize the components.
theme_webform_edit_file in contrib/webform/components/file.inc
theme_webform_grid in contrib/webform/components/grid.inc
theme_webform_mail_components_form in contrib/webform/webform.module
Theme the component options for sending e-mails.
theme_webform_mail_fields in contrib/webform/webform.module
Prepare to theme the fields portion of the e-mails sent by webform.
theme_webform_mail_settings_form in contrib/webform/webform.module
Theme the Webform mail settings section of the node form.
theme_webform_results_submissions in contrib/webform/webform_report.inc
Theme the submissions tab of the webform results page.
theme_webform_results_table in contrib/webform/webform_report.inc
Theme the results table displaying all the submissions for a particular node.
theme_webform_time in contrib/webform/components/time.inc
Theme a webform time element.
theme_webform_token_help in contrib/webform/webform.module
theme_wysiwyg_admin_button_table in contrib/wysiwyg/wysiwyg.admin.inc
Layout for the buttons in the Wysiwyg Editor profile form.
theme_wysiwyg_profile_overview in contrib/wysiwyg/wysiwyg.admin.inc
Return HTML for the Wysiwyg profile overview form.
theme_xml_icon in core/includes/theme.inc
Return code that emits an XML icon.
thickbox_field_formatter in contrib/thickbox/thickbox.module
Implementation of hook_field_formatter().
tinymce_process_textarea in contrib/tinymce/tinymce.module
Attach tinymce to a textarea
tinymce_profile_form_build in contrib/tinymce/tinymce.admin.inc
Return an HTML form for profile configuration.
tinymce_profile_overview in contrib/tinymce/tinymce.admin.inc
Controller for tinymce profiles.
token_actions_goto_action_form in contrib/token/token_actions.module
Implementation of a configurable Drupal action. Redirect user to a URL.
token_actions_message_action_form in contrib/token/token_actions.module
token_actions_send_email_action_form in contrib/token/token_actions.module
Return a form definition so the Send email action can be configured.
token_help in contrib/token/token.module
Implements hook_help().
token_rules_input_evaluator_help in contrib/token/token.rules.inc
Some token replacement help for the condition/action edit form.
tracker_page in core/modules/tracker/tracker.pages.inc
Menu callback. Prints a listing of active nodes on the site.
translation_node_overview in core/modules/translation/translation.pages.inc
Overview page for a node's translations.
transliteration_retroactive in contrib/transliteration/transliteration.admin.inc
Form builder function; generate retroactive transliteration confirm form. See alsotransliteration_retroactive_submit()
transliteration_retroactive_submit in contrib/transliteration/transliteration.admin.inc
Form submit function; retroactively transliterate existing file names. See alsotransliteration_retroactive()
uc_attribute_admin in contrib/ubercart/uc_attribute/uc_attribute.admin.inc
Display a paged list and overview of existing product attributes.
uc_cart_block in contrib/ubercart/uc_cart/uc_cart.module
Implementation of hook_block().
uc_cart_cart_settings_overview in contrib/ubercart/uc_cart/uc_cart.admin.inc
Display an overview of the cart settings.
uc_cart_checkout_review in contrib/ubercart/uc_cart/uc_cart.pages.inc
Allow a customer to review their order before finally submitting it. See alsouc_cart_checkout_form()
uc_cart_checkout_settings_overview in contrib/ubercart/uc_cart/uc_cart.admin.inc
Display an overview of the checkout settings.
uc_cart_complete_sale in contrib/ubercart/uc_cart/uc_cart.module
Complete a sale, including adjusting order status and creating user account.
uc_cart_links_creation_help in contrib/ubercart/uc_cart_links/uc_cart_links.admin.inc
Learn how to create cart links for your products.
uc_cart_links_report in contrib/ubercart/uc_cart_links/uc_cart_links.admin.inc
Display the cart links report.
uc_cart_view in contrib/ubercart/uc_cart/uc_cart.pages.inc
Display the cart view page.
uc_catalog_block in contrib/ubercart/uc_catalog/uc_catalog.module
Implementation of hook_block().
uc_catalog_form_alter in contrib/ubercart/uc_catalog/uc_catalog.module
Implementation of hook_form_alter().
uc_catalog_orphaned_products in contrib/ubercart/uc_catalog/uc_catalog.admin.inc
Display links to all products that have not been categorized.
uc_catalog_settings_overview in contrib/ubercart/uc_catalog/uc_catalog.admin.inc
Display an overview of the catalog settings.
uc_checkout_pane_cart in contrib/ubercart/uc_cart/uc_cart_checkout_pane.inc
Display the cart contents for review during checkout.
uc_country_formats_form in contrib/ubercart/uc_store/uc_store.admin.inc
Form to set country address formats. See alsouc_country_formats_form_submit()
uc_country_import_form in contrib/ubercart/uc_store/uc_store.admin.inc
Import settings from a country file. See alsouc_country_import_form_submit()
uc_country_settings_overview in contrib/ubercart/uc_store/uc_store.admin.inc
Display an overview of the country settings.
uc_cybersource_tax_test in contrib/ubercart/payment/uc_cybersource/uc_cybersource.module
uc_file_token_values in contrib/ubercart/uc_file/uc_file.module
Implementation of hook_token_values().
uc_file_user_downloads in contrib/ubercart/uc_file/uc_file.pages.inc
Table builder for user downloads
uc_flatrate_admin_methods in contrib/ubercart/shipping/uc_flatrate/uc_flatrate.admin.inc
List and compare all flatrate shipping quote methods.
uc_order_action_email_form in contrib/ubercart/uc_order/uc_order.ca.inc
@see uc_order_action_email()
uc_order_action_email_invoice in contrib/ubercart/uc_order/uc_order.ca.inc
Email an invoice.
uc_order_action_email_invoice_form in contrib/ubercart/uc_order/uc_order.ca.inc
@see uc_order_action_email_invoice()
uc_order_admin in contrib/ubercart/uc_order/uc_order.admin.inc
Display the main order admin screen, an overview of all received orders.
uc_order_history in contrib/ubercart/uc_order/uc_order.admin.inc
Return the sortable table listing of a customer's orders.
uc_order_invoice in contrib/ubercart/uc_order/uc_order.admin.inc
Display an invoice in the browser, convert it to PDF, or e-mail it as HTML.
uc_order_log in contrib/ubercart/uc_order/uc_order.admin.inc
Display a log of changes made to an order.
uc_order_log_changes in contrib/ubercart/uc_order/uc_order.module
Log changes made to an order.
uc_order_mail in contrib/ubercart/uc_order/uc_order.module
Implementation of hook_mail().
uc_order_pane_admin_comments in contrib/ubercart/uc_order/uc_order.order_pane.inc
Handle the "Admin Comments" order pane.
uc_order_pane_order_comments in contrib/ubercart/uc_order/uc_order.order_pane.inc
Handle the "Order Comments" order pane.
uc_order_settings_overview in contrib/ubercart/uc_order/uc_order.admin.inc
Display an overview of the order settings.
uc_order_view in contrib/ubercart/uc_order/uc_order.admin.inc
Display the order view screen, constructed via hook_order_pane().
uc_payment_settings_overview in contrib/ubercart/payment/uc_payment/uc_payment.admin.inc
uc_paypal_ec_submit in contrib/ubercart/payment/uc_paypal/uc_paypal.pages.inc
uc_price in contrib/ubercart/uc_store/includes/uc_price.inc
The heart of the price modification/displaying system, this function handles price alteration, formatting, theming, and caching.
uc_product_adjustments_form in contrib/ubercart/uc_attribute/uc_attribute.admin.inc
Form builder to associate option combinations with mutations of a product's model number. See alsouc_product_adjustments_form_submit()
uc_product_administration in contrib/ubercart/uc_product/uc_product.admin.inc
List all products.
uc_product_class_default in contrib/ubercart/uc_product/uc_product.admin.inc
Display a list of product classes.
uc_product_features in contrib/ubercart/uc_product/uc_product.admin.inc
Displays the product features tab on a product node edit form.
uc_product_get_picture in contrib/ubercart/uc_product/uc_product.module
Returns an HTML img tag based on a node's attached image.
uc_product_kit_cart_display in contrib/ubercart/uc_product_kit/uc_product_kit.module
Implementation of hook_cart_display().
uc_product_kit_view in contrib/ubercart/uc_product_kit/uc_product_kit.module
Implementation of hook_view().
uc_product_settings_overview in contrib/ubercart/uc_product/uc_product.admin.inc
Display overview of product settings.
uc_product_store_status in contrib/ubercart/uc_product/uc_product.module
Display the status of the product image handlers. See alsouc_product_image_defaults()
uc_product_table in contrib/ubercart/uc_product/uc_product.module
Display product fields in a TAPIr table.
uc_product_view in contrib/ubercart/uc_product/uc_product.module
Implementation of hook_view().
uc_quote_overview in contrib/ubercart/shipping/uc_quote/uc_quote.admin.inc
Display an overview of the shipping quote settings.
uc_reports_customers in contrib/ubercart/uc_reports/uc_reports.admin.inc
Display the customer report
uc_reports_products in contrib/ubercart/uc_reports/uc_reports.admin.inc
Display the product reports
uc_reports_products_custom in contrib/ubercart/uc_reports/uc_reports.admin.inc
Display the custom product report.
uc_reports_sales_custom in contrib/ubercart/uc_reports/uc_reports.admin.inc
Display the custom sales report form and table.
uc_reports_sales_summary in contrib/ubercart/uc_reports/uc_reports.admin.inc
Display the sales summary report.
uc_reports_sales_year in contrib/ubercart/uc_reports/uc_reports.admin.inc
Display the yearly sales report form and table.
uc_roles_expiration in contrib/ubercart/uc_roles/uc_roles.admin.inc
Menu callback for viewing expirations.
uc_shipping_order_packages in contrib/ubercart/shipping/uc_shipping/uc_shipping.admin.inc
Display a list of an order's packaged products.
uc_shipping_order_pane_packages in contrib/ubercart/shipping/uc_shipping/uc_shipping.module
Shipping order pane callback. See alsouc_shipping_order_pane()
uc_shipping_order_shipments in contrib/ubercart/shipping/uc_shipping/uc_shipping.admin.inc
Display a list of shipments for an order.
uc_shipping_package_view in contrib/ubercart/shipping/uc_shipping/uc_shipping.module
Display the details of a package.
uc_shipping_shipment_edit in contrib/ubercart/shipping/uc_shipping/uc_shipping.admin.inc
Create or edit a shipment. See alsotheme_uc_shipping_package_dimensions()
uc_shipping_shipment_view in contrib/ubercart/shipping/uc_shipping/uc_shipping.admin.inc
Display shipment details.
uc_stock_report in contrib/ubercart/uc_stock/uc_stock.admin.inc
Display a stock report for products with stock tracking enabled.
uc_store_admin in contrib/ubercart/uc_store/uc_store.admin.inc
Display dashboard to other admin pages for the store.
uc_store_configuration_page in contrib/ubercart/uc_store/uc_store.admin.inc
Display store configuration page.
uc_store_customers in contrib/ubercart/uc_store/uc_store.admin.inc
Display customer administration page.
uc_store_customer_orders in contrib/ubercart/uc_store/uc_store.admin.inc
Display a list of orders made by a customer.
uc_store_encryption_errors in contrib/ubercart/uc_store/uc_store.module
Log encryption errors to watchdog.
uc_store_footer in contrib/ubercart/uc_store/uc_store.module
Implementation of hook_footer().
uc_store_js_util in contrib/ubercart/uc_store/uc_store.module
A handler for Javascript helper functions...
uc_store_reports in contrib/ubercart/uc_store/uc_store.admin.inc
Display main reports page.
uc_store_store_settings_overview in contrib/ubercart/uc_store/uc_store.admin.inc
Display an overview of the store settings.
uc_store_ubercart_help_tokens in contrib/ubercart/uc_store/uc_store.admin.inc
Display the tokens help page.
uc_taxes_admin_settings in contrib/ubercart/uc_taxes/uc_taxes.admin.inc
Display a list of tax rates.
uc_tax_report_report_page in contrib/ubercart/uc_tax_report/uc_tax_report.module
Display the sales tax report form and table.
uc_ups_fulfill_order in contrib/ubercart/shipping/uc_ups/uc_ups.module
Shipment creation callback.
uc_ups_quote in contrib/ubercart/shipping/uc_ups/uc_ups.module
Callback for retrieving a UPS shipping quote.
uc_usps_quote in contrib/ubercart/shipping/uc_usps/uc_usps.module
Callback for retrieving USPS shipping quote.
uc_weightquote_admin_methods in contrib/ubercart/shipping/uc_weightquote/uc_weightquote.admin.inc
List and compare all weight-based shipping quote methods.
update_results_page in core/update.php
update_status in core/modules/update/update.report.inc
Menu callback. Generate a page about the update status of projects.
update_task_list in core/update.php
Add the update task list to the current page.
upload_js in core/modules/upload/upload.module
Menu-callback for JavaScript-based uploads.
upload_nodeapi in core/modules/upload/upload.module
Implementation of hook_nodeapi().
userreference_user in contrib/cck/modules/userreference/userreference.module
Implementation of hook_user().
user_admin_access in core/modules/user/user.admin.inc
Menu callback: list all access rules
user_admin_account in core/modules/user/user.admin.inc
Form builder; User administration page. See alsouser_admin_account_validate()
user_block in core/modules/user/user.module
Implementation of hook_block().
user_edit_form in core/modules/user/user.module
user_login_block in core/modules/user/user.module
user_user in core/modules/user/user.module
Implementation of hook_user().
user_view in core/modules/user/user.pages.inc
Menu callback; Displays a user or user profile page.
views_ajax in contrib/views/includes/ajax.inc
Menu callback to load a view via AJAX.
views_ajax_form_wrapper in contrib/views/includes/ajax.inc
Wrapper around drupal_build_form to handle some AJAX stuff automatically. This makes some assumptions about the client.
views_analyze_format_result in contrib/views/includes/analyze.inc
Format the analyze result into a message string.
views_content_views_panes_content_type_admin_info in contrib/ctools/views_content/plugins/content_types/views_panes.inc
Returns the administrative title for a type.
views_content_views_panes_content_type_edit_form in contrib/ctools/views_content/plugins/content_types/views_panes.inc
Returns an edit form for a block.
views_export_export_form_submit in contrib/views/views_export/views_export.module
views_ui_admin_convert in contrib/views/includes/convert.inc
Page callback for the tools - Views 1 convert page
views_ui_break_lock_confirm in contrib/views/includes/admin.inc
Page to delete a view.
views_ui_display_tab in contrib/views/includes/admin.inc
Generate the summary output for a single display to render in a tab.
views_ui_edit_page in contrib/views/includes/admin.inc
The main view edit page
views_ui_list_views in contrib/views/includes/admin.inc
Page callback to list views in the system.
views_ui_preview in contrib/views/includes/admin.inc
Page callback for the live preview.
webform_admin_content in contrib/webform/webform.module
Menu callback for admin/content/webform. Displays all webforms on the site.
webform_client_form in contrib/webform/webform.module
Client form generation function. If this is displaying an existing submission, pass in the $submission variable with the contents of the submission to be displayed.
webform_client_form_submit in contrib/webform/webform.module
webform_component_edit_form in contrib/webform/webform_components.inc
webform_results_analysis in contrib/webform/webform_report.inc
Provides a simple analysis of all submissions to a webform.
webform_results_submissions in contrib/webform/webform_report.inc
Retrieve lists of submissions for a given webform.
webform_results_table in contrib/webform/webform_report.inc
Create a table containing all submitted values for a webform node.
webform_view in contrib/webform/webform.module
Implementation of hook_view().
wysiwyg_dialog in contrib/wysiwyg/wysiwyg.dialog.inc
Menu callback; Output a wysiwyg plugin dialog page.
wysiwyg_profile_overview in contrib/wysiwyg/wysiwyg.admin.inc
Display overview of setup Wysiwyg Editor profiles; menu callback.
xmlsitemap_add_form_entity_summary in contrib/xmlsitemap/xmlsitemap.admin.inc
Add a table summary for an entity and its bundles.
xmlsitemap_check_status in contrib/xmlsitemap/xmlsitemap.inc
Check the status of all hook_requirements() from any xmlsitemap modules.
xmlsitemap_custom_list_links in contrib/xmlsitemap/xmlsitemap_custom/xmlsitemap_custom.admin.inc
xmlsitemap_sitemap_list_form in contrib/xmlsitemap/xmlsitemap.admin.inc
Render a tableselect list of XML sitemaps for the main admin page.
xmlsitemap_var in contrib/xmlsitemap/xmlsitemap.module
Internal implementation of variable_get().
zen_blocks in contrib/zen/template.php
Return a set of blocks available for the current user.
zen_show_blocks_discovery in contrib/zen/template.php
Examine the $show_blocks variable before template_preprocess_page() is called.
_aggregator_page_list in core/modules/aggregator/aggregator.pages.inc
Prints an aggregator page listing a number of feed items.
_backup_migrate_ui_backup_settings_form in contrib/backup_migrate/includes/profiles.inc
Get a form to configure the profile.
_batch_progress_page_nojs in core/includes/batch.inc
Batch processing page without JavaScript support.
_ca_custom_php_variables_table in contrib/ubercart/ca/ca.ca.inc
Return a fieldset used to display available variables for custom PHP conditions and actions.
_content_alter_fields_finished in contrib/cck/includes/content.admin.inc
Content Replace Fields 'finished' callback.
_date_formatter_settings in contrib/date/date/date_admin.inc
Formatter settings.
_date_repeat_rrule_process in contrib/date/date_repeat/date_repeat_form.inc
Generate the repeat setting form.
_db_error_page in core/includes/database.inc
Helper function to show fatal database errors.
_devel_node_access_get_grant_list in contrib/devel/devel_node_access.module
Helper function to create a list of the grants returned by hook_node_grants().
_eminline_url_parse_full_links in contrib/emfield/contrib/eminline/eminline.module
If one of our allowed providers knows what to do with the url, then let it embed the video.
_emthumb_imagecache_formatter_default in contrib/emfield/contrib/emthumb/emthumb.theme.inc
Returns the path to the imagecache image, or the original item if it's external.
_event_block_upcoming in contrib/event/event.module
Helper function for upcoming events block. Can be called by other modules.See alsoevent_block_upcoming
_event_get_taxonomy_control in contrib/event/event.module
Returns a dropdown event taxonomy term input control.
_event_get_type_control in contrib/event/event.module
Returns a dropdown event-enabled content type input control.
_event_nav in contrib/event/event.module
Build the navigation links for the calendar views
_form_options_validate in contrib/options_element/options_element.inc
Logic function for form_options_validate(). Do not call directly. See alsoform_options_validate()
_gmap_parse_macro in contrib/gmap/gmap_parse_macro.inc
_gmap_prepare in contrib/gmap/gmap.module
Handle filter preparation.
_image_import_batch_finished in contrib/image/contrib/image_import/image_import.pages.inc
Batch finished callback for image import.
_image_import_recursive_delete_empty_directories_batch_op in contrib/image/contrib/image_import/image_import.pages.inc
Batch operation callback for deletion of empty directories after the import.
_locale_translate_seek in core/includes/locale.inc
Perform a string search and display results in a table
_node_mass_update_batch_finished in core/modules/node/node.admin.inc
Node Mass Update Batch 'finished' callback.
_page_manager_get_operation_content in contrib/ctools/page_manager/page_manager.admin.inc
Fetch the content for an operation, after it's been discovered from arguments.
_print_format_link_aux in contrib/print/print.module
Auxiliary function to set the link text and html flag
_print_pdf_tcpdf in contrib/print/print_pdf/print_pdf.pages.inc
Generate the PDF file using the TCPDF library
_print_var_generator in contrib/print/print.pages.inc
Post-processor that fills the array for the template with common details
_scaffolding_example_record_links in contrib/examples/scaffolding_example/scaffolding_example.admin.inc
Build the edit and delete links for a single record. See alsoscaffolding_example_overview_form()
_scheduler_timecheck in contrib/scheduler/scheduler.module
_site_map_audio in contrib/site_map/site_map.module
_site_map_blogs in contrib/site_map/site_map.module
Render the latest blog authors
_site_map_books in contrib/site_map/site_map.module
Render books
_site_map_faq in contrib/site_map/site_map.module
_site_map_front_page in contrib/site_map/site_map.module
_site_map_menus in contrib/site_map/site_map.module
Render menus
_site_map_menu_tree_output in contrib/site_map/site_map.module
This is a clone of the core menu_tree_output() function with the exception of theme('site_map_menu_tree') for theming override reasons.
_site_map_taxonomy_tree in contrib/site_map/site_map.module
Render taxonomy tree
_site_map_video in contrib/site_map/site_map.module
_system_sql in core/modules/system/system.admin.inc
Theme a SQL result table.
_twitter_account_list_row in contrib/twitter/twitter.pages.inc
_uc_catalog_navigation in contrib/ubercart/uc_catalog/uc_catalog.module
Emulate Drupal's menu system, but based soley on the structure of "Product Catalog".
_views_bonus_export_shared_preprocess in contrib/views_bonus/export/views_bonus_export.module
Shared helper function for export preprocess functions.
_webform_analysis_rows_grid in contrib/webform/components/grid.inc
Calculate and returns statistics about results for this component from all submission to this webform. The output of this function will be displayed under the "results" tab then "analysis".
_webform_confirmation in contrib/webform/webform.module
Prints the confirmation message after a successful submission.
_webform_edit_email in contrib/webform/components/email.inc
Create a set of form items to be displayed on the form for editing this component. Use care naming the form items, as this correlates directly to the database schema. The component "Name" and "Description" fields are added to every...
_webform_edit_grid in contrib/webform/components/grid.inc
Create a set of form items to be displayed on the form for editing this component. Use care naming the form items, as this correlates directly to the database schema. The component "Name" and "Description" fields are added to every...
_webform_edit_hidden in contrib/webform/components/hidden.inc
Create a set of form items to be displayed on the form for editing this component. Use care naming the form items, as this correlates directly to the database schema. The component "Name" and "Description" fields are added to every...
_webform_edit_markup in contrib/webform/components/markup.inc
Create a set of form items to be displayed on the form for editing this component. Use care naming the form items, as this correlates directly to the database schema. The component "Name" and "Description" fields are added to every...
_webform_edit_select in contrib/webform/components/select.inc
Create a set of form items to be displayed on the form for editing this component. Use care naming the form items, as this correlates directly to the database schema. The component "Name" and "Description" fields are added to every...
_webform_edit_textarea in contrib/webform/components/textarea.inc
Create a set of form items to be displayed on the form for editing this component. Use care naming the form items, as this correlates directly to the database schema. The component "Name" and "Description" fields are added to every...
_webform_edit_textfield in contrib/webform/components/textfield.inc
Create a set of form items to be displayed on the form for editing this component. Use care naming the form items, as this correlates directly to the database schema. The component "Name" and "Description" fields are added to every...
_webform_edit_validate_select in contrib/webform/components/select.inc
Element validation callback. Ensure keys are not duplicated.
_xmlsitemap_build_conditions in contrib/xmlsitemap/xmlsitemap.inc
Condition builder for queries.

Code

core/includes/theme.inc, line 599

<?php
function theme() {
  $args = func_get_args();
  $hook = array_shift($args);

  static $hooks = NULL;
  if (!isset($hooks)) {
    init_theme();
    $hooks = theme_get_registry();
  }

  if (is_array($hook)) {
    foreach ($hook as $candidate) {
      if (isset($hooks[$candidate])) {
        break;
      }
    }
    $hook = $candidate;
  }

  if (!isset($hooks[$hook])) {
    return;
  }

  $info = $hooks[$hook];
  global $theme_path;
  $temp = $theme_path;
  // point path_to_theme() to the currently used theme path:
  $theme_path = $hooks[$hook]['theme path'];

  // Include a file if the theme function or preprocess function is held elsewhere.
  if (!empty($info['include files'])) {
    foreach ($info['include files'] as $include_file) {
      include_once($include_file);
    }
  }

  // Handle compatibility with theme_registry_alters to prevent failures.
  if (!empty($info['file'])) {
    static $included_files = array();
    $include_file = $info['file'];
    if (!empty($info['path'])) {
      $include_file = $info['path'] .'/'. $include_file;
    }

    if (empty($included_files[$include_file])) {
      // Statically cache files we've already tried to include so we don't
      // run unnecessary file_exists calls.
      $included_files[$include_file] = TRUE;
      if (file_exists('./'. $include_file)) {
        include_once('./'. $include_file);
      }
    }
  }

  if (isset($info['function'])) {
    // The theme call is a function.
    $output = call_user_func_array($info['function'], $args);
  }
  else {
    // The theme call is a template.
    $variables = array(
      'template_files' => array()
    );
    if (!empty($info['arguments'])) {
      $count = 0;
      foreach ($info['arguments'] as $name => $default) {
        $variables[$name] = isset($args[$count]) ? $args[$count] : $default;
        $count++;
      }
    }

    // default render function and extension.
    $render_function = 'theme_render_template';
    $extension = '.tpl.php';

    // Run through the theme engine variables, if necessary
    global $theme_engine;
    if (isset($theme_engine)) {
      // If theme or theme engine is implementing this, it may have
      // a different extension and a different renderer.
      if ($hooks[$hook]['type'] != 'module') {
        if (function_exists($theme_engine .'_render_template')) {
          $render_function = $theme_engine .'_render_template';
        }
        $extension_function = $theme_engine .'_extension';
        if (function_exists($extension_function)) {
          $extension = $extension_function();
        }
      }
    }

    if (isset($info['preprocess functions']) && is_array($info['preprocess functions'])) {
      // This construct ensures that we can keep a reference through
      // call_user_func_array.
      $args = array(&$variables, $hook);
      foreach ($info['preprocess functions'] as $preprocess_function) {
        if (function_exists($preprocess_function)) {
          call_user_func_array($preprocess_function, $args);
        }
      }
    }

    // Get suggestions for alternate templates out of the variables
    // that were set. This lets us dynamically choose a template
    // from a list. The order is FILO, so this array is ordered from
    // least appropriate first to most appropriate last.
    $suggestions = array();

    if (isset($variables['template_files'])) {
      $suggestions = $variables['template_files'];
    }
    if (isset($variables['template_file'])) {
      $suggestions[] = $variables['template_file'];
    }

    if ($suggestions) {
      $template_file = drupal_discover_template($info['theme paths'], $suggestions, $extension);
    }

    if (empty($template_file)) {
      $template_file = $hooks[$hook]['template'] . $extension;
      if (isset($hooks[$hook]['path'])) {
        $template_file = $hooks[$hook]['path'] .'/'. $template_file;
      }
    }
    $output = $render_function($template_file, $variables);
  }
  // restore path_to_theme()
  $theme_path = $temp;
  // Add final markup to the full page.
  if ($hook == 'page' || $hook == 'book_export_html') {
    $output = drupal_final_markup($output);
  }
  return $output;
}
?>