| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template for the plugin settings structure. |
| 4 |
* |
| 5 |
* @link https://bootstrapped.ventures |
| 6 |
* @since 3.0.0 |
| 7 |
* |
| 8 |
* @package WP_Ultimate_Post_Grid |
| 9 |
* @subpackage WP_Ultimate_Post_Grid/templates/settings |
| 10 |
*/ |
| 11 |
|
| 12 |
require_once 'group-general.php'; |
| 13 |
require_once 'group-layout.php'; |
| 14 |
require_once 'group-animation.php'; |
| 15 |
require_once 'group-permissions.php'; |
| 16 |
require_once 'group-custom-code.php'; |
| 17 |
require_once 'group-debugging.php'; |
| 18 |
|
| 19 |
$settings_structure = array( |
| 20 |
array( |
| 21 |
'id' => 'documentation', |
| 22 |
'name' => __( 'Documentation', 'wp-ultimate-post-grid' ), |
| 23 |
'description' => __( 'All documentation can be found in our Knowledge Base.', 'wp-ultimate-post-grid' ), |
| 24 |
'documentation' => 'https://help.bootstrapped.ventures/collection/7-wp-ultimate-post-grid', |
| 25 |
'icon' => 'support', |
| 26 |
), |
| 27 |
$group_general, |
| 28 |
$group_layout, |
| 29 |
$group_animation, |
| 30 |
array( 'header' => __( 'Advanced', 'wp-ultimate-post-grid' ) ), |
| 31 |
$group_permissions, |
| 32 |
$group_custom_code, |
| 33 |
$group_debugging, |
| 34 |
); |
| 35 |
|