Skip to content
Snippets Groups Projects
Commit 03c644b2 authored by Jennifer Hodgdon's avatar Jennifer Hodgdon
Browse files

Issue #716496 by killtheliterate, rootwork: Make sure all core template files...

Issue #716496 by killtheliterate, rootwork: Make sure all core template files are in themeable group
parent bc41802c
No related branches found
No related tags found
No related merge requests found
Showing
with 34 additions and 0 deletions
......@@ -33,6 +33,8 @@
*
* @see template_preprocess_comment_wrapper()
* @see theme_comment_wrapper()
*
* @ingroup themeable
*/
?>
<div id="comments" class="<?php print $classes; ?>"<?php print $attributes; ?>>
......
......@@ -55,6 +55,8 @@
* @see template_preprocess_comment()
* @see template_process()
* @see theme_comment()
*
* @ingroup themeable
*/
?>
<div class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
......
......@@ -40,6 +40,8 @@
*
* @see template_preprocess_field()
* @see theme_field()
*
* @ingroup themeable
*/
?>
<!--
......
......@@ -76,6 +76,8 @@
* @see template_preprocess()
* @see template_preprocess_node()
* @see template_process()
*
* @ingroup themeable
*/
?>
<div id="node-<?php print $node->nid; ?>" class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
......
......@@ -17,6 +17,8 @@
* @see template_preprocess()
* @see template_preprocess_overlay()
* @see template_process()
*
* @ingroup themeable
*/
?>
......
......@@ -15,6 +15,8 @@
* - $vote: The choice number of the current user's vote.
*
* @see template_preprocess_poll_results()
*
* @ingroup themeable
*/
?>
<div class="poll">
......
......@@ -12,6 +12,8 @@
* form_alter hooks.
*
* @see template_preprocess_poll_vote()
*
* @ingroup themeable
*/
?>
<div class="poll">
......
......@@ -60,6 +60,8 @@
* @see template_preprocess()
* @see template_preprocess_search_result()
* @see template_process()
*
* @ingroup themeable
*/
?>
<li class="<?php print $classes; ?>"<?php print $attributes; ?>>
......
......@@ -19,6 +19,8 @@
*
*
* @see template_preprocess_search_results()
*
* @ingroup themeable
*/
?>
<?php if ($search_results): ?>
......
......@@ -39,6 +39,8 @@
* @see template_preprocess()
* @see template_preprocess_html()
* @see template_process()
*
* @ingroup themeable
*/
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
......
......@@ -9,6 +9,8 @@
*
* @see template_preprocess()
* @see template_preprocess_maintenance_page()
*
* @ingroup themeable
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
......
......@@ -68,6 +68,8 @@
* @see template_preprocess_page()
* @see template_process()
* @see html.tpl.php
*
* @ingroup themeable
*/
?>
......
......@@ -24,6 +24,8 @@
* @see template_preprocess()
* @see template_preprocess_region()
* @see template_process()
*
* @ingroup themeable
*/
?>
<?php if ($content): ?>
......
......@@ -36,6 +36,8 @@
* @see template_preprocess()
* @see template_preprocess_taxonomy_term()
* @see template_process()
*
* @ingroup themeable
*/
?>
<div id="taxonomy-term-<?php print $term->tid; ?>" class="<?php print $classes; ?>">
......
......@@ -19,6 +19,8 @@
*
* @see template_preprocess()
* @see template_preprocess_toolbar()
*
* @ingroup themeable
*/
?>
<div id="toolbar" class="<?php print $classes; ?> clearfix">
......
......@@ -12,6 +12,8 @@
* check_plain() before use.
*
* @see template_preprocess_user_picture()
*
* @ingroup themeable
*/
?>
<?php if ($user_picture): ?>
......
......@@ -30,6 +30,8 @@
* @see user-profile-item.tpl.php
* Where the html is handled for each item in the group.
* @see template_preprocess_user_profile()
*
* @ingroup themeable
*/
?>
<div class="profile"<?php print $attributes; ?>>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment