function themify_page()
{
    if (!current_user_can('manage_options')) {
        wp_die(__('You do not have sufficient permissions to update this site.', 'themify'));
    }
    if (isset($_GET['action'])) {
        $action = 'upgrade';
        themify_updater();
    }
    global $data, $theme, $config, $version, $notifications;
    // check theme information
    $check_theme_name = is_child_theme() ? $theme->parent()->Name : $theme->display('Name');
    $check_theme_version = is_child_theme() ? $theme->parent()->Version : $theme->display('Version');
    ?>
        <!-- alerts -->
        <div class="alert"></div> 
        <!-- /alerts -->
        
        <!-- prompts -->
        <div class="prompt-box">
            <div class="show-login">
            	<form id="themify_update_form" method="post" action="admin.php?page=themify&action=upgrade&type=theme&login=true">
            	<p class="prompt-msg"><?php 
    _e('Enter your Themify login info to upgrade', 'themify');
    ?>
</p>
	            <p><label><?php 
    _e('Username', 'themify');
    ?>
</label> <input type="text" name="username" class="username" value=""/></p>
	            <p><label><?php 
    _e('Password', 'themify');
    ?>
</label> <input type="password" name="password" class="password" value=""/></p>
	            <input type="hidden" value="theme" name="type" />
	            <input type="hidden" value="true" name="login" />
	            <p class="pushlabel"><input name="login" type="submit" value="Login" class="button upgrade-login" /></p>
	            </form>
            </div>
            <div class="show-error">
            	<p class="error-msg"><?php 
    _e('There were some errors updating the theme', 'themify');
    ?>
</p>
            </div>
        </div>
        <div class="overlay">&nbsp;</div>
        <!-- /prompts -->
        
        <!-- html -->
        <form id="themify" method="post" action="" enctype="multipart/form-data">
        <p id="theme-title"><?php 
    echo $check_theme_name;
    ?>
 <em><?php 
    echo $check_theme_version;
    ?>
 (<a href="http://themify.me/logs/<?php 
    echo '' != $theme->display('Template') ? $theme->display('Template') : strtolower($check_theme_name);
    ?>
-changelogs" class="themify_changelogs" target="_blank"><?php 
    _e('changelogs', 'themify');
    ?>
</a>)</em></p>
		<p class="top-save-btn"><a href="#" id="save-button" class="save-button"><?php 
    _e('Save All', 'themify');
    ?>
</a></em></p>
		<div id="content">
        
            <!-- nav -->
            <ul id="maintabnav">
                <li class="setting"><a href="#setting"><?php 
    _e('Settings', 'themify');
    ?>
</a></li>
                <li class="styling"><a href="#styling"><?php 
    _e('Styling', 'themify');
    ?>
</a></li>
                <li class="skins"><a href="#skins"><?php 
    _e('Skins', 'themify');
    ?>
</a></li>
                <li class="transfer"><a href="#transfer"><?php 
    _e('Transfer', 'themify');
    ?>
</a></li>
            </ul>
            <!-- /nav -->
    		
            <!------------------------------------------------------------------------------------>
            
            <!--setting tab -->
            <div id="setting" class="maintab">
                
                <ul class="subtabnav">
                    <?php 
    $x = 1;
    foreach ($config['panel']['settings']['tab'] as $tab) {
        if ($x) {
            echo '<li class="selected"><a href="#setting-' . themify_scrub_func($tab['_a']['title']) . '">' . $tab['_a']['title'] . '</a></li>';
            $x = 0;
        } else {
            echo '<li><a href="#setting-' . themify_scrub_func($tab['_a']['title']) . '">' . $tab['_a']['title'] . '</a></li>';
        }
    }
    ?>
                </ul>
                
                 <?php 
    foreach ($config['panel']['settings']['tab'] as $tab) {
        ?>
					
                    <!-- subtab: setting-<?php 
        echo themify_scrub_func($tab['_a']['title']);
        ?>
 -->
                    <div id="setting-<?php 
        echo themify_scrub_func($tab['_a']['title']);
        ?>
" class="subtab">
                        <?php 
        if (is_array($tab['_c']['custom-module'])) {
            if (isset($tab['_c']['custom-module']['_a']['title']) && isset($tab['_c']['custom-module']['_a']['function'])) {
                echo themify_fieldset($tab['_c']['custom-module']['_a']['title'], themify_scrub_func($tab['_c']['custom-module']['_a']['function']), $tab['_c']['custom-module']['_a']);
            } else {
                foreach ($tab['_c']['custom-module'] as $module) {
                    echo themify_fieldset($module['_a']['title'], themify_scrub_func($module['_a']['function']), $module['_a']);
                }
            }
        }
        ?>
                    </div>
                    <!-- /subtab: setting-<?php 
        echo themify_scrub_func($tab['_a']['title']);
        ?>
 -->
                <?php 
    }
    ?>
            
            </div>
            <!--/setting tab -->
            
            <!------------------------------------------------------------------------------------>
            
            <!--styling tab -->
            <div id="styling" class="maintab">
            
                <ul class="subtabnav">
                    <?php 
    $x = 1;
    if (isset($config['panel']['styling']['tab']['_a']['title'])) {
        echo '<li class="selected"><a href="#styling-' . themify_scrub_func($config['panel']['styling']['tab']['_a']['title']) . '">' . $config['panel']['styling']['tab']['_a']['title'] . '</a></li>';
    } else {
        foreach ($config['panel']['styling']['tab'] as $tab) {
            if ($x) {
                echo '<li class="selected"><a href="#styling-' . themify_scrub_func($tab['_a']['title']) . '">' . $tab['_a']['title'] . '</a></li>';
                $x = 0;
            } else {
                echo '<li><a href="#styling-' . themify_scrub_func($tab['_a']['title']) . '">' . $tab['_a']['title'] . '</a></li>';
            }
        }
    }
    ?>
                </ul>
                
                <?php 
    if (isset($config['panel']['styling']['tab']['_a']['title'])) {
        ?>
					<!-- subtab: styling-<?php 
        echo themify_scrub_func($config['panel']['styling']['tab']['_a']['title']);
        ?>
 -->
						<div id="styling-<?php 
        echo themify_scrub_func($config['panel']['styling']['tab']['_a']['title']);
        ?>
" class="subtab">
							<?php 
        if (is_array($config['panel']['styling']['tab']['_c']['element'])) {
            if (isset($config['panel']['styling']['tab']['_c']['element']['_a']['title']) && isset($config['panel']['styling']['tab']['_c']['element']['_a']['selector'])) {
                echo themify_container(themify_scrub_func($tab['_a']['title']), $config['panel']['styling']['tab']['_c']['element']);
            } else {
                foreach ($config['panel']['styling']['tab']['_c']['element'] as $element) {
                    echo themify_container(themify_scrub_func($config['panel']['styling']['tab']['_a']['title']), $element);
                }
            }
        }
        ?>
						</div>
						<!-- /subtab: styling-<?php 
        echo themify_scrub_func($tab['_a']['title']);
        ?>
 -->
				<?php 
    } else {
        foreach ($config['panel']['styling']['tab'] as $tab) {
            ?>
					
						<!-- subtab: styling-<?php 
            echo themify_scrub_func($tab['_a']['title']);
            ?>
 -->
						<div id="styling-<?php 
            echo themify_scrub_func($tab['_a']['title']);
            ?>
" class="subtab">
							<?php 
            if (is_array($tab['_c']['element'])) {
                if (isset($tab['_c']['element']['_a']['title']) && isset($tab['_c']['element']['_a']['selector'])) {
                    echo themify_container(themify_scrub_func($tab['_a']['title']), $tab['_c']['element']);
                } else {
                    foreach ($tab['_c']['element'] as $element) {
                        echo themify_container(themify_scrub_func($tab['_a']['title']), $element);
                    }
                }
            }
            ?>
						</div>
						<!-- /subtab: styling-<?php 
            echo themify_scrub_func($tab['_a']['title']);
            ?>
 -->
					<?php 
        }
    }
    ?>
                
            </div>
            <!--/styling tab -->
    
    		<!------------------------------------------------------------------------------------>
            
            <!--skins tab -->
            <div id="skins" class="maintab">
                <ul class="subtabnav">
                    <li class="selected"><a href="#setting-general"><?php 
    _e('Skins', 'themify');
    ?>
</a></li>
                </ul>
               
                <div id="load-load" class="subtab">
                    <?php 
    echo themify_get_skins();
    ?>
                </div>
                
            </div>
            <!--/skins tab -->
    		
            <!------------------------------------------------------------------------------------>
            
            <!--import tab -->
            <div id="transfer" class="maintab">
                <ul class="subtabnav">
                    <li><a href="#import-import"><?php 
    _e('Import/Export', 'themify');
    ?>
</a></li>
                </ul>
                
                <div id="transfer-import" class="subtab">
                    <div class="biggest-transfer-btn">
                    <input type="hidden" id="import" />
                     <?php 
    themify_uploader('import', array('label' => __('Import', 'themify'), 'confirm' => __('Import will overwrite all settings and configurations. Press OK to continue, Cancel to stop.', 'themify')));
    ?>
 
                     
                    <em><?php 
    _e('or', 'themify');
    ?>
</em>
                    <?php 
    /**
     * URL of Themify Settings Page properly nonced.
     * @var String
     */
    $baseurl = wp_nonce_url(admin_url('admin.php?page=themify'), 'themify_export_nonce');
    // If user requested data exporting
    //if( 'true' == $_GET['export']) themify_export();
    ?>
                    <a href="<?php 
    echo $baseurl;
    ?>
&amp;export=true" class="export" id="download-export"><?php 
    _e('Export', 'themify');
    ?>
</a>
                	</div>
                </div>
            
            </div>
            <!--/import tab -->
            
            <!------------------------------------------------------------------------------------>
    
        </div>
        <!--/content -->
        
        <!-- footer -->
        <div id="bottomtab">
            <p id="logo"><span>Themify</span> v<?php 
    echo $version;
    ?>
</p>
            <p class="reset">
                <strong><?php 
    _e('Reset:', 'themify');
    ?>
</strong> 
                <a href="#" id="reset-setting" class="reset-button"><?php 
    _e('Settings', 'themify');
    ?>
</a><a href="#" id="reset-styling" class="reset-button"><?php 
    _e('Styling', 'themify');
    ?>
</a>
            </p>
            <p class="btm-save-btn">
            	<a href="#" class="save-button"><?php 
    _e('Save All', 'themify');
    ?>
</a>
       		</p>
        </div>
        <!--/footer -->
        
   		</form>
    	<div class="clearBoth"></div>
        <!-- /html -->
        
		<?php 
    do_action('themify_settings_panel_end');
}
function themify_page()
{
    if (!current_user_can('manage_options')) {
        wp_die(__('You do not have sufficient permissions to update this site.', 'themify'));
    }
    if (isset($_GET['action'])) {
        $action = 'upgrade';
        themify_updater();
    }
    global $themify_config;
    // check theme information
    $theme = wp_get_theme();
    $check_theme_name = is_child_theme() ? $theme->parent()->Name : $theme->display('Name');
    $check_theme_version = is_child_theme() ? $theme->parent()->Version : $theme->display('Version');
    $themify_has_styling_data = themify_has_styling_data();
    /**
     * Markup for Themify skins. It's empty if there are no skins
     * @since 2.1.8
     * @var string
     */
    $themify_skins = themify_get_skins();
    ?>
    <!-- alerts -->
    <div class="alert"></div>
    <!-- /alerts -->

    <!-- prompts -->
    <div class="prompt-box">
        <div class="show-login">
            <form id="themify_update_form" method="post" action="admin.php?page=themify&action=upgrade&type=theme&login=true">
            <p class="prompt-msg"><?php 
    _e('Enter your Themify login info to upgrade', 'themify');
    ?>
</p>
            <p><label><?php 
    _e('Username', 'themify');
    ?>
</label> <input type="text" name="username" class="username" value=""/></p>
            <p><label><?php 
    _e('Password', 'themify');
    ?>
</label> <input type="password" name="password" class="password" value=""/></p>
            <input type="hidden" value="theme" name="type" />
            <input type="hidden" value="true" name="login" />
            <p class="pushlabel"><input name="login" type="submit" value="Login" class="button upgrade-login" /></p>
            </form>
        </div>
        <div class="show-error">
            <p class="error-msg"><?php 
    _e('There were some errors updating the theme', 'themify');
    ?>
</p>
        </div>
    </div>
    <div class="overlay">&nbsp;</div>
    <!-- /prompts -->

    <!-- html -->
    <form id="themify" method="post" action="" enctype="multipart/form-data">
    <p id="theme-title"><?php 
    echo esc_html($check_theme_name);
    ?>
 <em><?php 
    echo esc_html($check_theme_version);
    ?>
 (<a href="http://themify.me/logs/<?php 
    echo '' != $theme->display('Template') ? $theme->display('Template') : strtolower($check_theme_name);
    ?>
-changelogs" class="themify_changelogs" target="_blank" data-changelog="<?php 
    echo themify_https_esc('http://themify.me/changelogs/');
    echo get_template();
    ?>
.txt"><?php 
    _e('changelogs', 'themify');
    ?>
</a>)</em></p>
    <p class="top-save-btn">
        <a href="#" class="save-button"><?php 
    _e('Save', 'themify');
    ?>
</a>
    </p>
	<div id="content">

        <!-- nav -->
        <ul id="maintabnav">
            <li class="setting"><a href="#setting"><?php 
    _e('Settings', 'themify');
    ?>
</a></li>
			<?php 
    if ($themify_has_styling_data) {
        ?>
                <li class="styling"><a href="#styling"><?php 
        _e('Styling', 'themify');
        ?>
</a></li>
			<?php 
    }
    // $themify_has_styling_data
    ?>
			<?php 
    if (!empty($themify_skins)) {
        ?>
				<li class="skins"><a href="#skins"><?php 
        _e('Skins', 'themify');
        ?>
</a></li>
			<?php 
    }
    ?>
            <li class="transfer"><a href="#transfer"><?php 
    _e('Transfer', 'themify');
    ?>
</a></li>
			<li class="demo-import"><a href="#demo-import"><?php 
    _e('Demo Import', 'themify');
    ?>
</a></li>
			<?php 
    if (themify_allow_update()) {
        ?>
				<li class="update-check"><a href="#update-check"><?php 
        _e('Update', 'themify');
        ?>
</a></li>
			<?php 
    }
    ?>
        </ul>
        <!-- /nav -->

        <!------------------------------------------------------------------------------------>

        <!--setting tab -->
        <div id="setting" class="maintab">

            <ul class="subtabnav">
                <?php 
    $x = 1;
    foreach ($themify_config['panel']['settings']['tab'] as $tab) {
        if ($x) {
            echo '<li class="selected"><a href="' . esc_attr('#setting-' . themify_scrub_func($tab['id'])) . '">' . $tab['title'] . '</a></li>';
            $x = 0;
        } else {
            if (isset($tab['id'])) {
                echo '<li><a href="' . esc_attr('#setting-' . themify_scrub_func($tab['id'])) . '">' . $tab['title'] . '</a></li>';
            }
        }
    }
    ?>
            </ul>

            <?php 
    $themify_settings_notice = false;
    ?>
             <?php 
    foreach ($themify_config['panel']['settings']['tab'] as $tab) {
        ?>
                <!-- subtab: setting-<?php 
        echo themify_scrub_func($tab['id']);
        ?>
 -->
                <div id="<?php 
        echo esc_attr('setting-' . themify_scrub_func($tab['id']));
        ?>
" class="subtab">
                    <?php 
        if (!$themify_settings_notice) {
            ?>
                        <div class="themify-info-link"><?php 
            printf(__('For more info about the options below, refer to the <a href="%s">General Settings</a> documentation.', 'themify'), 'http://themify.me/docs/general-settings');
            ?>
</div>
                        <?php 
            $themify_settings_notice = true;
        }
        // themify settings notice
        ?>
					<?php 
        if (is_array($tab['custom-module'])) {
            if (isset($tab['custom-module']['title']) && isset($tab['custom-module']['function'])) {
                echo themify_fieldset($tab['custom-module']['title'], themify_scrub_func($tab['custom-module']['function']), $tab['custom-module']);
            } else {
                foreach ($tab['custom-module'] as $module) {
                    echo themify_fieldset($module['title'], themify_scrub_func($module['function']), $module);
                }
            }
        }
        ?>
                </div>
                <!-- /subtab: setting-<?php 
        echo themify_scrub_func($tab['id']);
        ?>
 -->
            <?php 
    }
    ?>

        </div>
        <!--/setting tab -->

        <!------------------------------------------------------------------------------------>

		<?php 
    if ($themify_has_styling_data) {
        ?>
        <!--styling tab -->
        <div id="styling" class="maintab">

			<?php 
        if (get_option('themify_customize_notice', 1)) {
            ?>
				<div class="themify-big-notice black js-customize-notice">
					<h3><?php 
            _e('New Customize Panel', 'themify');
            ?>
</h3>
					<p><strong><?php 
            _e('We have a new Customize panel which allows you to customize the theme
					with live preview on the frontend. This Themify Styling panel still works as is,
					but we recommend you to start using the new Customize panel.', 'themify');
            ?>
</strong></p>
					<p><?php 
            _e('Because the Customize panel stores data differently,
					the data in the Themify Styling is not migrated to the Customize panel. You can either start
					fresh by resetting the Themify Styling or use both as you like.', 'themify');
            ?>
</p>
					<a href="#" class="button notice-dismiss" data-notice="customize"><?php 
            _e('Start Customize', 'themify');
            ?>
</a>
					<a href="#" class="close notice-dismiss" data-notice="customize">
						<i class="ti-close"></i>
					</a>
				</div>
			<?php 
        }
        ?>

            <ul class="subtabnav">
                <?php 
        $x = 1;
        if (isset($themify_config['panel']['styling']['tab']['title'])) {
            echo '<li class="selected"><a href="' . esc_attr('#styling-' . themify_scrub_func($themify_config['panel']['styling']['tab']['title'])) . '">' . $themify_config['panel']['styling']['tab']['title'] . '</a></li>';
        } else {
            foreach ($themify_config['panel']['styling']['tab'] as $tab) {
                if ($x) {
                    echo '<li class="selected"><a href="' . esc_attr('#styling-' . themify_scrub_func($tab['id'])) . '">' . $tab['title'] . '</a></li>';
                    $x = 0;
                } else {
                    echo '<li><a href="' . esc_attr('#styling-' . themify_scrub_func($tab['id'])) . '">' . $tab['title'] . '</a></li>';
                }
            }
        }
        ?>
            </ul>

            <?php 
        if (isset($themify_config['panel']['styling']['tab']['title'])) {
            ?>
				<!-- subtab: styling-<?php 
            echo themify_scrub_func($themify_config['panel']['styling']['tab']['_a']['title']);
            ?>
 -->
				<div id="<?php 
            echo esc_attr('styling-' . themify_scrub_func($themify_config['panel']['styling']['tab']['title']));
            ?>
" class="subtab">
						<?php 
            if (is_array($themify_config['panel']['styling']['tab']['element'])) {
                if (isset($themify_config['panel']['styling']['tab']['element']['title']) && isset($themify_config['panel']['styling']['tab']['element']['selector'])) {
                    echo themify_container(themify_scrub_func($tab['id']), $themify_config['panel']['styling']['tab']['element']);
                } else {
                    foreach ($themify_config['panel']['styling']['tab']['element'] as $element) {
                        echo themify_container(themify_scrub_func($themify_config['panel']['styling']['tab']['title']), $element);
                    }
                }
            }
            ?>
					</div>
					<!-- /subtab: styling-<?php 
            echo themify_scrub_func($tab['_a']['title']);
            ?>
 -->
			<?php 
        } else {
            foreach ($themify_config['panel']['styling']['tab'] as $tab) {
                ?>
					<!-- subtab: styling-<?php 
                echo themify_scrub_func($tab['id']);
                ?>
 -->
					<div id="<?php 
                echo esc_attr('styling-' . themify_scrub_func($tab['id']));
                ?>
" class="subtab">
						<?php 
                if (is_array($tab['element'])) {
                    if (isset($tab['element']['title']) && isset($tab['element']['selector'])) {
                        echo themify_container(themify_scrub_func($tab['id']), $tab['element']);
                    } else {
                        foreach ($tab['element'] as $element) {
                            echo themify_container(themify_scrub_func($tab['id']), $element);
                        }
                    }
                }
                ?>
					</div>
					<!-- /subtab: styling-<?php 
                echo themify_scrub_func($tab['id']);
                ?>
 -->
				<?php 
            }
        }
        ?>

        </div>
        <!--/styling tab -->
		<?php 
    }
    // $themify_has_styling_data
    ?>

        <!------------------------------------------------------------------------------------>

        <!--skins tab -->
        <?php 
    if (!empty($themify_skins)) {
        ?>
			<div id="skins" class="maintab">
				<ul class="subtabnav">
					<li class="selected"><a href="#setting-general"><?php 
        _e('Skins', 'themify');
        ?>
</a></li>
				</ul>

				<div id="load-load" class="subtab">
					<?php 
        echo themify_get_skins();
        ?>
				</div>
			</div>
			<!--/skins tab -->
		<?php 
    }
    ?>

        <!------------------------------------------------------------------------------------>

        <!--transfer tab -->
        <div id="transfer" class="maintab">
            <ul class="subtabnav">
                <li><a href="#transfer-import"><?php 
    _e('Theme Settings', 'themify');
    ?>
</a></li>
            </ul>

            <div id="transfer-import" class="subtab">
				<div class="themify-info-link"><?php 
    _e('Click "Export" to export the Themify panel data which you can use to import in the future by clicking the "Import" button. Note: this will only export/import the data within the Themify panel (the WordPress settings, widgets, content, comments, page/post settings, etc. are not included).', 'themify');
    ?>
</div>

                <div class="biggest-transfer-btn">
                <input type="hidden" id="import" />
                 <?php 
    themify_uploader('import', array('label' => __('Import', 'themify'), 'confirm' => __('Import will overwrite all settings and configurations. Press OK to continue, Cancel to stop.', 'themify')));
    ?>

                <em><?php 
    _e('or', 'themify');
    ?>
</em>
                <?php 
    /**
     * URL of Themify Settings Page properly nonced.
     * @var String
     */
    $baseurl = wp_nonce_url(admin_url('admin.php?page=themify'), 'themify_export_nonce');
    $baseurl = add_query_arg('export', 'themify', $baseurl);
    ?>
                <a href="<?php 
    echo esc_url($baseurl);
    ?>
" class="export" id="download-export"><?php 
    _e('Export', 'themify');
    ?>
</a>
                </div>
            </div>

        </div>
        <!--/transfer tab -->

		<!--demo import tab -->
        <div id="demo-import" class="maintab">
            <ul class="subtabnav">
                <li><a href="#demo-import"><?php 
    _e('Demo Import', 'themify');
    ?>
</a></li>
            </ul>

            <div id="demo-import" class="subtab demo-import-main">
				<p>
				<a href="#" class="button import-sample-content" data-default="<?php 
    _e('Import Demo', 'themify');
    ?>
" data-success="<?php 
    _e('Done', 'themify');
    ?>
" data-importing="<?php 
    _e('Importing', 'themify');
    ?>
"> <i class="ti-arrow-down"></i> <span><?php 
    _e('Import Demo', 'themify');
    ?>
</span> </a>
				</p>
				<p><?php 
    _e('Import Demo will import the content (posts/pages), Themify panel settings, menus and widgets as our demo. Due to copyright reasons, demo images will be replaced with a placeholder image.', 'themify');
    ?>
</p>
                <p><small><?php 
    printf(__('Demo Import might not work for some servers with restrict settings. Sample content can also be imported manually with
WordPress <a href="%s">Tools &gt; Import</a>.', 'themify'), 'http://themify.me/docs/importing#import-tool');
    ?>
</small></p>
				<p>
				<a href="#" class="button erase-sample-content" data-default="<?php 
    _e('Erase Demo', 'themify');
    ?>
" data-erasing="<?php 
    _e('Erasing', 'themify');
    ?>
" data-success="<?php 
    _e('Done', 'themify');
    ?>
"> <i class="ti-close"></i> <span><?php 
    _e('Erase Demo', 'themify');
    ?>
</span> </a>
				</p>
				<p><?php 
    _e('Erase demo will delete the imported posts/pages. Existing and modified imported post/page will not be deleted. Themify panel settings and widgets will not be removed. You may import the content again later.', 'themify');
    ?>
</p>
			</div>

        </div>
        <!--/demo import tab -->

        <?php 
    if (themify_allow_update()) {
        ?>
		<!--update theme/framework tab -->
        <div id="update-check" class="maintab">
            <ul class="subtabnav">
                <li><a href="#update-main"><?php 
        _e('Update', 'themify');
        ?>
</a></li>
            </ul>

            <div id="update-main" class="subtab update-main">
				<?php 
        ob_start();
        themify_check_version('tab');
        $update_message = ob_get_contents();
        ob_end_clean();
        $button_label = __('Check for Updates', 'themify');
        $update_available = __('Check for theme and framework updates.', 'themify');
        if (isset($_GET['update']) && 'check' == $_GET['update']) {
            $button_label = __('Check Again', 'themify');
            $update_available = __('No updates available.', 'themify');
        }
        if ($update_message) {
            ?>
					<?php 
            if (false !== strpos($update_message, 'reinstalltheme') && false === strpos($update_message, 'updateready')) {
                ?>
						<p><a href="<?php 
                echo esc_url(add_query_arg('update', 'check', admin_url('admin.php?page=themify')));
                ?>
" class="button big-button update"><span><?php 
                echo esc_html($button_label);
                ?>
</span></a>
						</p>
						<p><?php 
                echo esc_html($update_available);
                ?>
</p>
					<?php 
            }
            ?>
					<?php 
            echo !empty($update_message) ? $update_message : '';
            ?>
				<?php 
        } else {
            ?>
					<p><a href="<?php 
            echo esc_url(add_query_arg('update', 'check', admin_url('admin.php?page=themify')));
            ?>
" class="button big-button update"><span><?php 
            echo esc_html($button_label);
            ?>
</span></a>
					</p>
					<p><?php 
            echo esc_html($update_available);
            ?>
</p>
				<?php 
        }
        ?>
			</div>
        </div>
        <!--/update theme/framework tab -->
        <?php 
    }
    // user can update_themes
    ?>

        <!------------------------------------------------------------------------------------>

    </div>
    <!--/content -->

	<?php 
    if (get_option(get_template() . '_themify_import_notice', 1)) {
        ?>
		<div id="demo-import-notice">
			<h3><?php 
        _e('Import Demo', 'themify');
        ?>
</h3>
			<p><?php 
        _e('Would you like to import the demo content to have the exact look as our demo?', 'themify');
        ?>
</p>
			<p><?php 
        _e('You may import or erase demo content later at the Import tab of the Themify panel.', 'themify');
        ?>
</p>
			<a href="#" class="button import-sample-content" data-default="<?php 
        _e('Import Demo', 'themify');
        ?>
" data-success="<?php 
        _e('Done', 'themify');
        ?>
" data-importing="<?php 
        _e('Importing', 'themify');
        ?>
"> <i class="ti-arrow-down"></i> <span><?php 
        _e('Yes, import', 'themify');
        ?>
</span> </a>
			<a href="#" class="thanks-button dismiss-import-notice"> <?php 
        _e('No, thanks', 'themify');
        ?>
 </a>
			<a href="#" class="close dismiss-import-notice"><i class="ti-close"></i></a>
		</div>
		<?php 
        // disable the demo import modal after first visit
        update_option(get_template() . '_themify_import_notice', 0);
        ?>
	<?php 
    }
    ?>

    <!-- footer -->
    <div id="bottomtab">
       <p id="logo"><a href="http://themify.me/logs/framework-changelogs/" data-changelog="http://themify.me/changelogs/themify.txt" target="_blank" class="themify_changelogs">v<?php 
    echo THEMIFY_VERSION;
    ?>
</a></p>
        <div class="reset">
			<strong><?php 
    _e('Reset', 'themify');
    ?>
</strong>
			<ul>
                <li><a href="#" id="reset-setting" class="reset-button"><?php 
    _e('Settings', 'themify');
    ?>
</a></li>
				<li><?php 
    if ($themify_has_styling_data) {
        ?>
					<a href="#" id="reset-styling" class="reset-button"><?php 
        _e('Styling', 'themify');
        ?>
</a>
				<?php 
    }
    ?>
</li>
			</ul>
        </div>
        <p class="btm-save-btn">
            <a href="#" class="save-button"><?php 
    _e('Save', 'themify');
    ?>
</a>
        </p>
    </div>
    <!--/footer -->

    </form>
    <div class="clearBoth"></div>
    <!-- /html -->

	<?php 
    do_action('themify_settings_panel_end');
}
function themify_page()
{
    if (!current_user_can('manage_options')) {
        wp_die(__('You do not have sufficient permissions to update this site.', 'themify'));
    }
    if (isset($_GET['action'])) {
        $action = 'upgrade';
        themify_updater();
    }
    global $data, $theme, $config, $version, $notifications;
    ?>
        
        <!-- js -->
		<script type='text/javascript'>
        	// Themify Directory and Full Path
        	var app_url = "<?php 
    echo get_template_directory_uri();
    ?>
/themify/";
        	var theme_url = "<?php 
    echo get_template_directory_uri();
    ?>
/";
        	var blog_url = "<?php 
    echo site_url();
    ?>
/";
        	var complete_status = true;
        	var current_obj = "";
        </script>       
        <!-- /js -->
        
        <!-- alerts -->
        <div class="alert"></div> 
        <!-- /alerts -->
        
        <!-- prompts -->
        <div class="prompt-box">
            <div class="show-login">
            	<form id="themify_update_form" method="post" action="admin.php?page=themify&action=upgrade&type=theme&login=true">
            	<p class="prompt-msg">Enter your Themify login info to upgrade</p>
	            <p><label>Username</label> <input type="text" name="username" class="username" value=""/></p>
	            <p><label>Password</label> <input type="password" name="password" class="password" value=""/></p>
	            <input type="hidden" value="theme" name="type" />
	            <input type="hidden" value="true" name="login" />
	            <p class="pushlabel"><input name="login" type="submit" value="Login" class="button upgrade-login" /></p>
	            </form>
            </div>
            <div class="show-error">
            	<p class="error-msg">There were some errors updating the theme</p>
            </div>
        </div>
        <div class="overlay">&nbsp;</div>
        <!-- /prompts -->
        
        <!-- html -->
        <form id="themify" method="post" action="" enctype="multipart/form-data">
        <p id="theme-title"><?php 
    echo $theme['Name'];
    ?>
 <em><?php 
    echo $theme['Version'];
    ?>
 (<a href="http://themify.me/logs/<?php 
    echo strtolower($theme['Name']);
    ?>
-changelogs" class="themify_changelogs" target="_blank">changelogs</a>)</em></p>
		<p class="top-save-btn"><a href="#" id="save-button" class="save-button">Save All</a></em></p>
		<div id="content">
        
            <!-- nav -->
            <ul id="maintabnav">
                <li class="setting"><a href="#setting">Settings</a></li>
                <li class="styling"><a href="#styling">Styling</a></li>
                <li class="skins"><a href="#skins">Skins</a></li>
                <li class="transfer"><a href="#transfer">Transfer</a></li>
            </ul>
            <!-- /nav -->
    		
            <!------------------------------------------------------------------------------------>
            
            <!--setting tab -->
            <div id="setting" class="maintab">
                
                <ul class="subtabnav">
                    <?php 
    $x = 1;
    foreach ($config['panel']['settings']['tab'] as $tab) {
        if ($x) {
            echo '<li class="selected"><a href="#setting-' . themify_scrub_func($tab['_a']['title']) . '">' . $tab['_a']['title'] . '</a></li>';
            $x = 0;
        } else {
            echo '<li><a href="#setting-' . themify_scrub_func($tab['_a']['title']) . '">' . $tab['_a']['title'] . '</a></li>';
        }
    }
    ?>
                </ul>
                
                 <?php 
    foreach ($config['panel']['settings']['tab'] as $tab) {
        ?>
					
                    <!-- subtab: setting-<?php 
        echo themify_scrub_func($tab['_a']['title']);
        ?>
 -->
                    <div id="setting-<?php 
        echo themify_scrub_func($tab['_a']['title']);
        ?>
" class="subtab">
                        <?php 
        if (is_array($tab['_c']['custom-module'])) {
            if (isset($tab['_c']['custom-module']['_a']['title']) && isset($tab['_c']['custom-module']['_a']['function'])) {
                echo themify_fieldset($tab['_c']['custom-module']['_a']['title'], themify_scrub_func($tab['_c']['custom-module']['_a']['function']), $tab['_c']['custom-module']['_a']);
            } else {
                foreach ($tab['_c']['custom-module'] as $module) {
                    echo themify_fieldset($module['_a']['title'], themify_scrub_func($module['_a']['function']), $module['_a']);
                }
            }
        }
        ?>
                    </div>
                    <!-- /subtab: setting-<?php 
        echo themify_scrub_func($tab['_a']['title']);
        ?>
 -->
                <?php 
    }
    ?>
            
            </div>
            <!--/setting tab -->
            
            <!------------------------------------------------------------------------------------>
            
            <!--styling tab -->
            <div id="styling" class="maintab">
            
                <ul class="subtabnav">
                    <?php 
    $x = 1;
    if (isset($config['panel']['styling']['tab']['_a']['title'])) {
        echo '<li class="selected"><a href="#styling-' . themify_scrub_func($config['panel']['styling']['tab']['_a']['title']) . '">' . $config['panel']['styling']['tab']['_a']['title'] . '</a></li>';
    } else {
        foreach ($config['panel']['styling']['tab'] as $tab) {
            if ($x) {
                echo '<li class="selected"><a href="#styling-' . themify_scrub_func($tab['_a']['title']) . '">' . $tab['_a']['title'] . '</a></li>';
                $x = 0;
            } else {
                echo '<li><a href="#styling-' . themify_scrub_func($tab['_a']['title']) . '">' . $tab['_a']['title'] . '</a></li>';
            }
        }
    }
    ?>
                </ul>
                
                <?php 
    if (isset($config['panel']['styling']['tab']['_a']['title'])) {
        ?>
					<!-- subtab: styling-<?php 
        echo themify_scrub_func($config['panel']['styling']['tab']['_a']['title']);
        ?>
 -->
						<div id="styling-<?php 
        echo themify_scrub_func($config['panel']['styling']['tab']['_a']['title']);
        ?>
" class="subtab">
							<?php 
        if (is_array($config['panel']['styling']['tab']['_c']['element'])) {
            if (isset($config['panel']['styling']['tab']['_c']['element']['_a']['title']) && isset($config['panel']['styling']['tab']['_c']['element']['_a']['selector'])) {
                echo themify_container(themify_scrub_func($tab['_a']['title']), $config['panel']['styling']['tab']['_c']['element']);
            } else {
                foreach ($config['panel']['styling']['tab']['_c']['element'] as $element) {
                    echo themify_container(themify_scrub_func($config['panel']['styling']['tab']['_a']['title']), $element);
                }
            }
        }
        ?>
						</div>
						<!-- /subtab: styling-<?php 
        echo themify_scrub_func($tab['_a']['title']);
        ?>
 -->
				<?php 
    } else {
        foreach ($config['panel']['styling']['tab'] as $tab) {
            ?>
					
						<!-- subtab: styling-<?php 
            echo themify_scrub_func($tab['_a']['title']);
            ?>
 -->
						<div id="styling-<?php 
            echo themify_scrub_func($tab['_a']['title']);
            ?>
" class="subtab">
							<?php 
            if (is_array($tab['_c']['element'])) {
                if (isset($tab['_c']['element']['_a']['title']) && isset($tab['_c']['element']['_a']['selector'])) {
                    echo themify_container(themify_scrub_func($tab['_a']['title']), $tab['_c']['element']);
                } else {
                    foreach ($tab['_c']['element'] as $element) {
                        echo themify_container(themify_scrub_func($tab['_a']['title']), $element);
                    }
                }
            }
            ?>
						</div>
						<!-- /subtab: styling-<?php 
            echo themify_scrub_func($tab['_a']['title']);
            ?>
 -->
					<?php 
        }
    }
    ?>
                
            </div>
            <!--/styling tab -->
    
    		<!------------------------------------------------------------------------------------>
            
            <!--skins tab -->
            <div id="skins" class="maintab">
                <ul class="subtabnav">
                    <li class="selected"><a href="#setting-general">Skins</a></li>
                </ul>
               
                <div id="load-load" class="subtab">
                    <?php 
    echo themify_get_skins();
    ?>
                </div>
                
            </div>
            <!--/skins tab -->
    		
            <!------------------------------------------------------------------------------------>
            
            <!--import tab -->
            <div id="transfer" class="maintab">
                
                <ul class="subtabnav">
                    <li><a href="#import-import">Import/Export</a></li>
                </ul>
                
                <div id="transfer-import" class="subtab">
                    <p class="biggest-transfer-btn">
                    <a href="#" class="import" id="download-import">Import</a> <em>or</em>
                    <a href="#" class="export" id="download-export">Export</a>
                	</p>
                </div>
            
            </div>
            <!--/import tab -->
            
            <!------------------------------------------------------------------------------------>
    
        </div>
        <!--/content -->
        
        <!-- footer -->
        <div id="bottomtab">
            <p id="logo"><span>Themify</span> v<?php 
    echo $version;
    ?>
</p>
            <p class="reset">
                <strong>Reset:</strong> 
                <a href="#" id="reset-setting" class="reset-button">Settings</a><a href="#" id="reset-styling" class="reset-button">Styling</a>
            </p>
            <p class="btm-save-btn">
            	<a href="#" class="save-button">Save All</a>
       		</p>
        </div>
        <!--/footer -->
        
   		</form>
    	<div class="clearBoth"></div>
        <!-- /html -->
        
		<?php 
}