From 6df515a54ff63812076dfbf8dc6514fa9416b08a Mon Sep 17 00:00:00 2001 From: plegall Date: Wed, 24 Sep 2008 20:25:39 +0000 Subject: new: WebService method pwg.categories.add so that pLoader can create a virtual category. git-svn-id: http://piwigo.org/svn/trunk@2583 68402e56-0260-453c-a942-63ccdbb3a9ee --- tools/piwigo_remote.pl | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'tools') diff --git a/tools/piwigo_remote.pl b/tools/piwigo_remote.pl index 30b8743b4..3c611fed0 100644 --- a/tools/piwigo_remote.pl +++ b/tools/piwigo_remote.pl @@ -116,6 +116,22 @@ if ($opt{action} eq 'pwg.tags.list') { print $t; } +if ($opt{action} eq 'pwg.categories.add') { + $form = { + method => 'pwg.categories.add', + name => $opt{define}{name}, + parent => $opt{define}{parent}, + }; + + my $response = $ua->post( + $conf{base_url}.'/ws.php?format=json', + $form + ); + + use Data::Dumper; + print Dumper(from_json($response->content)); +} + $query = pwg_ws_get_query( method => 'pwg.session.logout' ); -- cgit v1.2.3