aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mod/updateclient/index.php8
-rw-r--r--mod/updateclient/languages/en.php34
-rw-r--r--mod/updateclient/manifest.xml9
-rw-r--r--mod/updateclient/start.php130
-rw-r--r--mod/updateclient/views/default/settings/updateclient/edit.php33
5 files changed, 0 insertions, 214 deletions
diff --git a/mod/updateclient/index.php b/mod/updateclient/index.php
deleted file mode 100644
index 181ac720a..000000000
--- a/mod/updateclient/index.php
+++ /dev/null
@@ -1,8 +0,0 @@
-<?php
-
-
-
-/// if admin then list updates
-
-// another page list plugin updates
-?> \ No newline at end of file
diff --git a/mod/updateclient/languages/en.php b/mod/updateclient/languages/en.php
deleted file mode 100644
index c92dee5c3..000000000
--- a/mod/updateclient/languages/en.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-
- /**
- * Update client language pack.
- *
- * @package ElggUpdateClient
- * @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.com/
- */
-
- $english = array(
-
- 'updateclient:label:core' => 'Core',
- 'updateclient:label:plugins' => 'Plugins',
-
- 'updateclient:settings:days' => 'Check for updates every',
- 'updateclient:days' => 'days',
-
- 'updateclient:settings:server' => 'Update server',
-
- 'updateclient:message:title' => 'New version of Elgg released!',
- 'updateclient:message:body' => 'A new version of Elgg (%s %s) codenamed "%s" has been released!
-
-Go here to download: %s
-
-Or scroll down and read the release notes:
-
-%s',
- );
-
- add_translation("en", $english);
-?> \ No newline at end of file
diff --git a/mod/updateclient/manifest.xml b/mod/updateclient/manifest.xml
deleted file mode 100644
index c402c01bb..000000000
--- a/mod/updateclient/manifest.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<plugin_manifest>
- <field key="author" value="Curverider ltd" />
- <field key="version" value="1.0" />
- <field key="description" value="Receive notifications when a new version of Elgg is released." />
- <field key="website" value="http://www.elgg.org/" />
- <field key="copyright" value="(C) Curverider 2008" />
- <field key="licence" value="GNU Public License version 2" />
-</plugin_manifest> \ No newline at end of file
diff --git a/mod/updateclient/start.php b/mod/updateclient/start.php
deleted file mode 100644
index 3ba743bd7..000000000
--- a/mod/updateclient/start.php
+++ /dev/null
@@ -1,130 +0,0 @@
-<?php
- /**
- * Update client.
- *
- * @package ElggUpdateClient
- * @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.com/
- */
-
- $DEFAULT_UPDATE_SERVER;
-
- /**
- * Client update initialisation.
- */
- function updateclient_init()
- {
- global $DEFAULT_UPDATE_SERVER;
-
- $DEFAULT_UPDATE_SERVER = 'http://updates.elgg.org/pg/api/rest/php/';
-
- // Register a page handler, so we can have nice URLs
- register_page_handler('updateclient','updateclient_page_handler');
-
- $now = time();
- $time = get_plugin_setting('days', 'updateclient');
- $last_checked = get_plugin_setting('last_checked', 'updateclient');
- if (($time) && ($last_checked < $now - (86400 * $time)))
- {
- updateclient_check_core();
- }
- }
-
- /**
- * Handle pages.
- *
- * @param unknown_type $page
- */
- function updateclient_page_handler($page)
- {
- global $CONFIG;
-
- if (isset($page[0]))
- {
-
- add_submenu_item(elgg_echo('updateclient:label:core'), $CONFIG->url . "pg/updateclient/core/");
- //add_submenu_item(elgg_echo('updateclient:label:plugins'), $CONFIG->url . "pg/updateclient/plugins/");
-
- // See what context we're using
- switch($page[0])
- {
- case "core" :
- include($CONFIG->pluginspath . "updateclient/index.php");
- break;
- case "plugins" :
- include($CONFIG->pluginspath . "updateclient/plugin.php");
- break;
-
- default:
- include($CONFIG->pluginspath . "updateclient/index.php");
- }
- }
- else
- include($CONFIG->pluginspath . "updateclient/index.php");
- }
-
- /**
- * Send a message to the admin notifications page.
- *
- * @param unknown_type $subject
- * @param unknown_type $message
- */
- function updateclient_notify_message($subject, $message)
- {
- return send_admin_message($subject, $message);
- }
-
- /**
- * Get updates.
- *
- * @return unknown
- */
- function updateclient_check_core()
- {
- global $CONFIG, $DEFAULT_UPDATE_SERVER;
-
- // Phone home and check core
- $url = get_plugin_setting('updateserver', 'updateclient');
- if (!$url) $url = $DEFAULT_UPDATE_SERVER;
-
- $result = send_api_get_call($url, array('method' => 'elgg.system.getlatestversion'), array());
-
- if (($result) && ($result->status == 0))
- {
- $result = $result->result;
-
- // Get version information
- $version = get_version();
- $release = get_version(true);
-
- if (
- ($version != $result['version']) ||
- ($release != $result['release'])
- )
- {
- // Notify
- updateclient_notify_message(
- elgg_echo('updateclient:message:title'),
- sprintf(elgg_echo('updateclient:message:body'),
- $result['release'],
- $result['version'],
- $result['codename'],
- $result['url'],
- $result['notes']
- )
- );
-
- }
- }
-
- // Set last_checked
- set_plugin_setting('last_checked', time(), 'updateclient');
-
- return true;
- }
-
- // Initialise
- register_elgg_event_handler('init','system','updateclient_init');
-?> \ No newline at end of file
diff --git a/mod/updateclient/views/default/settings/updateclient/edit.php b/mod/updateclient/views/default/settings/updateclient/edit.php
deleted file mode 100644
index 128db2619..000000000
--- a/mod/updateclient/views/default/settings/updateclient/edit.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
- /**
- * Update client.
- *
- * @package ElggUpdateClient
- * @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.com/
- */
-
- global $DEFAULT_UPDATE_SERVER;
-?>
-
-<p>
- <h3><?php echo elgg_echo('updateclient:settings:server'); ?>: </h3>
- <?php
- $server = ($vars['entity']->updateserver ? $vars['entity']->updateserver : $DEFAULT_UPDATE_SERVER);
- echo elgg_view('input/text', array('internalname' => 'params[updateserver]', 'value' => $server));
- ?>
-</p>
-<p>
- <?php echo elgg_echo('updateclient:settings:days'); ?>
-
- <select name="params[days]">
- <option value="7" <?php if ($vars['entity']->days == 7) echo " selected=\"yes\" "; ?>>7</option>
- <option value="14" <?php if ((!$vars['entity']->days) || ($vars['entity']->days == 14)) echo " selected=\"yes\" "; ?>>14</option>
- <option value="21" <?php if ($vars['entity']->days == 21) echo " selected=\"yes\" "; ?>>21</option>
- <option value="28" <?php if ($vars['entity']->days == 28) echo " selected=\"yes\" "; ?>>28</option>
- </select>
-
- <?php echo elgg_echo('updateclient:days'); ?>.
-</p> \ No newline at end of file