| Server IP : 188.151.22.197 / Your IP : 216.73.217.74 Web Server : Apache/2.4.62 (Rocky Linux) OpenSSL/3.5.5 System : Linux wsten.se 5.14.0-687.30.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jul 27 13:09:21 UTC 2026 x86_64 User : apache ( 48) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/eric/vhost/wsten/wp-content/plugins/wsprod/ |
Upload File : |
<?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://www.wsten.se
* @since 1.0.0
* @package Wsprod
*
* @wordpress-plugin
* Plugin Name: W Production
* Plugin URI: https://www.wsten.se
* Description: Integrated production flow for Wordpress
* Version: 1.0.0
* Author: Eric Westman
* Author URI: https://www.wsten.se/
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: wsprod
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
/**
* Currently plugin version.
* Start at version 1.0.0 and use SemVer - https://semver.org
* Rename this for your plugin and update it as you release new versions.
*/
define( 'WSPROD_VERSION', '1.0.0' );
/**
* The code that runs during plugin activation.
* This action is documented in includes/class-wsprod-activator.php
*/
function activate_wsprod() {
require_once plugin_dir_path( __FILE__ ) . 'includes/class-wsprod-activator.php';
Wsprod_Activator::activate();
}
/**
* The code that runs during plugin deactivation.
* This action is documented in includes/class-wsprod-deactivator.php
*/
function deactivate_wsprod() {
require_once plugin_dir_path( __FILE__ ) . 'includes/class-wsprod-deactivator.php';
Wsprod_Deactivator::deactivate();
}
register_activation_hook( __FILE__, 'activate_wsprod' );
register_deactivation_hook( __FILE__, 'deactivate_wsprod' );
/**
* 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-wsprod.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_wsprod() {
$plugin = new Wsprod();
$plugin->run();
}
run_wsprod();