|
Server : LiteSpeed System : Linux server51.dnsbootclub.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64 User : nandedex ( 1060) PHP Version : 8.1.33 Disable Function : NONE Directory : /home/nandedex/public_html/wp-content/plugins/live-news/admin/view/ |
<?php
if ( ! current_user_can( 'manage_options' ) ) {
wp_die( esc_attr__( 'You do not have sufficient capabilities to access this page.', 'daln' ) );
}
?>
<div class="wrap">
<h2><?php esc_attr_e( 'Live News - Options', 'daln' ); ?></h2>
<?php
//settings errors
if ( isset( $_GET['settings-updated'] ) and $_GET['settings-updated'] == 'true' ) {
settings_errors();
}
?>
<div id="daext-options-wrapper">
<?php
//get current tab value
$active_tab = isset( $_GET['tab'] ) ? $_GET['tab'] : 'general';
?>
<div class="nav-tab-wrapper">
<a href="?page=daln-options&tab=general"
class="nav-tab <?php echo $active_tab == 'general' ? 'nav-tab-active' : ''; ?>"><?php esc_attr_e( 'General', 'daln' ); ?></a>
</div>
<form method='post' action='options.php'>
<?php
if ( $active_tab == 'general' ) {
settings_fields( $this->shared->get( 'slug' ) . '_general_options' );
do_settings_sections( $this->shared->get( 'slug' ) . '_general_options' );
}
?>
<div class="daext-options-action">
<input type="submit" name="submit" id="submit" class="button" value="<?php esc_attr_e( 'Save Changes', 'daln' ); ?>">
</div>
</form>
</div>
</div>