Default theme implementations

  1. drupal
    1. drupal6
    2. drupal7

Functions and templates that present output to the user, and can be implemented by themes.

Drupal's presentation layer is a pluggable system known as the theme layer. Each theme can take control over most of Drupal's output, and has complete control over the CSS.

Inside Drupal, the theme layer is utilized by the use of the theme() function, which is passed the name of a component (the theme hook) and several arguments. For example, theme('table', $header, $rows); Additionally, the theme() function can take an array of theme hooks, which can be used to provide 'fallback' implementations to allow for more specific control of output. For example, the function: theme(array('table__foo', 'table'), $header, $rows) would look to see if 'table__foo' is registered anywhere; if it is not, it would 'fall back' to the generic 'table' implementation. This can be used to attach specific theme functions to named objects, allowing the themer more control over specific types of output.

As of Drupal 6, every theme hook is required to be registered by the module that owns it, so that Drupal can tell what to do with it and to make it simple for themes to identify and override the behavior for these calls.

The theme hooks are registered via hook_theme(), which returns an array of arrays with information about the hook. It describes the arguments the function or template will need, and provides defaults for the template in case they are not filled in. If the default implementation is a function, by convention it is named theme_HOOK().

Each module should provide a default implementation for theme_hooks that it registers. This implementation may be either a function or a template; if it is a function it must be specified via hook_theme(). By convention, default implementations of theme hooks are named theme_HOOK. Default template implementations are stored in the module directory.

Drupal's default template renderer is a simple PHP parsing engine that includes the template and stores the output. Drupal's theme engines can provide alternate template engines, such as XTemplate, Smarty and PHPTal. The most common template engine is PHPTemplate (included with Drupal and implemented in phptemplate.engine, which uses Drupal's default template renderer.

In order to create theme-specific implementations of these hooks, themes can implement their own version of theme hooks, either as functions or templates. These implementations will be used instead of the default implementation. If using a pure .theme without an engine, the .theme is required to implement its own version of hook_theme() to tell Drupal what it is implementing; themes utilizing an engine will have their well-named theming functions automatically registered for them. While this can vary based upon the theme engine, the standard set by phptemplate is that theme functions should be named either phptemplate_HOOK or THEMENAME_HOOK. For example, for Drupal's default theme (Garland) to implement the 'table' hook, the phptemplate.engine would find phptemplate_table() or garland_table(). The ENGINE_HOOK() syntax is preferred, as this can be used by sub-themes (which are themes that share code but use different stylesheets).

The theme system is described and defined in theme.inc.

See also

theme()

hook_theme()

Dateien

NameBeschreibung
theme.incThe theme system, which controls the output of Drupal.

Funktionen & Methoden

NameBeschreibung
theme_admin_blockThis function formats an administrative block for display.
theme_admin_block_contentThis function formats the content of an administrative block.
theme_admin_pageThis function formats an administrative page for viewing.
theme_aggregator_block_itemFormat an individual feed item for display in the block.
theme_aggregator_categorize_itemsTheme the page list form for assigning categories.
theme_aggregator_page_opmlTheme the OPML feed output.
theme_aggregator_page_rssTheme the RSS output.
theme_book_admin_tableTheme function for the book administration page form.
theme_book_title_linkGenerate the HTML output for a link to a book title when used as a block title.
theme_breadcrumbReturn a themed breadcrumb trail.
theme_buttonTheme a form button.
theme_checkboxFormat a checkbox.
theme_checkboxesFormat a set of checkboxes.
theme_closureExecute hook_footer() which is run at the end of the page right before the close of the body tag.
theme_color_scheme_formTheme the color form.
theme_comment_blockReturns a formatted list of recent comments to be displayed in the comment block.
theme_comment_flat_collapsedTheme comment flat collapsed view.
theme_comment_flat_expandedTheme comment flat expanded view.
theme_comment_post_forbiddenTheme a "you can't post comments" notice.
theme_comment_submittedTheme a "Submitted by ..." notice.
theme_comment_thread_collapsedTheme comment thread collapsed view.
theme_comment_thread_expandedTheme comment thread expanded view.
theme_comment_viewTheme a single comment block.
theme_dateFormat a date selection element.
theme_dblog_filtersTheme dblog administration filter selector.
theme_feed_iconReturn code that emits an feed icon.
theme_fieldsetFormat a group of form items.
theme_fileFormat a file upload field.
theme_filter_admin_orderTheme filter order configuration form.
theme_filter_admin_overviewTheme the admin overview form.
theme_filter_guidelinesFormat guidelines for a text format.
theme_filter_tipsRender HTML for a set of filter tips.
theme_filter_tips_more_infoFormat a link to the more extensive filter tips.
theme_formFormat a form.
theme_form_elementReturn a themed form element.
theme_hiddenFormat a hidden form field.
theme_imageReturn a themed image.
theme_image_buttonTheme a form image button.
theme_indentationCreate a standard indentation div. Used for drag and drop tables.
theme_item_listReturn a themed list of items.
theme_linksReturn a themed set of links.
theme_listReturn a themed list of items from a drupal_render() style array.
theme_locale_languages_overview_formTheme the language overview form.
theme_locale_translation_filtersTheme locale translation filter selector.
theme_markReturn a themed marker, useful for marking new or updated content.
theme_menu_itemGenerate the HTML output for a menu item and submenu.
theme_menu_item_linkGenerate the HTML output for a single menu link.
theme_menu_local_taskGenerate the HTML output for a single local task link.
theme_menu_local_tasksReturns the rendered local tasks. The default implementation renders them as tabs.
theme_menu_overview_formTheme the menu overview form into a table.
theme_menu_treeGenerate the HTML output for a menu tree
theme_meta_generator_headerSend Drupal and the major version number in the HTTP headers.
theme_meta_generator_htmlSend Drupal and the major version number in the META GENERATOR HTML.
theme_more_help_linkReturns code that emits the 'more help'-link.
theme_more_linkReturns code that emits the 'more' link used on blocks.
theme_node_add_listDisplay the list of available node types for node creation.
theme_node_admin_nodesTheme node administration overview.
theme_node_filtersTheme node administration filter selector.
theme_node_filter_formTheme node administration filter form.
theme_node_formPresent a node submission form.
theme_node_linksFormat a set of node links.
theme_node_listFormat a listing of links to nodes.
theme_node_log_messageTheme a log message.
theme_node_previewDisplay a node preview for display during node creation and editing.
theme_node_search_adminTheme the content ranking part of the search settings admin page.
theme_node_submittedFormat the "Submitted by username on date/time" for each node
theme_pagerFormat a query pager.
theme_pager_firstFormat a "first page" link.
theme_pager_lastFormat a "last page" link.
theme_pager_linkFormat a link to a specific query result page.
theme_pager_nextFormat a "next page" link.
theme_pager_previousFormat a "previous page" link.
theme_passwordFormat a password field.
theme_placeholderFormats text for emphasized display in a placeholder inside a sentence. Used automatically by t().
theme_poll_choicesTheme the admin poll form for choices.
theme_profile_admin_overviewTheme the profile field overview into a drag and drop enabled table.
theme_progress_barReturn a themed progress bar.
theme_radioFormat a radio button.
theme_radiosFormat a set of radio buttons.
theme_selectFormat a dropdown menu or scrolling selection box.
theme_status_messagesReturn a themed set of status and/or error messages. The messages are grouped by type.
theme_status_reportTheme requirements status report.
theme_submenuReturn a themed submenu, typically displayed under the tabs.
theme_submitTheme a form submit button.
theme_syslog_formatFormat a system log entry.
theme_system_admin_by_moduleTheme output of the dashboard page.
theme_system_compact_linkDisplay the link to show or hide inline help descriptions.
theme_system_modules_fieldsetTheme callback for the modules form.
theme_system_modules_incompatibleThemes an incompatible message.
theme_system_modules_uninstallThemes a table of currently disabled modules.
theme_system_powered_byFormat the Powered by Drupal text.
theme_system_themes_formTheme function for the system themes form.
theme_system_theme_select_formTheme the theme select form.
theme_tableReturn a themed table.
theme_tableselectFormat a table with radio buttons or checkboxes.
theme_tablesort_indicatorReturn a themed sort icon.
theme_table_select_header_cellReturns a header cell for tables that have a select all functionality.
theme_task_listReturn a themed list of maintenance tasks to perform.
theme_taxonomy_overview_termsTheme the terms overview as a sortable list of terms.
theme_taxonomy_overview_vocabulariesTheme the vocabulary overview as a sortable list of vocabularies.
theme_taxonomy_term_selectFormat the selection field for choosing terms (by default the default selection field is used).
theme_textareaFormat a textarea.
theme_textfieldFormat a textfield.
theme_text_format_wrapperReturn a themed text format form element.
theme_trigger_displayDisplay actions assigned to this hook-op combination in a table.
theme_update_reportTheme project status report.
theme_update_versionTheme the version display of a project.
theme_upload_attachmentsDisplays file attachments in table
theme_upload_form_currentTheme the attachments list.
theme_upload_form_newTheme the attachment form. Note: required to output prefix/suffix.
theme_usernameFormat a username.
theme_user_admin_accountTheme user administration overview.
theme_user_admin_new_roleTheme the new-role form.
theme_user_admin_permTheme the administer permissions page.
theme_user_filtersTheme user administration filter selector.
theme_user_filter_formTheme user administration filter form.
theme_user_listMake a list of users.
theme_user_signatureTheme output of user signature.

includes/theme.inc, line 1083

Kommentare

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen