Created
March 6, 2012 01:54
-
-
Save matthooks/1982829 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"content": { | |
"field_groups": [ | |
{ | |
"keys": ["username"], | |
"repeat": false | |
} | |
] | |
}, | |
"settings": { | |
"field_groups": [ | |
{ | |
"keys": ["destination_url", "headline", "badge_location"] | |
"repeat": false | |
} | |
] | |
}, | |
"style": { | |
"field_groups": [ | |
{ | |
"keys": ["post_background_color", "divider_color", "text_color", "link_color", "share_link_color"], | |
"repeat": false | |
} | |
] | |
}, | |
"fields": [ | |
{ | |
"name": "Facebook Username", | |
"key": "username", | |
"type": "String", | |
"required": true, | |
"default": "nowspots" | |
}, | |
{ | |
"name": "Destination URL", | |
"key": "destination_url", | |
"type": "String", | |
"required": false, | |
"value": "" | |
}, | |
{ | |
"name": "Headline", | |
"key": "headline", | |
"type": "String", | |
"required": false, | |
"default": "" | |
}, | |
{ | |
"name": "Badge Location", | |
"key": "badge_location", | |
"type": "Drop-down", | |
"required": false, | |
"default": "bottom", | |
"possible_values": [ | |
{ | |
"name": "Bottom", | |
"value": "bottom", | |
"fields_to_hide": [] | |
}, | |
{ | |
"name": "Top", | |
"value": "top", | |
"fields_to_hide": [] | |
}, | |
{ | |
"name": "Hidden", | |
"value": "none", | |
"fields_to_hide": [ | |
"headline" | |
] | |
} | |
] | |
}, | |
{ | |
"name": "Post Background Color", | |
"key": "post_background_color", | |
"type": "Color", | |
"required": false, | |
"default": "ffffff" | |
}, | |
{ | |
"name": "Divider Color", | |
"key": "divider_color", | |
"type": "Color", | |
"required": false, | |
"default": "bbbbbb" | |
}, | |
{ | |
"name": "Text Color", | |
"key": "text_color", | |
"type": "Color", | |
"required": false, | |
"default": "000000" | |
}, | |
{ | |
"name": "Link Color", | |
"key": "link_color", | |
"type": "Color", | |
"required": false, | |
"default": "3d627d" | |
}, | |
{ | |
"name": "Share Link Color", | |
"key": "share_link_color", | |
"type": "Color", | |
"required": false, | |
"default": "808080" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment