diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-19 17:00:29 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-19 17:00:29 +0000 |
commit | dd2b918ab71c2ed0c05375fafed588146e48c4de (patch) | |
tree | fba1dc87d70ed657e3280b314b45cbdcc4042d88 /mod/externalpages/start.php | |
parent | 209e7b65d0beabb06927af8204369a7374afcd82 (diff) | |
download | elgg-dd2b918ab71c2ed0c05375fafed588146e48c4de.tar.gz elgg-dd2b918ab71c2ed0c05375fafed588146e48c4de.tar.bz2 |
The Externalpages plugin is now Site Pages. Removing old plugin.
git-svn-id: http://code.elgg.org/elgg/trunk@6097 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/externalpages/start.php')
-rw-r--r-- | mod/externalpages/start.php | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/mod/externalpages/start.php b/mod/externalpages/start.php deleted file mode 100644 index 9f3f494bc..000000000 --- a/mod/externalpages/start.php +++ /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 |