mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-01 20:04:51 +02:00
merge -r18732 from trunk to branch 2.4 add page_url (canonical picture url) for web service methods images.search, tags.getImages, images.getInfo, categories.getImages
git-svn-id: http://piwigo.org/svn/branches/2.4@18733 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -148,6 +148,12 @@ function ws_std_get_urls($image_row)
|
||||
{
|
||||
$ret = array();
|
||||
|
||||
$ret['page_url'] = make_picture_url( array(
|
||||
'image_id' => $image_row['id'],
|
||||
'image_file' => $image_row['file'],
|
||||
)
|
||||
);
|
||||
|
||||
$src_image = new SrcImage($image_row);
|
||||
|
||||
if ( $src_image->is_original() )
|
||||
@@ -182,7 +188,7 @@ function ws_std_get_urls($image_row)
|
||||
function ws_std_get_image_xml_attributes()
|
||||
{
|
||||
return array(
|
||||
'id','element_url', 'file','width','height','hit','date_available','date_creation'
|
||||
'id','element_url', 'page_url', 'file','width','height','hit','date_available','date_creation'
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user