aboutsummaryrefslogtreecommitdiff
path: root/views/installation/install
diff options
context:
space:
mode:
Diffstat (limited to 'views/installation/install')
-rw-r--r--views/installation/install/footer.php10
-rw-r--r--views/installation/install/header.php8
-rw-r--r--views/installation/install/sidebar.php26
3 files changed, 0 insertions, 44 deletions
diff --git a/views/installation/install/footer.php b/views/installation/install/footer.php
deleted file mode 100644
index 69cd27f66..000000000
--- a/views/installation/install/footer.php
+++ /dev/null
@@ -1,10 +0,0 @@
-<?php
-/**
- * Install footer - offers help links
- */
-?>
-<ul>
- <li><a href="http://docs.elgg.org/wiki/Installation">Install instructions</a></li>
- <li><a href="http://docs.elgg.org/wiki/Install_Troubleshooting">Install troubleshooting</a></li>
- <li><a href="http://community.elgg.org/pg/groups/world/">Elgg community forums</a></li>
-</ul> \ No newline at end of file
diff --git a/views/installation/install/header.php b/views/installation/install/header.php
deleted file mode 100644
index 8c18dbffd..000000000
--- a/views/installation/install/header.php
+++ /dev/null
@@ -1,8 +0,0 @@
-<?php
-/**
- * Install header
- */
-
-$url = elgg_get_site_url()."_graphics/elgg_logo.png";
-?>
-<img src="<?php echo $url; ?>" alt="Elgg" />
diff --git a/views/installation/install/sidebar.php b/views/installation/install/sidebar.php
deleted file mode 100644
index 8136cd898..000000000
--- a/views/installation/install/sidebar.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-/**
- * Install sidebar
- *
- * @uses $vars['step'] Current step
- * @uses $vars['steps'] Array of steps
- */
-
-$current_step = $vars['step'];
-$steps = $vars['steps'];
-
-$current_step_index = array_search($current_step, $steps);
-
-echo '<ol>';
-foreach ($steps as $index => $step) {
- if ($index < $current_step_index) {
- $class = 'past';
- } elseif ($index == $current_step_index) {
- $class = 'present';
- } else {
- $class = 'future';
- }
- $text = elgg_echo("install:$step");
- echo "<li class=\"$class\">$text</li>";
-}
-echo '</ol>';