| 1 |
<?php |
| 2 |
|
| 3 |
class thumbnail_editor_scripts { |
| 4 |
|
| 5 |
public function __construct() { |
| 6 |
add_action( 'admin_enqueue_scripts', array( $this, 'additional_scripts_admin' ) ); |
| 7 |
add_action( 'wp_enqueue_scripts', array( $this, 'additional_scripts' ) ); |
| 8 |
} |
| 9 |
|
| 10 |
public function additional_scripts_admin(){ |
| 11 |
wp_enqueue_script( 'jquery.Jcrop', plugins_url( THE_PLUGIN_DIR . '/js/jquery.Jcrop.js' ) ); |
| 12 |
wp_enqueue_script( 'jquery.cr', plugins_url( THE_PLUGIN_DIR . '/js/jquery.cr.js' ) ); |
| 13 |
wp_enqueue_script( 'jquery-ui-resizable' ); |
| 14 |
wp_enqueue_script( 'jquery-ui-tooltip' ); |
| 15 |
wp_enqueue_style( 'jquery.Jcrop', plugins_url( THE_PLUGIN_DIR . '/css/jquery.Jcrop.css' ) ); |
| 16 |
wp_enqueue_style( 'jquery-ui', plugins_url( THE_PLUGIN_DIR . '/css/jquery-ui.css' ) ); |
| 17 |
wp_enqueue_style( 'th-editor-admin', plugins_url( THE_PLUGIN_DIR . '/css/editor.css' ) ); |
| 18 |
} |
| 19 |
|
| 20 |
public function additional_scripts(){ |
| 21 |
wp_enqueue_style( 'th-editor-front', plugins_url( THE_PLUGIN_DIR . '/css/editor-front.css' ) ); |
| 22 |
} |
| 23 |
|
| 24 |
} |