Checkbox
This page lists the script for adding a checkbox or checkboxes.
Checkbox Script
Check the settings Schema and add the following inside the Settings object.
//settings: {
{
"key": {
"type": "checkbox",
"label": {
"ar": "العنوان",
"en": "text"
},
"option": {
"ar": "إظهار",
"en": "Display menu"
},
"noLabel": true,
"info": {
"ar": "نص توضيحي",
"en": "info text"
}
}
}
//}
Checkboxes Scripts
Check the settings Schema and add the following inside the Settings object.
//settings: {
{
"key": {
"type": "checkboxes",
"label": {
"ar": "العنوان",
"en": "text"
},
"options": [
{
"value": "all",
"label": {
"ar": "جميع الصفحات",
"en": "all pages"
}
},
{
"value": "home",
"label": {
"ar": "الصفحة الرئيسية ففط",
"en": "home page only"
}
}
],
"info": {
"ar": "نص توضيحي",
"en": "info text"
}
}
}
//}
Last modified: 4 months ago