47 lines
784 B
PHP
Executable File
47 lines
784 B
PHP
Executable File
<?php
|
|
/**
|
|
* $Desc$
|
|
*
|
|
* @version $Id$
|
|
* @package opalestate
|
|
* @author Opal Team <info@wpopal.com >
|
|
* @copyright Copyright (C) 2019 wpopal.com. All Rights Reserved.
|
|
* @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
|
|
*
|
|
* @website http://www.wpopal.com
|
|
* @support http://www.wpopal.com/support/forum.html
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
class Opalestate_Settings_Base_Tab {
|
|
public $key;
|
|
|
|
public function __construct ( $key ='' ){
|
|
|
|
$this->key = $key;
|
|
}
|
|
|
|
public function get_tabnav () {
|
|
|
|
}
|
|
|
|
public function get_tab_content( $key= '' ) {
|
|
|
|
}
|
|
|
|
public function get_subtabs(){
|
|
|
|
}
|
|
|
|
public function get_tab_fields () {
|
|
|
|
}
|
|
|
|
public function get_subtabs_content( $subtab ) {
|
|
|
|
}
|
|
|
|
} |