aboutsummaryrefslogtreecommitdiff
path: root/mod/test
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-03-11 18:20:43 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-03-11 18:20:43 +0000
commit73361b0807f8ed16bfd9a6d71ce9d68c44066192 (patch)
treefaf096e1cec098c0c1ff73de17b8784109ee50ea /mod/test
parent4142d87fad92f7d54a51798fad8d892af2f8a246 (diff)
downloadelgg-73361b0807f8ed16bfd9a6d71ce9d68c44066192.tar.gz
elgg-73361b0807f8ed16bfd9a6d71ce9d68c44066192.tar.bz2
Adding a friendly old template to the test plugin
git-svn-id: https://code.elgg.org/elgg/trunk@174 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/test')
-rw-r--r--mod/test/graphics/elgg.powered.pngbin0 -> 286 bytes
-rw-r--r--mod/test/graphics/leaf.jpgbin0 -> 1491 bytes
-rw-r--r--mod/test/graphics/logo.pngbin0 -> 2209 bytes
-rw-r--r--mod/test/graphics/orange_small.pngbin0 -> 2550 bytes
-rw-r--r--mod/test/graphics/purplecrayon.gifbin0 -> 5546 bytes
-rw-r--r--mod/test/views/default/css.php136
-rw-r--r--mod/test/views/default/menu.php22
-rw-r--r--mod/test/views/default/pageshells/pageshell.php72
8 files changed, 230 insertions, 0 deletions
diff --git a/mod/test/graphics/elgg.powered.png b/mod/test/graphics/elgg.powered.png
new file mode 100644
index 000000000..b0280989e
--- /dev/null
+++ b/mod/test/graphics/elgg.powered.png
Binary files differ
diff --git a/mod/test/graphics/leaf.jpg b/mod/test/graphics/leaf.jpg
new file mode 100644
index 000000000..28e0e1581
--- /dev/null
+++ b/mod/test/graphics/leaf.jpg
Binary files differ
diff --git a/mod/test/graphics/logo.png b/mod/test/graphics/logo.png
new file mode 100644
index 000000000..06474d59b
--- /dev/null
+++ b/mod/test/graphics/logo.png
Binary files differ
diff --git a/mod/test/graphics/orange_small.png b/mod/test/graphics/orange_small.png
new file mode 100644
index 000000000..1788d0a7f
--- /dev/null
+++ b/mod/test/graphics/orange_small.png
Binary files differ
diff --git a/mod/test/graphics/purplecrayon.gif b/mod/test/graphics/purplecrayon.gif
new file mode 100644
index 000000000..f8ebca3e6
--- /dev/null
+++ b/mod/test/graphics/purplecrayon.gif
Binary files differ
diff --git a/mod/test/views/default/css.php b/mod/test/views/default/css.php
new file mode 100644
index 000000000..de4b5146b
--- /dev/null
+++ b/mod/test/views/default/css.php
@@ -0,0 +1,136 @@
+
+/*
+
+ Elgg main site CSS file
+
+*/
+
+body {
+ margin: 0px;
+ background-color: #ffffff;
+ font-family: arial, helvetica;
+ font-size: 10pt;
+ line-height: 1.2ems;
+ margin: 0px;
+ padding: 0px;
+ }
+
+h1 {
+ 13pt;
+ }
+h2 {
+ 12pt;
+ }
+h3 {
+ 11pt;
+ }
+form {
+ margin: 0px;
+ padding: 0px;
+ }
+
+/* Page top */
+#pagetop {
+ background-color: #5F1741;
+ }
+#pagetop ul {
+ position: absolute;
+ right: 0;
+ top: 0;
+ list-style-type: none;
+ margin: 0px;
+ padding: 0px;
+ }
+#pagetop li {
+ font-family: verdana, arial, helvetica, helv;
+ color:#ffffff;
+ margin: 0;
+ padding: 0;
+ }
+#pagetop li a {
+ display: block;
+ text-decoration: none;
+ color: #ffa800;
+ text-align: center;
+ background-color: #444444;
+ }
+#pagetop li a:hover {
+ color: #000000;
+ background-color: #ffa800;
+ }
+.messages {
+ background-color: #000000;
+ color: #ffffff;
+ padding: 0px;
+ margin: 0px;
+ }
+.messages ul {
+ padding: 0px;
+ margin: 0px;
+ }
+.menubar {
+ background-color: #aaaaaa;
+ padding: 3px;
+ border: 0px;
+ border-bottom: 1px;
+ border-color: #000000;
+ border-style: solid;
+ }
+.menubar a {
+ color: #ffffff;
+ padding: 3px;
+ text-decoration: none;
+ }
+.menubar a:hover {
+ text-decoration: underline;
+ }
+.actionbox {
+ background-color: #eeeeee;
+ border: 1px;
+ border-color: #000000;
+ border-style: solid;
+ padding: 7px;
+
+ }
+.actionbox caption {
+ background-color: #aaaaaa;
+ color: #ffffff;
+ vertical-align: middle;
+ text-align: center;
+ padding: 4px;
+ font-weight: bold;
+ border: 1px;
+ border-color: #000000;
+ border-style: solid;
+ border-bottom: 0px;
+ font-size: 1.1em;
+
+ }
+.infobox {
+ background-color: #eeeeee;
+ border: 1px;
+ border-color: #000000;
+ border-style: solid;
+ padding: 7px;
+ }
+.infobox caption {
+ background-color: #aaaaaa;
+ color: #ffffff;
+ vertical-align: middle;
+ text-align: center;
+ padding: 4px;
+ font-weight: bold;
+ border: 1px;
+ border-color: #000000;
+ border-style: solid;
+ border-bottom: 0px;
+ font-size: 1.1em;
+ }
+.profiletable {
+ border: 1px;
+ border-style: solid;
+ border-color: #888888;
+ }
+.profiletable .fieldname {
+ background-color: #C6DEFD;
+ }
diff --git a/mod/test/views/default/menu.php b/mod/test/views/default/menu.php
new file mode 100644
index 000000000..e0f231bfc
--- /dev/null
+++ b/mod/test/views/default/menu.php
@@ -0,0 +1,22 @@
+<table width="100%" class="menubar">
+ <tr>
+ <td>
+ <?php
+
+ $menu = get_register('menu');
+ if (is_array($menu) && sizeof($menu) > 0) {
+ foreach($menu as $item) {
+ if (sizeof($item->children) > 0 ) {
+ foreach($item->children as $subitem) {
+?>
+ <a href="<?php echo $item->value ?>"><?php echo $item->name; ?></a> |
+<?php
+ }
+ }
+ }
+ }
+
+ ?>
+ </td>
+ </tr>
+ </table> \ No newline at end of file
diff --git a/mod/test/views/default/pageshells/pageshell.php b/mod/test/views/default/pageshells/pageshell.php
new file mode 100644
index 000000000..88aa3f3f2
--- /dev/null
+++ b/mod/test/views/default/pageshells/pageshell.php
@@ -0,0 +1,72 @@
+<?php
+
+ /**
+ * Elgg pageshell
+ * The standard HTML page shell that everything else fits into
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ *
+ * @uses $vars['config'] The site configuration settings, imported
+ * @uses $vars['title'] The page title
+ * @uses $vars['body'] The main content of the page
+ * @uses $vars['messages'] A 2d array of various message registers, passed from system_messages()
+ */
+
+ // Set title
+
+ if (empty($vars['title'])) {
+ $title = $vars['sitename'];
+ } else if (empty($vars['sitename'])) {
+ $title = $vars['title'];
+ } else {
+ $title = $vars['sitename'] . ": " . $vars['title'];
+ }
+
+?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<title><?php echo $title; ?></title>
+<?php echo elgg_view('metatags'); ?>
+<link rel="stylesheet" href="<?php echo $vars['url']; ?>css/css.css" type="text/css" />
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+</head>
+
+<body>
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
+ <tr>
+ <td id="pagetop"><a href="<?php echo $vars['url']; ?>"><img src="<?php echo $vars['wwwroot']; ?>mod/test/graphics/purplecrayon.gif" alt="Elgg" width="227" height="70" border="0" /></a></td>
+ </tr>
+</table>
+<table width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td colspan="5" align="left" valign="top" id="mainbody"><?php echo elgg_view('menu'); ?><?php
+
+ echo elgg_view('messages/list', array('object' => $vars['sysmessages']));
+
+ ?></td>
+ </tr>
+ <tr>
+ <td colspan="5">
+ &nbsp;
+ </td>
+ </tr>
+ <tr>
+ <td width="4%" align="left" valign="top" id="mainbody">&nbsp;</td>
+ <td width="65%" align="left" valign="top" id="mainbody"><?php echo $vars['body']; ?></td>
+ <td width="2%" align="right" valign="top" id="mainbody">&nbsp;</td>
+ <td width="25%" align="right" valign="top" id="mainbody"><?php echo $vars['sidebar']; ?></td>
+ <td width="4%" align="right" valign="top" id="mainbody">&nbsp;</td>
+ </tr>
+ <tr>
+ <td height="100" colspan="5" align="center" valign="middle">
+ Copyright &copy; 2004-2005 ELGG <br />
+ <a href="<?php echo $vars['url']; ?>content/about.php">About ELGG</a> | <a href="<?php echo $vars['url']; ?>content/faq.php">FAQ</a> | <a href="<?php echo $vars['url']; ?>content/privacy.php">Privacy Policy</a> | <a href="<?php echo $vars['url']; ?>content/run_your_own.php">Run your own ELGG</a></td>
+ </tr>
+</table>
+</body>
+</html> \ No newline at end of file