PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/allinonecryptonews.kerihosting.com/wp-content/plugins/templateberg/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/allinonecryptonews.kerihosting.com/wp-content/plugins/templateberg/templateberg.php |
<?php /**If this file is called directly, abort.*/ if ( ! defined( 'WPINC' ) ) { echo 'Hi there! I\'m just a plugin, not much I can do when called directly.'; exit; } /** * * @link https://www.templateberg.com/ * @since 1.0.0 * @package Templateberg * * @wordpress-plugin * Plugin Name: Templateberg - Gutenberg Templates Library * Description: Easily Import Template Kits, Templates and Blocks in WordPress Gutenberg Block Editor. * Version: 1.0.2 * Author: templateberg * Author URI: https://www.templateberg.com/ * License: GPL-2.0+ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt * Text Domain: templateberg */ /*Define Constants for this plugin*/ define( 'TEMPLATEBERG_VERSION', '1.0.2' ); define( 'TEMPLATEBERG_PLUGIN_NAME', 'templateberg' ); define( 'TEMPLATEBERG_PATH', plugin_dir_path( __FILE__ ) ); define( 'TEMPLATEBERG_URL', plugin_dir_url( __FILE__ ) ); define( 'TEMPLATEBERG_SCRIPT_PREFIX', ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min' ); /** * The code that runs during plugin activation. * This action is documented in includes/class-templateberg-activator.php */ function activate_templateberg() { require_once TEMPLATEBERG_PATH . 'includes/class-templateberg-activator.php'; Templateberg_Activator::activate(); } /** * The core plugin class that is used to define internationalization, * admin-specific hooks, and public-facing site hooks. */ require TEMPLATEBERG_PATH . 'includes/class-templateberg.php'; /** * The code that runs during plugin deactivation. * This action is documented in includes/class-templateberg-deactivator.php */ function deactivate_templateberg() { require_once TEMPLATEBERG_PATH . 'includes/class-templateberg-deactivator.php'; Templateberg_Deactivator::deactivate(); } register_activation_hook( __FILE__, 'activate_templateberg' ); register_deactivation_hook( __FILE__, 'deactivate_templateberg' ); /** * 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 */ if ( ! function_exists( 'run_templateberg' ) ) { function run_templateberg() { return Templateberg::instance(); } run_templateberg()->run(); }