| 1 |
<?php |
| 2 |
|
| 3 |
$group_debugging = array( |
| 4 |
'id' => 'debugging', |
| 5 |
'name' => __( 'Debugging', 'wp-ultimate-post-grid' ), |
| 6 |
'icon' => 'search', |
| 7 |
'settings' => array( |
| 8 |
array( |
| 9 |
'id' => 'enable_debug_messages', |
| 10 |
'name' => __( 'Enable Debug Messages', 'wp-ultimate-post-grid' ), |
| 11 |
'description' => __( 'When enabled the plugin will output debug messages in the JavaScript console.', 'wp-ultimate-post-grid' ), |
| 12 |
'type' => 'toggle', |
| 13 |
'code' => 'css', |
| 14 |
'default' => false, |
| 15 |
), |
| 16 |
), |
| 17 |
); |
| 18 |
|