-
Notifications
You must be signed in to change notification settings - Fork 0
api photo config get
Alban LEROUX edited this page Oct 3, 2011
·
3 revisions
Return the photo plugin configuration.
require read
grant access
GET http://example.com/api/get/photo.config.get/json/
{
"method" : "photo.config.get",
}
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<xml>
<method>photo.config.get</method>
</xml>
{
"status" : "valid",
"response" :
{
"directory" : "photos",
"original" : "original",
"resized" : "resized",
"thumb" : "thumb",
"quality" : "quality",
"sizes" :
{
"resized" :
{
"type" : "fixed",
"width" : 600,
"height" : 200
},
"thumb" :
{
"type" : "square",
"size" : 150
}
}
}
}
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<xml>
<status>valid</status>
<response>
<directory>photos</directory>
<original>original</original>
<resized>resized</resized>
<thumb>thumb</thumb>
<quality>90</quality>
<sizes>
<resized>
<type>fixed</type>
<width>600</width>
<height>200</height>
</resized>
<thumb>
<type>square</type>
<size>150</size>
</thumb>
</sizes>
</response>
</xml>
No argument needed.
- [directory]: is the main folder contains all photos
-
[original]: is a sub folder of
directory
contains all original photos. -
[resized]: is a sub folder of
directory
contains all medium size photos. -
[thumb]: is a sub folder of
directory
contains all thumb size photos. -
[sizes]: photo sizes
-
[resized]: the resized size
-
[type]:
larger-border
|fixed-width
|fixed-height
|fixed
|square
-
[size]: the photo size, use this option just with
type
!=fixed
-
[width]: the photo width size, use this option just with
type
=fixed
-
[height]: the photo height size, use this option just with
type
=fixed
-
[type]:
-
[thumb]: the thumb size
-
[type]:
larger-border
|fixed-width
|fixed-height
|fixed
|square
-
[size]: the photo size, use this option just with
type
!=fixed
-
[width]: the photo width size, use this option just with
type
=fixed
-
[height]: the photo height size, use this option just with
type
=fixed
-
[type]:
-
[resized]: the resized size