EstudioJuridicoAlmagro_Web/www/wpv_common/admin/options/quick_setup.php

23 lines
464 B
PHP
Raw Normal View History

<?php
$options = array(
'name' => __('Vamtam | quick setup', 'wpv'),
'auto' => true,
'config' => array(
array(
'name' => __('Vamtam | quick setup', 'wpv'),
'type' => 'title',
'desc' => '',
)
)
);
$tabs = include WPV_THEME_OPTIONS . 'quick_setup.php';
foreach($tabs as $tab) {
$tab_contents = include WPV_THEME_OPTIONS."$tab.php";
$options['config'] = array_merge($options['config'], $tab_contents);
}
return $options;