| 1 |
<?php |
| 2 |
//not used yet - moved them to a per gallery option |
| 3 |
|
| 4 |
return array( |
| 5 |
'type' => 'postbox', |
| 6 |
'label' => 'CSS Editor', |
| 7 |
'options' => array( |
| 8 |
'css_editor' => array( |
| 9 |
'label' => __( 'Enable CSS Editor', 'customify' ), |
| 10 |
'default' => true, |
| 11 |
'type' => 'switch', |
| 12 |
'show_group' => 'css_editor_group', |
| 13 |
'display_option' => true |
| 14 |
), |
| 15 |
|
| 16 |
'css_editor_group' => array( |
| 17 |
'type' => 'group', |
| 18 |
'options' => array( |
| 19 |
'css_editor_use_ace' => array( |
| 20 |
'name' => 'typography_standard_fonts', |
| 21 |
'label' => __( 'Use Ace Editor?', 'customify' ), |
| 22 |
'default' => true, |
| 23 |
'type' => 'switch', |
| 24 |
) |
| 25 |
) |
| 26 |
) |
| 27 |
) |
| 28 |
); # config |