From 33731a47af71d0723ac79cfddca223a14d1761ba Mon Sep 17 00:00:00 2001 From: marcus Date: Tue, 9 Dec 2008 17:36:01 +0000 Subject: Removed upgrade client since it doesn't really matter. git-svn-id: https://code.elgg.org/elgg/trunk@2515 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/updateclient/index.php | 8 -- mod/updateclient/languages/en.php | 34 ------ mod/updateclient/manifest.xml | 9 -- mod/updateclient/start.php | 130 --------------------- .../views/default/settings/updateclient/edit.php | 33 ------ 5 files changed, 214 deletions(-) delete mode 100644 mod/updateclient/index.php delete mode 100644 mod/updateclient/languages/en.php delete mode 100644 mod/updateclient/manifest.xml delete mode 100644 mod/updateclient/start.php delete mode 100644 mod/updateclient/views/default/settings/updateclient/edit.php (limited to 'mod/updateclient') 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 @@ - \ 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 @@ - '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 @@ - - - - - - - - - \ 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 @@ -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 @@ - - -

-

:

- updateserver ? $vars['entity']->updateserver : $DEFAULT_UPDATE_SERVER); - echo elgg_view('input/text', array('internalname' => 'params[updateserver]', 'value' => $server)); - ?> -

-

- - - - - . -

\ No newline at end of file -- cgit v1.2.3