aboutsummaryrefslogtreecommitdiff
path: root/documentation/theming/preview/head.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-14 00:10:03 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-14 00:10:03 +0000
commitd3c49d7ee73a6f0bc680868147cc68cccba611a9 (patch)
treee598deec2b98faada3acc62477371e408499c6e1 /documentation/theming/preview/head.php
parent5a955c633c1ac314ccff3fe5a719ae730105c13a (diff)
downloadelgg-d3c49d7ee73a6f0bc680868147cc68cccba611a9.tar.gz
elgg-d3c49d7ee73a6f0bc680868147cc68cccba611a9.tar.bz2
Refs #2903 moving theme preview into developers plugin - navigation and titles are broken
git-svn-id: http://code.elgg.org/elgg/trunk@8214 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'documentation/theming/preview/head.php')
-rw-r--r--documentation/theming/preview/head.php42
1 files changed, 0 insertions, 42 deletions
diff --git a/documentation/theming/preview/head.php b/documentation/theming/preview/head.php
deleted file mode 100644
index 360f56647..000000000
--- a/documentation/theming/preview/head.php
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php
-/**
- * head of the preview pages
- */
-require_once(dirname(dirname(dirname(dirname(__FILE__)))) . "/engine/start.php");
-
-$ipsum = "Sed scelerisque sagittis lorem. Phasellus sodales. Nulla urna justo, vehicula in, suscipit nec, molestie sed, tellus.";
-
-$screen = elgg_view_get_simplecache_url('css', 'screen');
-$ie_url = elgg_view_get_simplecache_url('css', 'ie');
-$ie6_url = elgg_view_get_simplecache_url('css', 'ie6');
-
-$base = elgg_get_site_url();
-elgg_register_js("{$base}vendors/jquery/jquery-1.4.2.min.js", 'jquery');
-elgg_register_js("{$base}vendors/jquery/jquery-ui-1.7.2.min.js", 'jquery-ui');
-elgg_register_js("{$base}vendors/jquery/jquery.form.js", 'jquery.form');
-
-// Set the content type
-header("Content-type: text/html; charset=UTF-8");
-
-?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title><?php echo $title; ?></title>
- <link rel="stylesheet" href="<?php echo $screen; ?>" type="text/css" />
- <!--[if IE 6]>
- <link rel="stylesheet" type="text/css" href="<?php echo $ie_url; ?>" />
- <![endif]-->
-
- <!--[if gt IE 6]>
- <link rel="stylesheet" type="text/css" href="<?php echo $ie6_url; ?>" />
- <![endif]-->
-<?php
-foreach (elgg_get_js() as $script) {
-?>
- <script type="text/javascript" src="<?php echo $script; ?>"></script>
-<?php
-}
-?>
-</head>