first commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Class WPML_TF_Backend_Options_Styles
|
||||
*
|
||||
* @author OnTheGoSystems
|
||||
*/
|
||||
class WPML_TF_Backend_Options_Styles {
|
||||
|
||||
const HANDLE = 'wpml-tf-backend-options';
|
||||
|
||||
/**
|
||||
* method enqueue
|
||||
*/
|
||||
public function enqueue() {
|
||||
$style = ICL_PLUGIN_URL . '/res/css/translation-feedback/backend-options.css';
|
||||
wp_register_style( self::HANDLE, $style, array(), ICL_SITEPRESS_VERSION );
|
||||
wp_enqueue_style( self::HANDLE );
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Class WPML_TF_Backend_Styles
|
||||
*
|
||||
* @author OnTheGoSystems
|
||||
*/
|
||||
class WPML_TF_Backend_Styles {
|
||||
|
||||
const HANDLE = 'wpml-tf-backend';
|
||||
|
||||
/**
|
||||
* method enqueue
|
||||
*/
|
||||
public function enqueue() {
|
||||
$style = ICL_PLUGIN_URL . '/res/css/translation-feedback/backend-feedback-list.css';
|
||||
wp_register_style( self::HANDLE, $style, array( 'otgs-ico' ), ICL_SITEPRESS_VERSION );
|
||||
wp_enqueue_style( self::HANDLE );
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Class WPML_TF_Frontend_Styles
|
||||
*
|
||||
* @author OnTheGoSystems
|
||||
*/
|
||||
class WPML_TF_Frontend_Styles {
|
||||
|
||||
const HANDLE = 'wpml-tf-frontend';
|
||||
|
||||
/**
|
||||
* method enqueue
|
||||
*/
|
||||
public function enqueue() {
|
||||
$style = ICL_PLUGIN_URL . '/res/css/translation-feedback/front-style.css';
|
||||
wp_register_style( self::HANDLE, $style, array( 'otgs-dialogs', 'otgs-icons' ), ICL_SITEPRESS_VERSION );
|
||||
wp_enqueue_style( self::HANDLE );
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user