Download
Last stable v 5.2 2024-11-01
API URL | /plugin/info/:id |
Description | Get CMS plugin info API |
Access | Free |
Rquest method | GET |
Request data type | URL route parameters |
Request data | :id - CMS plugin ID, ex. 'news' |
Response type | JSON |
Response data |
{
rc: '0',
msg: 'success',
data: {
logged: true, // true if user is logged on
admin: true, // true if logged user is CMS builtin administrator
grp: [], // groups assigned to logged user
path: '\/cms\/srv\/plugins\/news' // path to CMS plugin folder
}
}
|