HEX
Server: Apache
System: Linux 65-254-81-60.cprapid.com 4.18.0-477.27.2.el8_8.x86_64 #1 SMP Fri Sep 29 08:21:01 EDT 2023 x86_64
User: roshanchandy (1003)
PHP: 8.4.12
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //home/yeshuvabible/www/wp-content/plugins/fullwidth-templates/fullwidth-page-template.php
<?php
/**
 * Plugin Name:     Fullwidth Page Templates
 * Plugin URI:      https://www.brainstormforce.com
 * Description:     Create Full width landing pages with any theme.
 * Author:          Brainstorm Force
 * Author URI:      https://www.brainstormforce.com
 * Text Domain:     fullwidth-templates
 * Domain Path:     /languages
 * Version:         1.2.0
 *
 * @package         Fullwidth_Page_Templates
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

require_once 'class-fullwidth-page-templates.php';

define( 'FPT_VER', '1.2.0' );
define( 'FPT_DIR', plugin_dir_path( __FILE__ ) );
define( 'FPT_URL', plugins_url( '/', __FILE__ ) );
define( 'FPT_PATH', plugin_basename( __FILE__ ) );

/**
 * Load the Plugin Class and translations.
 */
function init_fullwidth_template() {
    // Load localization file.
    load_plugin_textdomain( 'fullwidth-templates', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );

    // Init dynamic header footer.
    new Fullwidth_Page_Templates();
}

// Load everything on init instead of plugins_loaded.
add_action( 'init', 'init_fullwidth_template' );