File: /var/www/html/wp-content/plugins/wp-recipe-maker/wp-recipe-maker.php
<?php
/**
* The plugin bootstrap file
*
* This file is read by WordPress to generate the plugin information in the plugin
* admin area. This file also includes all of the dependencies used by the plugin,
* registers the activation and deactivation functions, and defines a function
* that starts the plugin.
*
* @link https://bootstrapped.ventures/
* @since 1.0.0
* @package WP_Recipe_Maker
*
* @wordpress-plugin
* Plugin Name: WP Recipe Maker
* Plugin URI: https://bootstrapped.ventures/wp-recipe-maker/
* Description: The easy and user-friendly recipe plugin for everyone. Automatic JSON-LD metadata for better SEO will get you more visitors!
* Version: 10.5.0
* Author: Bootstrapped Ventures
* Author URI: https://bootstrapped.ventures/
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: wp-recipe-maker
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
/**
* The code that runs during plugin activation.
* This action is documented in includes/class-wprm-activator.php
*/
function activate_wp_recipe_maker() {
require_once plugin_dir_path( __FILE__ ) . 'includes/class-wprm-activator.php';
WPRM_Activator::activate();
}
/**
* The code that runs during plugin deactivation.
* This action is documented in includes/class-wprm-deactivator.php
*/
function deactivate_wp_recipe_maker() {
require_once plugin_dir_path( __FILE__ ) . 'includes/class-wprm-deactivator.php';
WPRM_Deactivator::deactivate();
}
register_activation_hook( __FILE__, 'activate_wp_recipe_maker' );
register_deactivation_hook( __FILE__, 'deactivate_wp_recipe_maker' );
/**
* The core plugin class that is used to define internationalization,
* admin-specific hooks, and public-facing site hooks.
*/
require plugin_dir_path( __FILE__ ) . 'includes/class-wp-recipe-maker.php';
/**
* Begins execution of the plugin.
*
* Since everything within the plugin is registered via hooks,
* then kicking off the plugin from this point in the file does
* not affect the page life cycle.
*
* @since 1.0.0
*/
function run_wp_recipe_maker() {
$plugin = new WP_Recipe_Maker();
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ) , array( $plugin, 'plugin_action_links' ), 1 );
}
run_wp_recipe_maker();