added 'tags' as potential array for pwg.images.addSimple 

git-svn-id: http://piwigo.org/svn/trunk@20814 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
flop25 2013-02-18 18:55:16 +00:00
parent 75fa687b88
commit d02cc8f1d8
2 changed files with 16 additions and 5 deletions

View file

@ -1977,11 +1977,22 @@ SELECT *
if (isset($params['tags']) and !empty($params['tags']))
{
$tag_ids = array();
$tag_names = preg_split('~(?<!\\\),~', $params['tags']);
foreach ($tag_names as $tag_name)
if (is_array($params[tags]))
{
$tag_id = tag_id_from_tag_name(preg_replace('#\\\\*,#', ',', $tag_name));
array_push($tag_ids, $tag_id);
foreach ($params[tags] as $tag_name)
{
$tag_id = tag_id_from_tag_name($tag_name);
array_push($tag_ids, $tag_id);
}
}
else
{
$tag_names = preg_split('~(?<!\\\),~', $params['tags']);
foreach ($tag_names as $tag_name)
{
$tag_id = tag_id_from_tag_name(preg_replace('#\\\\*,#', ',', $tag_name));
array_push($tag_ids, $tag_id);
}
}
add_tags($tag_ids, array($image_id));

2
ws.php
View file

@ -279,7 +279,7 @@ function ws_addDefaultMethods( $arr )
'default' => 0,
'maxValue' => $conf['available_permission_levels']
),
'tags' => array('default' => null),
'tags' => array('default' => null, 'flags' => WS_PARAM_ACCEPT_ARRAY),
'image_id' => array('default' => null),
),
'POST method only.<br>Use the <b>image</b> field for uploading file.<br>Set the form encoding to "form-data"<br><b>category</b> is the numeric identifier of the destination category.<br>You can update an existing photo if you define an existing image_id.'