| 1 |
<?php |
| 2 |
//not used yet - moved them to a per gallery option |
| 3 |
|
| 4 |
return array( |
| 5 |
'type' => 'postbox', |
| 6 |
'label' => 'Typography Settings', |
| 7 |
'options' => array( |
| 8 |
'typography' => array( |
| 9 |
'label' => __( 'Enable Typography Options', 'pixcustomify_txtd' ), |
| 10 |
'default' => true, |
| 11 |
'type' => 'switch', |
| 12 |
'show_group' => 'typography_group', |
| 13 |
'display_option' => true |
| 14 |
), |
| 15 |
|
| 16 |
'typography_group' => array( |
| 17 |
'type' => 'group', |
| 18 |
'options' => array( |
| 19 |
'typography_standard_fonts' => array( |
| 20 |
'name' => 'typography_standard_fonts', |
| 21 |
'label' => __( 'Use Standard fonts:', 'pixcustomify_txtd' ), |
| 22 |
'desc' => __( 'Would you like them?', 'pixcustomify_txtd' ), |
| 23 |
'default' => true, |
| 24 |
'type' => 'switch', |
| 25 |
), |
| 26 |
'typography_google_fonts' => array( |
| 27 |
'name' => 'typography_google_fonts', |
| 28 |
'label' => __( 'Use Google fonts:', 'pixcustomify_txtd' ), |
| 29 |
'desc' => __( 'Would you like them?', 'pixcustomify_txtd' ), |
| 30 |
'default' => true, |
| 31 |
'type' => 'switch', |
| 32 |
'show_group' => 'typography_google_fonts_group', |
| 33 |
'display_option' => true |
| 34 |
), |
| 35 |
'typography_google_fonts_group' => array( |
| 36 |
'type' => 'group', |
| 37 |
'options' => array( |
| 38 |
'typography_group_google_fonts' => array( |
| 39 |
'name' => 'typography_standard_fonts', |
| 40 |
'label' => __( 'Group Google fonts:', 'pixcustomify_txtd' ), |
| 41 |
'desc' => __( 'You can chose to see the google fonts in groups', 'pixcustomify_txtd' ), |
| 42 |
'default' => true, |
| 43 |
'type' => 'switch', |
| 44 |
), |
| 45 |
) |
| 46 |
) |
| 47 |
) |
| 48 |
) |
| 49 |
) |
| 50 |
); # config |