]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
The Externalpages plugin is now Site Pages. Removing old plugin.
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 19 May 2010 17:00:29 +0000 (17:00 +0000)
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 19 May 2010 17:00:29 +0000 (17:00 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@6097 36083f99-b078-4883-b0ff-0f9b5a30f544

12 files changed:
mod/externalpages/actions/add.php [deleted file]
mod/externalpages/index.php [deleted file]
mod/externalpages/languages/en.php [deleted file]
mod/externalpages/manifest.xml [deleted file]
mod/externalpages/read.php [deleted file]
mod/externalpages/start.php [deleted file]
mod/externalpages/views/default/expages/analytics.php [deleted file]
mod/externalpages/views/default/expages/css.php [deleted file]
mod/externalpages/views/default/expages/footer_menu.php [deleted file]
mod/externalpages/views/default/expages/forms/edit.php [deleted file]
mod/externalpages/views/default/expages/menu.php [deleted file]
mod/externalpages/views/default/object/expages.php [deleted file]

diff --git a/mod/externalpages/actions/add.php b/mod/externalpages/actions/add.php
deleted file mode 100644 (file)
index 79f16ba..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-<?php
-
-       /**
-        * Elgg external pages: add/edit
-        * 
-        * @package ElggExPages
-        * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
-        * @author Curverider Ltd <info@elgg.com>
-        * @copyright Curverider Ltd 2008-2010
-        * @link http://elgg.org/
-        */
-
-       // Make sure we're logged as admin
-               admin_gatekeeper();
-
-       // Get input data
-               $contents = get_input('expagescontent', '', false);
-               $type = get_input('content_type');
-               $previous_guid = get_input('expage_guid');
-
-       // Cache to the session
-               $_SESSION['expages_content'] = $contents;
-               $_SESSION['expagestype'] = $type;
-                               
-       // Make sure the content exists
-               if (empty($contents)) {
-                       register_error(elgg_echo("expages:blank"));
-                       forward("mod/expages/add.php");
-                       
-       // Otherwise, save the new external page
-               } else {
-                       
-       //remove the old external page
-               if(get_entity($previous_guid)){
-                       delete_entity($previous_guid);
-               }       
-               
-               // Initialise a new ElggObject
-                       $expages = new ElggObject();
-               // Tell the system what type of external page it is
-                       $expages->subtype = $type;
-               // Set its owner to the current user
-                       $expages->owner_guid = $_SESSION['user']->getGUID();
-               // For now, set its access to public
-                       $expages->access_id = ACCESS_PUBLIC;
-               // Set its title and description appropriately
-                       $expages->title = $type;
-                       $expages->description = $contents;
-               // Before we can set metadata, save
-                       if (!$expages->save()) {
-                               register_error(elgg_echo("expages:error"));
-                               forward("mod/expages/add.php");
-                       }
-                                               
-               // Success message
-                       system_message(elgg_echo("expages:posted"));
-               // add to river
-                   add_to_river('river/expages/create','create',$_SESSION['user']->guid,$expages->guid);
-               // Remove the cache
-                       unset($_SESSION['expages_content']); unset($_SESSION['expagestitle']);
-                                               
-               
-       // Forward back to the page
-                       forward("pg/expages/index.php?type={$type}");
-                               
-               }
-               
-?>
\ No newline at end of file
diff --git a/mod/externalpages/index.php b/mod/externalpages/index.php
deleted file mode 100644 (file)
index abfa531..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-/**
- * Elgg External pages
- * 
- * @package ElggExpages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
- */
-
-require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
-
-admin_gatekeeper();
-set_context('admin');
-//the type of page e.g about, terms, privacy, etc
-$type = get_input('type', 'about');
-
-// Set admin user for user block
-set_page_owner($_SESSION['guid']);
-
-//display the title
-$title = elgg_view_title(elgg_echo('expages'));
-
-// Display the correct form
-$edit = elgg_view('expages/forms/edit', array('type' => $type));
-       
-// Display the menu
-$body = elgg_view('page_elements/elgg_content',array('body' => elgg_view('expages/menu', array('type' => $type)).$edit));
-       
-// Display
-page_draw(elgg_echo('expages'),elgg_view_layout("one_column_with_sidebar", $title . $body));
-?>
\ No newline at end of file
diff --git a/mod/externalpages/languages/en.php b/mod/externalpages/languages/en.php
deleted file mode 100644 (file)
index 5deb701..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php
-
-       $english = array(
-       
-               /**
-                * Menu items and titles
-                */
-       
-                       'expages' => "External pages",
-                       'expages:frontpage' => "Frontpage",
-                       'expages:about' => "About",
-                       'expages:terms' => "Terms",
-                       'expages:privacy' => "Privacy",
-                       'expages:analytics' => "Analytics",
-                       'expages:contact' => "Contact",
-                       'expages:nopreview' => "No preview yet available",
-                       'expages:preview' => "Preview",
-                       'expages:notset' => "This page has not been set up yet.",
-                       'expages:lefthand' => "The lefthand information pane",
-                       'expages:righthand' => "The righthand information pane",
-                       'expages:addcontent' => "You can add content here via your admin tools. Look for the external pages link under admin.",
-                       'item:object:front' => 'Front page items',
-       
-               /**
-                * Status messages
-                */
-       
-                       'expages:posted' => "Your page post was successfully posted.",
-                       'expages:deleted' => "Your page post was successfully deleted.",
-       
-               /**
-                * Error messages
-                */
-       
-                       'expages:deleteerror' => "There was a problem deleting the old page",
-                       'expages:error' => "There has been an error, please try again and if the problem persists, contact the administrator",
-       
-       );
-                                       
-       add_translation("en",$english);
-
-?>
\ No newline at end of file
diff --git a/mod/externalpages/manifest.xml b/mod/externalpages/manifest.xml
deleted file mode 100644 (file)
index 52da202..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<plugin_manifest>
-       <field key="author" value="Curverider" />
-       <field key="version" value="1.7" />
-       <field key="description" value="This is a very simple plugin that lets site admin populate an about page, terms, privacy and contact. You can also edit the frontpage text." />
-       <field key="website" value="http://www.elgg.org/" />
-       <field key="copyright" value="(C) Curverider 2008-2010" />
-       <field key="licence" value="GNU Public License version 2" />
-       <field key="elgg_version" value="2010030101" />
-       <field key="elgg_install_state" value="enabled" />
-       <field key="admin_interface" value="advanced" />
-</plugin_manifest>
diff --git a/mod/externalpages/read.php b/mod/externalpages/read.php
deleted file mode 100644 (file)
index d8d0eb0..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-/**
- * Elgg read external page
- * 
- * @package ElggExpages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
-*/
-
-// Load Elgg engine
-require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
-
-// set some variables
-$type = get_input('expages');
-                                                                       
-// Set the title appropriately
-$area1 = elgg_view_title(elgg_echo("expages:". strtolower($type)));
-
-//get contents
-$contents = elgg_get_entities(array('type' => 'object', 'subtype' => $type, 'limit' => 1));
-
-if($contents){
-       foreach($contents as $c){
-               $area1 .= elgg_view('page_elements/elgg_content',array('body' => $c->description));
-       }
-}else
-       $area1 .= elgg_view('page_elements/elgg_content',array('body' => elgg_echo("expages:notset")));
-
-// Display through the correct canvas area
-$body = elgg_view_layout("one_column_with_sidebar", $area1);
-
-// Display page
-page_draw($title,$body);
\ No newline at end of file
diff --git a/mod/externalpages/start.php b/mod/externalpages/start.php
deleted file mode 100644 (file)
index 9f3f494..0000000
+++ /dev/null
@@ -1,77 +0,0 @@
-<?php
-/**
- * Elgg Simple editing of external pages frontpage/about/term/contact and privacy
- * 
- * @package ElggExPages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
- */
-
-function expages_init() {
-       global $CONFIG;
-       
-       // Register a page handler, so we can have nice URLs
-       register_page_handler('expages','expages_page_handler');
-       
-       // Register a URL handler for external pages
-       register_entity_url_handler('expages_url','object','expages');
-       
-       // extend views
-       elgg_extend_view('footer/links', 'expages/footer_menu');
-
-       // Extend CSS
-       elgg_extend_view('css','expages/css');          
-}
-
-/**
- * Page setup. Adds admin controls to the admin panel.
- *
- */
-function expages_pagesetup()
-{
-       if (get_context() == 'admin' && isadminloggedin()) {
-               global $CONFIG;
-               add_submenu_item(elgg_echo('expages'), $CONFIG->wwwroot . 'pg/expages/');
-       }
-}
-
-function expages_url($expage) {
-               
-               global $CONFIG;
-               return $CONFIG->url . "pg/expages/";
-               
-}
-
-
-function expages_page_handler($page) 
-{
-       global $CONFIG;
-       
-       if ($page[0])
-       {
-               switch ($page[0])
-               {
-                       case "read":            set_input('expages',$page[1]);
-                                                                       include(dirname(__FILE__) . "/read.php");
-                                                                       break;
-                       default : include($CONFIG->pluginspath . "externalpages/index.php"); 
-               }
-       }
-       else
-               include($CONFIG->pluginspath . "externalpages/index.php"); 
-}
-
-// Initialise log browser
-register_elgg_event_handler('init','system','expages_init');
-register_elgg_event_handler('pagesetup','system','expages_pagesetup');
-
-// Register actions
-       global $CONFIG;
-       register_action("expages/add",false,$CONFIG->pluginspath . "externalpages/actions/add.php");
-       //register_action("expages/addfront",false,$CONFIG->pluginspath . "externalpages/actions/addfront.php");
-       register_action("expages/edit",false,$CONFIG->pluginspath . "externalpages/actions/edit.php");
-       register_action("expages/delete",false,$CONFIG->pluginspath . "externalpages/actions/delete.php");
-               
-?>
\ No newline at end of file
diff --git a/mod/externalpages/views/default/expages/analytics.php b/mod/externalpages/views/default/expages/analytics.php
deleted file mode 100644 (file)
index 8aac0e9..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
-       /**
-        * Elgg Analytics view
-        * 
-        * @package ElggExpages
-        * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
-        * @author Curverider Ltd <info@elgg.com>
-        * @copyright Curverider Ltd 2008-2010
-        * @link http://elgg.com/
-        * 
-        */
-
-        
-        //get analytics content 
-               $contents = elgg_get_entities(array('type' => 'object', 'subtype' => 'analytics', 'limit' => 1));
-               
-               if($contents){
-                       foreach($contents as $c){
-                               echo $c->description;
-                       }
-               }
-
-?>
-
diff --git a/mod/externalpages/views/default/expages/css.php b/mod/externalpages/views/default/expages/css.php
deleted file mode 100644 (file)
index 9cc760d..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-/**
- * Elgg externalpages CSS
- * 
- * @package externalpages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
- */
-
-?>
-#footer_toolbar_links {
-       text-align:right;
-       margin-bottom:5px;
-}
diff --git a/mod/externalpages/views/default/expages/footer_menu.php b/mod/externalpages/views/default/expages/footer_menu.php
deleted file mode 100644 (file)
index 225fd5a..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-/**
- * Elgg External pages footer menu
- * 
- * @package ElggExpages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
- * 
- */
-?>
-
-<div id="footer_toolbar_links" class="clearfloat">| 
-<a href="<?php echo $vars['url']; ?>pg/expages/read/About/"><?php echo elgg_echo('expages:about'); ?></a> |
-<a href="<?php echo $vars['url']; ?>pg/expages/read/Terms/"><?php echo elgg_echo('expages:terms'); ?></a> |
-<a href="<?php echo $vars['url']; ?>pg/expages/read/Privacy/"><?php echo elgg_echo('expages:privacy'); ?></a> |
-</div>
\ No newline at end of file
diff --git a/mod/externalpages/views/default/expages/forms/edit.php b/mod/externalpages/views/default/expages/forms/edit.php
deleted file mode 100644 (file)
index 0bd4e6d..0000000
+++ /dev/null
@@ -1,87 +0,0 @@
-<?php
-
-       /**
-        * Elgg External pages edit
-        * 
-        * @package ElggExpages
-        * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
-        * @author Curverider Ltd <info@elgg.com>
-        * @copyright Curverider Ltd 2008-2010
-        * @link http://elgg.com/
-        * 
-        */
-        
-        //get the page type
-        $type = $vars['type'];
-        
-        //action
-        $action = "expages/add";
-        
-        //grab the required entity
-        $page_contents = elgg_get_entities(array('type' => 'object', 'subtype' => $type, 'limit' => 1));
-        
-       if($page_contents){
-                foreach($page_contents as $pc){
-                        $description = $pc->description;
-                        $guid = $pc->guid;
-                }
-       }else {         
-               $description = "";
-       }
-               
-       // set the required form variables
-               $input_area = elgg_view('input/longtext', array('internalname' => 'expagescontent', 'value' => $description));
-        $submit_input = elgg_view('input/submit', array('internalname' => 'submit', 'value' => elgg_echo('save')));
-               $hidden_value = elgg_view('input/hidden', array('internalname' => 'content_type', 'value' => $type));
-               $hidden_guid = elgg_view('input/hidden', array('internalname' => 'expage_guid', 'value' => $guid));
-               
-               //type
-               $type = $vars['type'];
-               //set the url
-               $url = $vars['url'] . "pg/expages/index.php?type=";
-               
-               if($type == 'about') { 
-                       $external_page_title = elgg_echo('expages:about');
-               }
-               else if($type == 'terms') {
-                       $external_page_title = elgg_echo('expages:terms');
-               }
-               else if($type == 'privacy') {
-                       $external_page_title = elgg_echo('expages:privacy');     
-               }
-       //preview link
-       //      echo "<div class=\"page_preview\"><a href=\"#preview\">" . elgg_echo('expages:preview') . "</a></div>";
-               
-       //construct the form
-               $form_body = <<<EOT
-
-               <p class='longtext_inputarea'>
-               <label>$external_page_title</label>
-                       $input_area</p>
-                       $hidden_value
-                       $hidden_guid
-                       <br />
-                       $submit_input
-
-EOT;
-?>
-<?php
-       //display the form
-       echo elgg_view('input/form', array('action' => "{$vars['url']}action/$action", 'body' => $form_body));
-?>
-
-<!-- preview page contents -->
-<!--
-<div class="expage_preview">
-<a name="preview"></a>
-<h2>Preview</h2>
-<?php 
-/*
-       if($description)
-               echo $description;
-       else
-               echo elgg_echo('expages:nopreview');
-*/
-?>
-</div>
--->
\ No newline at end of file
diff --git a/mod/externalpages/views/default/expages/menu.php b/mod/externalpages/views/default/expages/menu.php
deleted file mode 100644 (file)
index 8070bcf..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-/**
- * Elgg External pages menu
- * 
- * @package ElggExpages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
- * 
- */
-
-$type = $vars['type'];
-
-$url = $vars['url'] . "pg/expages/index.php?type=";
-?>
-
-<div class="elgg_horizontal_tabbed_nav margin_top">
-<ul>
-       <li <?php if($type == 'about')   echo "class = 'selected'"; ?>><a href="<?php echo $url; ?>about"><?php echo elgg_echo('expages:about'); ?></a></li>
-       <li <?php if($type == 'terms')   echo "class = 'selected'"; ?>><a href="<?php echo $url; ?>terms"><?php echo elgg_echo('expages:terms'); ?></a></li>
-       <li <?php if($type == 'privacy') echo "class = 'selected'"; ?>><a href="<?php echo $url; ?>privacy"><?php echo elgg_echo('expages:privacy'); ?></a></li>
-</ul>
-</div>
\ No newline at end of file
diff --git a/mod/externalpages/views/default/object/expages.php b/mod/externalpages/views/default/object/expages.php
deleted file mode 100644 (file)
index e7f0385..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-<?php
-
-       /**
-        * Elgg expages view
-        * 
-        * @package ElggExPages
-        * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
-        * @author Curverider
-        * @copyright Curverider Ltd 2008-2010
-        * @link http://elgg.com/
-        * 
-        */
-
-?>
\ No newline at end of file