summaryrefslogtreecommitdiff
path: root/themes/engines/phptemplate
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-04-29 16:15:39 +0000
committerDries Buytaert <dries@buytaert.net>2007-04-29 16:15:39 +0000
commitdad5275365da534d4d753c9c89e08346b963bf34 (patch)
treec2473313d9544624e2d9fa24fe519447b537f755 /themes/engines/phptemplate
parentad67a17f8be0ebbb40c60ba6bc26c20da6a122e7 (diff)
downloadbrdo-dad5275365da534d4d753c9c89e08346b963bf34.tar.gz
brdo-dad5275365da534d4d753c9c89e08346b963bf34.tar.bz2
- Patch #137236 by merlin: these template files are now deprecated.
Diffstat (limited to 'themes/engines/phptemplate')
-rw-r--r--themes/engines/phptemplate/block.tpl.php8
-rw-r--r--themes/engines/phptemplate/box.tpl.php8
-rw-r--r--themes/engines/phptemplate/comment.tpl.php25
-rw-r--r--themes/engines/phptemplate/default.tpl.php1
-rw-r--r--themes/engines/phptemplate/node.tpl.php29
5 files changed, 0 insertions, 71 deletions
diff --git a/themes/engines/phptemplate/block.tpl.php b/themes/engines/phptemplate/block.tpl.php
deleted file mode 100644
index 8ba204d40..000000000
--- a/themes/engines/phptemplate/block.tpl.php
+++ /dev/null
@@ -1,8 +0,0 @@
-<div id="block-<?php print $block->module .'-'. $block->delta; ?>" class="block block-<?php print $block->module ?>">
-
-<?php if ($block->subject): ?>
- <h2><?php print $block->subject ?></h2>
-<?php endif;?>
-
- <div class="content"><?php print $block->content ?></div>
-</div>
diff --git a/themes/engines/phptemplate/box.tpl.php b/themes/engines/phptemplate/box.tpl.php
deleted file mode 100644
index 84d810cf0..000000000
--- a/themes/engines/phptemplate/box.tpl.php
+++ /dev/null
@@ -1,8 +0,0 @@
-<div class="box">
-
-<?php if ($title): ?>
- <h2><?php print $title ?></h2>
-<?php endif; ?>
-
- <div class="content"><?php print $content ?></div>
-</div>
diff --git a/themes/engines/phptemplate/comment.tpl.php b/themes/engines/phptemplate/comment.tpl.php
deleted file mode 100644
index ac4eeb88a..000000000
--- a/themes/engines/phptemplate/comment.tpl.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; ?> clear-block">
- <?php print $picture ?>
-
-<?php if ($comment->new) : ?>
- <a id="new"></a>
- <span class="new"><?php print $new ?></span>
-<?php endif; ?>
-
- <h3><?php print $title ?></h3>
-
- <div class="submitted">
- <?php print $submitted ?>
- </div>
-
- <div class="content">
- <?php print $content ?>
- <?php if ($signature): ?>
- <div class="user-signature clear-block">
- <?php print $signature ?>
- </div>
- <?php endif; ?>
- </div>
-
- <?php print $links ?>
-</div>
diff --git a/themes/engines/phptemplate/default.tpl.php b/themes/engines/phptemplate/default.tpl.php
deleted file mode 100644
index 8008a2c12..000000000
--- a/themes/engines/phptemplate/default.tpl.php
+++ /dev/null
@@ -1 +0,0 @@
-<!-- PHPTemplate was instructed to override the <?php print $hook ?> theme function, but no valid template file was found. -->
diff --git a/themes/engines/phptemplate/node.tpl.php b/themes/engines/phptemplate/node.tpl.php
deleted file mode 100644
index 872ea0c29..000000000
--- a/themes/engines/phptemplate/node.tpl.php
+++ /dev/null
@@ -1,29 +0,0 @@
-<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> clear-block">
-
-<?php print $picture ?>
-
-<?php if ($page == 0): ?>
- <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
-<?php endif; ?>
-
- <div class="meta">
- <?php if ($submitted): ?>
- <span class="submitted"><?php print $submitted ?></span>
- <?php endif; ?>
-
- <?php if ($terms): ?>
- <span class="terms"><?php print $terms ?></span>
- <?php endif;?>
- </div>
-
- <div class="content">
- <?php print $content ?>
- </div>
-
-<?php
- if ($links) {
- print $links;
- }
-?>
-
-</div> \ No newline at end of file