network-admin-settings.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Tab Network Admin Settings |
| 4 | * |
| 5 | * @package WPEL |
| 6 | * @category WordPress Plugin |
| 7 | * @version 2.3 |
| 8 | * @link https://www.webfactoryltd.com/ |
| 9 | * @license Dual licensed under the MIT and GPLv2+ licenses |
| 10 | * |
| 11 | * @var array $vars |
| 12 | * @option array "tabs" |
| 13 | * @option string "current_tab" |
| 14 | */ |
| 15 | |
| 16 | $default_fields_file = WPEL_Plugin::get_plugin_dir( '/templates/partials/tab-contents/fields-default.php' ); |
| 17 | WPEL_Plugin::show_template( $default_fields_file, $vars ); |
| 18 | |
| 19 | submit_button(); |
| 20 |