| Server IP : 107.13.46.68 / Your IP : 216.73.216.11 Web Server : Apache/2.4.58 (Ubuntu) System : Linux mariOS 6.8.0-51-generic #52-Ubuntu SMP PREEMPT_DYNAMIC Thu Dec 5 13:09:44 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/mariotermine.me/wp-content/plugins/insert-html-snippet/admin/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) )
exit;
if(isset($_GET['page']) && $_GET['page']=='insert-html-snippet-suggest-features' ){
ob_start();
}
if(isset($_GET['page']) && $_GET['page']=='insert-html-snippet-manage' ){
ob_start();
}
add_action('admin_menu', 'xyz_ihs_menu');
function xyz_ihs_menu(){
add_menu_page('insert-html-snippet', 'XYZ Html', 'manage_options', 'insert-html-snippet-manage','xyz_ihs_snippets',plugins_url('images/logo.png',XYZ_INSERT_HTML_PLUGIN_FILE));
add_submenu_page('insert-html-snippet-manage', 'HTML Snippets', 'HTML Snippets', 'manage_options', 'insert-html-snippet-manage','xyz_ihs_snippets');
add_submenu_page('insert-html-snippet-manage', 'HTML Snippets - Manage settings', 'Settings', 'manage_options', 'insert-html-snippet-settings' ,'xyz_ihs_settings');
add_submenu_page('insert-html-snippet-manage', 'HTML Snippets - About', 'About', 'manage_options', 'insert-html-snippet-about' ,'xyz_ihs_about');
add_submenu_page('insert-html-snippet-manage', 'HTML Snippets - Suggest Feature', 'Suggest a Feature', 'manage_options', 'insert-html-snippet-suggest-features' ,'xyz_ihs_suggest_feature');
}
function xyz_ihs_snippets(){
$formflag = 0;
if(isset($_GET['action']) && $_GET['action']=='snippet-delete' )
{
include(dirname( __FILE__ ) . '/snippet-delete.php');
$formflag=1;
}
if(isset($_GET['action']) && $_GET['action']=='snippet-edit' )
{
require( dirname( __FILE__ ) . '/header.php' );
include(dirname( __FILE__ ) . '/snippet-edit.php');
require( dirname( __FILE__ ) . '/footer.php' );
$formflag=1;
}
if(isset($_GET['action']) && $_GET['action']=='snippet-add' )
{
require( dirname( __FILE__ ) . '/header.php' );
require( dirname( __FILE__ ) . '/snippet-add.php' );
require( dirname( __FILE__ ) . '/footer.php' );
$formflag=1;
}
if(isset($_GET['action']) && $_GET['action']=='snippet-status' )
{
require( dirname( __FILE__ ) . '/snippet-status.php' );
$formflag=1;
}
if($formflag == 0){
require( dirname( __FILE__ ) . '/header.php' );
require( dirname( __FILE__ ) . '/snippets.php' );
require( dirname( __FILE__ ) . '/footer.php' );
}
}
function xyz_ihs_settings()
{
require( dirname( __FILE__ ) . '/header.php' );
require( dirname( __FILE__ ) . '/settings.php' );
require( dirname( __FILE__ ) . '/footer.php' );
}
function xyz_ihs_about(){
require( dirname( __FILE__ ) . '/header.php' );
require( dirname( __FILE__ ) . '/about.php' );
require( dirname( __FILE__ ) . '/footer.php' );
}
function xyz_ihs_suggest_feature(){
require( dirname( __FILE__ ) . '/header.php' );
require( dirname( __FILE__ ) . '/suggest_feature.php' );
require( dirname( __FILE__ ) . '/footer.php' );
}
function xyz_ihs_add_style_script(){
wp_enqueue_script('jquery');
wp_register_script( 'xyz_notice_script', plugins_url('js/notice.js', XYZ_INSERT_HTML_PLUGIN_FILE ));
wp_enqueue_script( 'xyz_notice_script' );
// Register stylesheets
wp_register_style('xyz_ihs_style',plugins_url('css/xyz_ihs_styles.css', XYZ_INSERT_HTML_PLUGIN_FILE ));
wp_enqueue_style('xyz_ihs_style');
}
add_action('admin_enqueue_scripts', 'xyz_ihs_add_style_script');
?>