From 491e8adc7467de9f9aa6dbbebfcb8b82c676b46a Mon Sep 17 00:00:00 2001 From: patdenice Date: Wed, 20 Apr 2011 14:52:52 +0000 Subject: feature:2271 Merge autoupdate plugin into piwigo core. git-svn-id: http://piwigo.org/svn/trunk@10511 68402e56-0260-453c-a942-63ccdbb3a9ee --- ws.php | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'ws.php') diff --git a/ws.php b/ws.php index 0df265783..046ee4743 100644 --- a/ws.php +++ b/ws.php @@ -418,6 +418,33 @@ function ws_addDefaultMethods( $arr )
Argument "type" can be "thumbnail" or "websize". Default is "thumbnail".
If maxwidth, maxheight or quality are missing, default parameters of upload will be used.' ); + + $service->addMethod( + 'pwg.extensions.update', + 'ws_extensions_update', + array( + 'type' => array(), + 'id' => array(), + 'revision'=> array(), + 'pwg_token' => array(), + ), + 'Update an extension. Webmaster only. +
Parameter type must be "plugins", "languages" or "themes".' + ); + + $service->addMethod( + 'pwg.extensions.ignoreUpdate', + 'ws_extensions_ignoreupdate', + array( + 'type' => array('default'=>null), + 'id' => array('default'=>null), + 'reset' => array('default'=>null), + 'pwg_token' => array(), + ), + 'Ignore an extension if it need update. +
Parameter type must be "plugins", "languages" or "themes". +
If reset parameter is true, all ignored extensions will be reinitilized.' + ); } add_event_handler('ws_add_methods', 'ws_addDefaultMethods'); -- cgit v1.2.3