Submit
Path:
~
/
home
/
getwphos
/
public_html
/
dumpsterbm
/
wp-content
/
plugins
/
oshine-modules
/
admin
/
File Content:
class-oshine-modules-admin.php
<?php /** * The admin-specific functionality of the plugin. * * @link http://brandexponents.com * @since 1.0.0 * * @package Oshine_Modules * @subpackage Oshine_Modules/admin */ /** * The admin-specific functionality of the plugin. * * Defines the plugin name, version, and two examples hooks for how to * enqueue the admin-specific stylesheet and JavaScript. * * @package Oshine_Modules * @subpackage Oshine_Modules/admin * @author Brand Exponents <swami@brandexponents.com> */ class Oshine_Modules_Admin { /** * The ID of this plugin. * * @since 1.0.0 * @access private * @var string $plugin_name The ID of this plugin. */ private $plugin_name; /** * The version of this plugin. * * @since 1.0.0 * @access private * @var string $version 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, plugin_dir_url( __FILE__ ) . 'css/oshine-modules-admin.css', array(), $this->version, 'all' ); } /** * Register the JavaScript for the admin area. * * @since 1.0.0 */ public function enqueue_scripts() { // wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/oshine-modules-admin.js', array( 'jquery' ), $this->version, false ); } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
css
---
0755
js
---
0755
partials
---
0755
class-oshine-modules-admin.php
1783 bytes
0644
index.php
26 bytes
0644
N4ST4R_ID | Naxtarrr