summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-08-08 07:50:38 +0000
committerDries Buytaert <dries@buytaert.net>2007-08-08 07:50:38 +0000
commitd713b11adbd11e6704cabbb52a8c349277fac407 (patch)
treef427d88f29da6ff7dfeacb2a5983a46524b30300 /modules
parent6e15cf912442ca3efe33712206f6586032dd8ab1 (diff)
downloadbrdo-d713b11adbd11e6704cabbb52a8c349277fac407.tar.gz
brdo-d713b11adbd11e6704cabbb52a8c349277fac407.tar.bz2
- I forgot to remove these earlier when we renamed them.
Diffstat (limited to 'modules')
-rw-r--r--modules/user/user_profile.tpl.php26
-rw-r--r--modules/user/user_profile_category.tpl.php10
-rw-r--r--modules/user/user_profile_item.tpl.php7
3 files changed, 0 insertions, 43 deletions
diff --git a/modules/user/user_profile.tpl.php b/modules/user/user_profile.tpl.php
deleted file mode 100644
index d5cf6ea12..000000000
--- a/modules/user/user_profile.tpl.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-// $Id$
-
-/*
- * In order to customize user profiles, replace the HTML below with your own
- * wrapper and then sprinkle drupal_render($account->content[foo]) calls
- * where you need each piece of data to appear. Replace the 'foo' in the
- * example above with the element that is desired such as
- * drupal_render($account->content['summary']['member_for']).
- */
-
-// Uncomment the line below to see what data is available in this template.
-# print '<pre>'. check_plain(print_r($account->content, 1)) .'</pre>';
-
- ?>
-
-<div class="profile">
-
-<?php
-
-// The following line should always be the last PHP in this file. Do not remove.
-print drupal_render($account->content);
-
-?>
-
-</div> \ No newline at end of file
diff --git a/modules/user/user_profile_category.tpl.php b/modules/user/user_profile_category.tpl.php
deleted file mode 100644
index bd5c5ae9b..000000000
--- a/modules/user/user_profile_category.tpl.php
+++ /dev/null
@@ -1,10 +0,0 @@
-<?php
-// $Id$
-?>
-<?php if ($element['#title']): ?>
- <h3><?php print $element['#title'] ?></h3>
-<?php endif; ?>
-
-<dl<?php (isset($element['#attributes']) ? print drupal_attributes($element['#attributes']) : '') ?>>
-<?php print $element['#children'] ?>
-</dl>
diff --git a/modules/user/user_profile_item.tpl.php b/modules/user/user_profile_item.tpl.php
deleted file mode 100644
index 7c8d7ee2c..000000000
--- a/modules/user/user_profile_item.tpl.php
+++ /dev/null
@@ -1,7 +0,0 @@
-<?php
-// $Id$
-
- $attributes = isset($element['#attributes']) ? ' '. drupal_attributes($element['#attributes']) : '';
-?>
-<dt<?php print $attributes ?>><?php print $element['#title'] ?></dt>
-<dd<?php print $attributes ?>><?php print $element['#value'] ?></dd>