feature:2271

Merge autoupdate plugin into piwigo core.

git-svn-id: http://piwigo.org/svn/trunk@10511 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
patdenice
2011-04-20 14:52:52 +00:00
parent fede13ce41
commit 491e8adc74
17 changed files with 1830 additions and 0 deletions
+27
View File
@@ -418,6 +418,33 @@ function ws_addDefaultMethods( $arr )
<br>Argument "type" can be "thumbnail" or "websize". Default is "thumbnail".
<br>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.
<br>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.
<br>Parameter type must be "plugins", "languages" or "themes".
<br>If reset parameter is true, all ignored extensions will be reinitilized.'
);
}
add_event_handler('ws_add_methods', 'ws_addDefaultMethods');