Done !
| Server IP : 54.36.91.62 / Your IP : 216.73.216.38 Web Server : Apache System : Linux webm008.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : awaywithxm ( 25098) PHP Version : 7.0.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awaywithxm/www/wp-content/plugins/post-grid/includes/menu/ |
Upload File : |
<?php
if ( ! defined('ABSPATH')) exit; // if direct access
$current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : 'general';
$post_grid_settings_tab = array();
$post_grid_settings_tab[] = array(
'id' => 'general',
'title' => sprintf(__('%s General','post-grid'),'<i class="fas fa-list-ul"></i>'),
'priority' => 1,
'active' => ($current_tab == 'general') ? true : false,
);
//$post_grid_settings_tab[] = array(
// 'id' => 'templates',
// 'title' => sprintf(__('%s Templates','post-grid'),'<i class="far fa-newspaper"></i>'),
// 'priority' => 3,
// 'active' => ($current_tab == 'templates') ? true : false,
//);
$post_grid_settings_tab[] = array(
'id' => 'help_support',
'title' => sprintf(__('%s Help & support','post-grid'),'<i class="fas fa-hands-helping"></i>'),
'priority' => 90,
'active' => ($current_tab == 'help_support') ? true : false,
);
$post_grid_settings_tab[] = array(
'id' => 'buy_pro',
'title' => sprintf(__('%s Buy Pro','post-grid'),'<i class="fas fa-store"></i>'),
'priority' => 95,
'active' => ($current_tab == 'buy_pro') ? true : false,
);
$post_grid_settings_tab = apply_filters('post_grid_settings_tabs', $post_grid_settings_tab);
$tabs_sorted = array();
if(!empty($post_grid_settings_tab))
foreach ($post_grid_settings_tab as $page_key => $tab) $tabs_sorted[$page_key] = isset( $tab['priority'] ) ? $tab['priority'] : 0;
array_multisort($tabs_sorted, SORT_ASC, $post_grid_settings_tab);
$post_grid_settings = get_option('post_grid_settings');
?>
<div class="wrap">
<div id="icon-tools" class="icon32"><br></div><h2><?php echo sprintf(__('%s Settings', 'post-grid'), post_grid_plugin_name)?></h2>
<form method="post" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI']); ?>">
<input type="hidden" name="post_grid_hidden" value="Y">
<input type="hidden" name="tab" value="<?php echo $current_tab; ?>">
<?php
if(!empty($_POST['post_grid_hidden'])){
$nonce = sanitize_text_field($_POST['_wpnonce']);
if(wp_verify_nonce( $nonce, 'post_grid_nonce' ) && $_POST['post_grid_hidden'] == 'Y') {
do_action('post_grid_settings_save');
?>
<div class="updated notice is-dismissible"><p><strong><?php _e('Changes Saved.', 'post-grid' ); ?></strong></p></div>
<?php
}
}
?>
<div class="settings-tabs-loading" style="">Loading...</div>
<div class="settings-tabs vertical has-right-panel" style="display: none">
<div class="settings-tabs-right-panel">
<?php
if(!empty($post_grid_settings_tab))
foreach ($post_grid_settings_tab as $tab) {
$id = $tab['id'];
$active = $tab['active'];
?>
<div class="right-panel-content <?php if($active) echo 'active';?> right-panel-content-<?php echo $id; ?>">
<?php
do_action('post_grid_settings_tabs_right_panel_'.$id);
?>
</div>
<?php
}
?>
</div>
<ul class="tab-navs">
<?php
if(!empty($post_grid_settings_tab))
foreach ($post_grid_settings_tab as $tab){
$id = $tab['id'];
$title = $tab['title'];
$active = $tab['active'];
$data_visible = isset($tab['data_visible']) ? $tab['data_visible'] : '';
$hidden = isset($tab['hidden']) ? $tab['hidden'] : false;
$is_pro = isset($tab['is_pro']) ? $tab['is_pro'] : false;
$pro_text = isset($tab['pro_text']) ? $tab['pro_text'] : '';
?>
<li <?php if(!empty($data_visible)): ?> data_visible="<?php echo $data_visible; ?>" <?php endif; ?> class="tab-nav <?php if($hidden) echo 'hidden';?> <?php if($active) echo 'active';?>" data-id="<?php echo $id; ?>">
<?php echo $title; ?>
<?php
if($is_pro):
?><span class="pro-feature"><?php echo $pro_text; ?></span> <?php
endif;
?>
</li>
<?php
}
?>
</ul>
<?php
if(!empty($post_grid_settings_tab))
foreach ($post_grid_settings_tab as $tab){
$id = $tab['id'];
$title = $tab['title'];
$active = $tab['active'];
?>
<div class="tab-content <?php if($active) echo 'active';?>" id="<?php echo $id; ?>">
<?php
do_action('post_grid_settings_content_'.$id, $tab);
?>
</div>
<?php
}
?>
<div class="clear clearfix"></div>
<p class="submit">
<?php wp_nonce_field( 'post_grid_nonce' ); ?>
<input class="button button-primary" type="submit" name="Submit" value="<?php _e('Save Changes','post-grid' ); ?>" />
</p>
</div>
</form>
</div>