File: /home/adventp/www/wp-content/plugins/ut-core/src/front/Controller.php
<?php
/**
* The public-facing functionality of the plugin.
*
* @since 1.0.0
*
* @package UTCore
*/
namespace UTCore\front;
// If this file is called directly, abort.
if ( !defined( 'WPINC' ) ) {
die;
}
/**
* The public-facing functionality of the plugin.
*
* Defines the plugin name, version, and two examples hooks for how to
* enqueue the admin-specific stylesheet and JavaScript.
*
*/
class Controller
{
/**
* The ID of this plugin.
*
* @since 1.0.0
*
* @var string the ID of this plugin
*/
private $plugin_name;
/**
* The version of this plugin.
*
* @since 1.0.0
*
* @var string the current version of this plugin
*/
private $version;
/**
* Initialize the class and set its properties.
*
* @since 1.0.0
*
* @param string $plugin_name the name of this plugin
* @param string $version the version of this plugin
*/
public function __construct( $plugin_name, $version )
{
$this->plugin_name = $plugin_name;
$this->version = $version;
}
/**
* Register the stylesheets for the admin area.
*
* @since 1.0.0
*/
public function enqueue_styles()
{
//wp_enqueue_style( $this->plugin_name, UT_CORE_URL . 'assets/css/public.css', array(), $this->version, 'all' );
}
public function register_widgets() {
register_widget('\UTCore\front\widgets\X_Widget');
}
}