PATH:
home
/
letacommog
/
supportleta
/
wp-content
/
plugins
/
w-time-table
/
public
<?php /** * The public-facing functionality of the plugin. * * @link http://webnus.biz * @since 1.0.0 * @package time table */ /** * The public-facing functionality of the plugin. */ class Wb_Tt_Public { /** * The ID of this plugin. */ private $plugin_name; /** * The version of this plugin. */ private $version; /** * Initialize the class and set its properties. */ public function __construct( $plugin_name, $version ) { $this->plugin_name = $plugin_name; $this->version = $version; } /** * Register the stylesheets for the public-facing side of the site. * * @since 1.0.0 */ public function enqueue_styles() { wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/style.css', array(), $this->version, 'all' ); wp_enqueue_style( 'wb_font-awsome', plugin_dir_url( __FILE__ ) . 'css/font-awesome.min.css', array(), $this->version, 'all' ); } /** * Register the JavaScript for the public-facing side of the site. * * @since 1.0.0 */ public function enqueue_scripts() { wp_enqueue_script( 'wb-tt-publ', plugin_dir_url( __FILE__ ) . 'js/wb-tt.js', array( 'jquery' ), $this->version, true ); } }
[+]
..
[+]
js
[+]
content
[-] class-wb-tt-public.php
[edit]
[+]
css
[-] index.php
[edit]