| Server IP : 146.190.157.162 / Your IP : 216.73.217.6 Web Server : Apache System : Linux ubuntu-s-2vcpu-4gb-amd-sfo3-01-KIT-DIGITAL 6.5.0-44-generic #44-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 7 15:10:09 UTC 2024 x86_64 User : businessweek ( 639) PHP Version : 8.2.10-2ubuntu2.2 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_signal,pcntl_signal_dispatch,pcntl_getpriority,pcntl_setpriority,dl,putenv,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/pabloodnoder/wp-content/plugins/update-urls/lite/includes/ |
Upload File : |
<?php
/**
* The public-facing functionality of the plugin.
*
* @link https://kaizencoders.com
* @since 1.2
*
* @package Plugin_Name
* @subpackage Plugin_Name/Frontend
*/
namespace KaizenCoders\UpdateURLS;
/**
* The public-facing functionality of the plugin.
*
* Defines the plugin name, version, and two examples hooks for how to
* enqueue the dashboard-specific stylesheet and JavaScript.
*
* @package Plugin_Name
* @subpackage Plugin_Name/Frontend
* @author KaizenCoders <hello@kaizencoders.com>
*/
class Frontend {
/**
* The plugin's instance.
*
* @since 1.2
* @access private
* @var Plugin $plugin This plugin's instance.
*/
private $plugin;
/**
* Initialize the class and set its properties.
*
* @since 1.2
*
* @param Plugin $plugin This plugin's instance.
*/
public function __construct( Plugin $plugin ) {
$this->plugin = $plugin;
}
/**
* Register the stylesheets for the public-facing side of the site.
*
* @since 1.2
*/
public function enqueue_styles() {
/**
* This function is provided for demonstration purposes only.
*
* An instance of this class should be passed to the run() function
* defined in Loader as all of the hooks are defined in that particular
* class.
*
* The Loader will then create the relationship between the defined
* hooks and the functions defined in this class.
*/
}
/**
* Register the stylesheets for the public-facing side of the site.
*
* @since 1.2
*/
public function enqueue_scripts() {
/**
* This function is provided for demonstration purposes only.
*
* An instance of this class should be passed to the run() function
* defined in Loader as all of the hooks are defined in that particular
* class.
*
* The Loader will then create the relationship between the defined
* hooks and the functions defined in this class.
*/
}
}