aboutsummaryrefslogtreecommitdiff
path: root/views/default/page/shells
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/page/shells')
-rw-r--r--views/default/page/shells/admin.php27
-rw-r--r--views/default/page/shells/default.php60
-rw-r--r--views/default/page/shells/upgrade.php22
-rw-r--r--views/default/page/shells/walled_garden.php288
4 files changed, 0 insertions, 397 deletions
diff --git a/views/default/page/shells/admin.php b/views/default/page/shells/admin.php
deleted file mode 100644
index f401f3416..000000000
--- a/views/default/page/shells/admin.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-/**
- * Elgg pageshell for the admin area
- *
- * @package Elgg
- * @subpackage Core
- *
- * @uses $vars['title'] The page title
- * @uses $vars['body'] The main content of the page
- * @uses $vars['sysmessages'] A 2d array of various message registers, passed from system_messages()
- */
-
-// 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>
-<?php echo elgg_view('page/elements/head', $vars); ?>
-</head>
-<body>
- <div class="elgg-page elgg-page-admin">
- <?php echo $vars['body']; ?>
- </div>
-</body>
-
-</html> \ No newline at end of file
diff --git a/views/default/page/shells/default.php b/views/default/page/shells/default.php
deleted file mode 100644
index e089d11b6..000000000
--- a/views/default/page/shells/default.php
+++ /dev/null
@@ -1,60 +0,0 @@
-<?php
-/**
- * Elgg pageshell
- * The standard HTML page shell that everything else fits into
- *
- * @package Elgg
- * @subpackage Core
- *
- * @uses $vars['title'] The page title
- * @uses $vars['body'] The main content of the page
- * @uses $vars['sysmessages'] A 2d array of various message registers, passed from system_messages()
- */
-
-// backward compatability support for plugins that are not using the new approach
-// of routing through pg/admin. See reportedcontent plugin for a simple example.
-if (elgg_get_context() == 'admin') {
- elgg_deprecated_notice("admin plugins should route through pg/admin.", 1.8);
- elgg_admin_add_plugin_settings_menu();
- elgg_unregister_css('screen');
- echo elgg_view('page/shells/admin', $vars);
- return true;
-}
-
-// 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>
-<?php echo elgg_view('page/elements/head', $vars); ?>
-</head>
-<body>
-<div class="elgg-page elgg-page-classic">
- <div class="elgg-page-messages">
- <?php echo elgg_view('page/elements/messages', array('object' => $vars['sysmessages'])); ?>
- </div>
- <div class="elgg-page-topbar">
- <div class="elgg-inner">
- <?php echo elgg_view('page/elements/topbar', $vars); ?>
- </div>
- </div>
- <div class="elgg-page-header">
- <div class="elgg-inner">
- <?php echo elgg_view('page/elements/header', $vars); ?>
- </div>
- </div>
- <div class="elgg-page-body">
- <div class="elgg-inner">
- <?php echo elgg_view('page/elements/body', $vars); ?>
- </div>
- </div>
- <div class="elgg-page-footer">
- <div class="elgg-inner">
- <?php echo elgg_view('page/elements/footer', $vars); ?>
- </div>
- </div>
-</div>
-</body>
-</html> \ No newline at end of file
diff --git a/views/default/page/shells/upgrade.php b/views/default/page/shells/upgrade.php
deleted file mode 100644
index b598c3c6a..000000000
--- a/views/default/page/shells/upgrade.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-/**
- * Page shell for upgrade script
- *
- * Displays an ajax loader until upgrade is complete
- */
-?>
-<html>
- <head>
- <title><?php echo elgg_echo('upgrading'); ?></title>
- <meta http-equiv="refresh" content="1;url=<?php echo elgg_get_site_url(); ?>upgrade.php?upgrade=upgrade"/>
- </head>
- <body bgcolor="white">
- <table width="100%" height="100%" border="0" style="margin: 0px; padding: 0px">
- <tr>
- <td width="100%" height="100%" valign="middle" align="center">
- <img src="<?php echo elgg_get_site_url(); ?>_graphics/ajax_loader_bw.gif" alt="upgrading" />
- </td>
- </tr>
- </table>
- </body>
-</html> \ No newline at end of file
diff --git a/views/default/page/shells/walled_garden.php b/views/default/page/shells/walled_garden.php
deleted file mode 100644
index 4677ac9a6..000000000
--- a/views/default/page/shells/walled_garden.php
+++ /dev/null
@@ -1,288 +0,0 @@
-<?php
-/**
- *
- */
-
-// Set the content type
-header("Content-type: text/html; charset=UTF-8");
-
-// Set title
-$site_title = elgg_get_config('sitename');
-if (empty($vars['title'])) {
- $title = $site_title;
-} else if (empty($site_title)) {
- $title = $vars['title'];
-} else {
- $title = $site_title . ": " . $vars['title'];
-}
-
-// @todo - move the css below into it's own style-sheet
-// that is called when running as a private network
-?>
-<html>
-<head>
-<?php echo elgg_view('page/elements/head', $vars); ?>
-</head>
-<body>
- <style type="text/css">
- body {background: white;}
- /* ***************************************
- WalledGarden
- *************************************** */
- #walledgarden_container {
- margin:100px auto 0 auto;
- position:relative;
- padding:0;
- width:563px;
- background: url(<?php echo elgg_get_site_url(); ?>_graphics/walled_garden_background_extend.gif) repeat-y left top;
- text-align: left;
- word-wrap:break-word;
- }
- #walledgarden {
- position: relative;
- padding:0;
- width:563px;
- min-height:230px;
- background: url(<?php echo elgg_get_site_url(); ?>_graphics/walled_garden_background_top.gif) no-repeat left top;
- }
- #walledgarden_bottom {
- margin:0 auto;
- background: url(<?php echo elgg_get_site_url(); ?>_graphics/walled_garden_background_bottom.gif) no-repeat left bottom;
- width:563px;
- height:54px;
- /* position: relative; */
- }
- .walledgardenintro {
- float:left;
- min-height:200px;
- width:223px;
- padding:15px;
- margin:19px 0 0 23px;
- }
- .walledgardenlogin {
- float:left;
- min-height:200px;
- width:223px;
- padding:15px 15px 0 15px;
- margin:19px 0 0 11px;
- }
- .walledgardenintro h1 {
- color:#666666;
- margin-top:80px;
- line-height: 1.1em;
- }
- .walledgardenlogin h2 {
- color:#666666;
- border-bottom:1px solid #CCCCCC;
- margin-bottom:5px;
- padding-bottom:5px;
- }
- .walledgardenlogin form input.login-textarea {
- margin:0 0 10px 0;
- width:210px;
- }
- .walledgardenlogin form label {
- color:#666666;
- }
- .walledgardenlogin .remember_me label {
- font-size:1em;
- font-weight:normal;
- }
- .walledgardenlogin .remember_me {
- display:block;
- float:right;
- margin-left:0;
- margin-top:-34px;
- text-align:right;
- width:100%;
- }
- .walledgardenlogin .lost_password {
- margin-bottom: 10px;
- color:#999999;
- }
- .walledgardenlogin a.forgotten_password_link,
- .walledgardenlogin a.registration_link {
- color:#999999;
- }
-
- /* override default form styles (for when a theme is running) */
- .walledgardenlogin input {
- font: 120% Arial, Helvetica, sans-serif;
- padding: 5px;
- border: 1px solid #cccccc;
- color:#666666;
- background-color: white;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- }
- .walledgardenlogin textarea {
- font: 120% Arial, Helvetica, sans-serif;
- border: solid 1px #cccccc;
- padding: 5px;
- color:#666666;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- }
- .walledgardenlogin textarea:focus,
- .walledgardenlogin input[type="text"]:focus {
- border: solid 1px #4690d6;
- background: #e4ecf5;
- color:#333333;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- }
- .walledgardenlogin .elgg-input-password {
- width:200px;
- }
- .walledgardenlogin input.elgg-input-password:focus {
- border: solid 1px #4690d6;
- background-color: #e4ecf5;
- color:#333333;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- }
- .walledgardenlogin input[type="password"]:focus {
- border: solid 1px #4690d6;
- background-color: #e4ecf5;
- color:#333333;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- }
- .walledgardenlogin .submit_button {
- font-size: 14px;
- font-weight: bold;
- color: white;
- text-shadow:1px 1px 0px black;
- text-decoration:none;
- border: 1px solid #4690d6;
- background-color:#4690d6;
- background-image: url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png);
- background-repeat: repeat-x;
- background-position: left 10px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- width: auto;
- padding: 2px 4px;
- margin:0 10px 10px 0;
- cursor: pointer;
- -webkit-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.40);
- -moz-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.40);
- }
- .walledgardenlogin .submit_button:hover {
- color: white;
- border-color: #0054a7;
- text-decoration:none;
- background-color:#0054a7;
- background-image: url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png);
- background-repeat: repeat-x;
- background-position: left 10px;
- }
- .walledgardenlogin input.action_button {
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- background-color:#cccccc;
- background-image: url(<?php echo elgg_get_site_url(); ?>_graphics/button_background.gif);
- background-repeat: repeat-x;
- background-position: 0 0;
- border:1px solid #999999;
- color:#333333;
- padding:2px 15px 2px 15px;
- text-align:center;
- font-weight:bold;
- text-decoration:none;
- text-shadow:0 1px 0 white;
- cursor:pointer;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- }
- .walledgardenlogin input.action_button:hover,
- .walledgardenlogin input.action_button:focus {
- background-position:0 -15px;
- background-image: url(<?php echo elgg_get_site_url(); ?>_graphics/button_background.gif);
- background-repeat: repeat-x;
- color:#111111;
- text-decoration: none;
- background-color:#cccccc;
- border:1px solid #999999;
- }
- .walledgardenlogin .action_button.elgg-state-disabled {
- color:#999999;
- padding:2px 7px;
- }
-
- /* override some elgg system message styles */
- #walledgarden_sysmessages {
- position: absolute;
- width:100%;
- text-align: center;
- margin:0 auto;
- top:0;
- z-index:9600;
- }
- #walledgarden_sysmessages #elgg-system-message {
- width: 515px;
- max-width: 515px;
- right:auto;
- margin:30px auto 0 auto;
- position: relative;
- }
-
-
- #lostpassword_form,
- #registration_form {
- right:0;
- position:absolute;
- top:0;
- width:260px;
- background-color: white;
- padding:0;
- background: url(<?php echo elgg_get_site_url(); ?>_graphics/walled_garden_backgroundfull_top.gif) no-repeat left top;
- height:auto;
- }
- #hiddenform_body {
- padding:30px 40px 0 40px;
- height:auto;
- }
- #hiddenform_bottom {
- margin:0 auto;
- background: url(<?php echo elgg_get_site_url(); ?>_graphics/walled_garden_backgroundfull_bottom.gif) no-repeat left bottom;
- width:563px;
- height:54px;
- position: relative;
- }
-
- #hiddenform_body .cancel_request {
- margin-left:15px;
- }
-
- /* override some visual_captcha styles */
- .walledgardenlogin .visual_captcha_choices {
- margin:10px 0 0 0;
- padding:0;
- height:60px;
- }
- .walledgardenlogin ul.visual_captcha_choices li img {
- width:50px;
- height:auto;
- }
-
- </style>
- <div id="walledgarden_sysmessages" class="clearfix">
- <?php echo elgg_view('page/elements/messages', array('object' => $vars['sysmessages'])); ?>
- </div>
- <div id="walledgarden_container">
- <div id="walledgarden" class="clearfix">
- <div class="walledgardenintro clearfix">
- <h1>Welcome to:<br /><?php echo $title; ?></h1>
- </div>
- <div class="walledgardenlogin clearfix">
- <?php echo $vars['body']; ?>
- </div>
- </div>
- <div id="walledgarden_bottom"></div>
- </div>
-</body>
-</html> \ No newline at end of file