emoji in a native way in your posts and comments. When activated you will see a new button in your wordpress editor or comments box, from there you will be able to include more than 2,000 emojis.
* Version: 3.0.1
* Author: Daniel Brandenburg
* Text Domain: native-emoji
* Domain Path: /languages
*/
// Define Plugin Class
class WP_nep_Native_Emoji{
// Constructor
function __construct() {
// Actions
add_action( 'admin_notices', array( $this, 'nep_activation_msg' ), 99 );
add_action( 'plugins_loaded', array( $this, 'nep_localize_plugin' ), 99 );
add_action( 'admin_init', array( $this, 'nep_resgiter_plugin_settings' ), 99 );
add_action( 'admin_enqueue_scripts', array( $this, 'nep_register_and_enqueue_admin_files' ), 99 );
add_action( 'wp_enqueue_scripts', array( $this, 'nep_register_and_enqueue_files' ), 99 );
add_action( 'admin_menu', array( $this, 'nep_add_options_page' ), 99 );
foreach ( array( 'post.php','post-new.php' ) as $hook ) {
add_action( 'admin_head-' . $hook, array( $this, 'nep_plugin_js_vars' ), 99 );
}
// Filters
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'nep_link_actions' ), 99, 1 );
add_filter( 'mce_buttons', array( $this, 'nep_tinymce_button' ), 99, 1 );
add_filter( 'mce_external_plugins', array( $this, 'nep_tinymce_plugin' ), 99, 1 );
add_filter( 'comment_form_field_comment', array( $this, 'nep_comments_template' ), 99, 1 );
// Activation and desactivation hooks
register_activation_hook( __FILE__, array( $this, 'nep_emoji_install' ) );
register_deactivation_hook( __FILE__, array( $this, 'nep_emoji_uninstall' ) );
}
// Display Activation Message
function nep_activation_msg() {
if( is_plugin_active( 'native-emoji/index.php' ) && !get_option( 'nep_native_emoji_active' ) ){
// Add plugin options
add_option( 'nep_native_emoji_active', 'true' );
// Display Message
$settings_link = '' . __( 'configure your settings', 'native-emoji' ) . '';
echo '
';
printf(
__( 'Thanks for installing Emoji Native Plugin, before using you must you must %1$s', 'native-emoji' ),
$settings_link
);
echo '
';
}
}
// Plugin Link Actions
function nep_link_actions( $links ) {
$mylinks = array(
'' . __( 'Settings', 'native-emoji' ) . '',
);
return array_merge( $links, $mylinks );
}
// Localize The Plugn
function nep_localize_plugin() {
load_plugin_textdomain( 'native-emoji', FALSE, basename( dirname( __FILE__ ) ) . '/languages/' );
}
// Register Plugin Settings
function nep_resgiter_plugin_settings() {
register_setting( 'nep_native_emoji_settings', 'nep_plugin_admin_activation' );
register_setting( 'nep_native_emoji_settings', 'nep_plugin_close_panel' );
register_setting( 'nep_native_emoji_settings', 'nep_plugin_comments_activation' );
register_setting( 'nep_native_emoji_settings', 'nep_plugin_site_use_jquery' );
register_setting( 'nep_native_emoji_settings', 'nep_plugin_show_on_mobile' );
register_setting( 'nep_native_emoji_settings', 'nep_plugin_panel_color' );
register_setting( 'nep_native_emoji_settings', 'nep_plugin_panel_position' );
register_setting( 'nep_native_emoji_settings', 'nep_plugin_close_panel_comments' );
}
// Register and enqueue admin CSS and JS files
function nep_register_and_enqueue_admin_files(){
global $pagenow;
$screen = get_current_screen();
// Register required files
wp_register_style( 'nep_native_emoji_admin', plugins_url( '/css/native_emoji_admin.css', __FILE__ ), false, '3.0.1', 'all' );
// Enqueue required files
if( $pagenow == 'post.php' && get_option( 'nep_plugin_admin_activation' ) || $pagenow == 'post-new.php' && get_option( 'nep_plugin_admin_activation' ) ){
wp_enqueue_style( 'nep_native_emoji_admin' );
wp_enqueue_script( 'jquery' );
}
if( $screen->id == 'settings_page_nep_native_emoji' ){
wp_enqueue_style( 'nep_native_emoji_admin' );
}
}
// Register and enqueue front end CSS and JS files
function nep_register_and_enqueue_files (){
if( !get_option( 'nep_plugin_comments_activation' ) )
return;
// Register required files
wp_register_style( 'nep_native_emoji', plugins_url( '/css/native_emoji.css', __FILE__ ), false, '3.0.1', 'all' );
wp_register_script( 'nep_native_emoji', plugins_url( '/js/native_emoji.js', __FILE__ ), 'jquery', '3.0.1', true );
// Get Frequently used emojis
global $wpdb;
$fu_emojis_codes = array();
$plugin_url = plugins_url( '/', __FILE__ );
$table_name = $wpdb->prefix . 'nep_native_emoji';
$uid = get_current_user_id();
$fu_emojis = $wpdb->get_results( "SELECT * FROM $table_name WHERE uid = '$uid' ORDER BY time DESC LIMIT 0,42" );
foreach($fu_emojis as $emoji){
$fu_emojis_codes[] = array( 'id' => $emoji->btn_id, 'class' => $emoji->class, 'code' => $emoji->code );
}
//Localize Script
$nep_js_var = array(
'nep_name' => __( 'Native Emoji', 'native-emoji' ),
'nep_frequently_used' => __( 'Frequently Used', 'native-emoji' ),
'nep_smileys_people' => __( 'Smileys & People', 'native-emoji' ),
'nep_animals_nature' => __( 'Animals & Nature', 'native-emoji' ),
'nep_food_drink' => __( 'Food & Drink', 'native-emoji' ),
'nep_activity_sports' => __( 'Activity & Sports', 'native-emoji' ),
'nep_travel_places' => __( 'Travel & Places', 'native-emoji' ),
'nep_objects' => __( 'Objects', 'native-emoji' ),
'nep_symbols' => __( 'Symbols', 'native-emoji' ),
'nep_flags' => __( 'Flags', 'native-emoji' ),
'nep_yellow' => __( 'No Skin Tone', 'native-emoji' ),
'nep_pale' => __( 'Light Skin Tone', 'native-emoji' ),
'nep_cream' => __( 'Medium Light Skin Tone', 'native-emoji' ),
'nep_moderate_brown' => __( 'Medium Skin Tone', 'native-emoji' ),
'nep_dark_brown' => __( 'Medium Dark Skin Tone', 'native-emoji' ),
'nep_black' => __( 'Dark Skin Tone', 'native-emoji' ),
'nep_url' => $plugin_url,
'nep_close' => __( 'Close' )
);
wp_localize_script( 'nep_native_emoji', 'nep_plugin_vars', $nep_js_var );
wp_localize_script( 'nep_native_emoji', 'nep_frequently_used', $fu_emojis_codes );
// Enqueue required files
if ( comments_open() || get_comments_number() ) {
wp_enqueue_style( 'nep_native_emoji' );
if( !get_option( 'nep_plugin_site_use_jquery' ) ){
wp_enqueue_script( 'jquery' );
}
wp_enqueue_script( 'nep_native_emoji' );
}
}
// Add Options Page
function nep_add_options_page(){
add_options_page( __( 'Native Emoji', 'native-emoji' ), __( 'Native Emoji', 'native-emoji' ), 'activate_plugins', 'nep_native_emoji', array( $this, 'nep_options_page' ) );
}
// Options Page
function nep_options_page(){
return require_once( 'options-page.php' );
}
// Localize tinymce and add vars to js plugin
function nep_plugin_js_vars() {
if( !get_option( 'nep_plugin_admin_activation' ) )
return;
// Add inline script
global $wpdb, $locale; $i= 0;
$fu_emojis_codes = array();
$plugin_url = plugins_url( '/', __FILE__ );
$table_name = $wpdb->prefix . 'nep_native_emoji';
$uid = get_current_user_id();
$fu_emojis = $wpdb->get_results( "SELECT * FROM $table_name WHERE uid = '$uid' ORDER BY time DESC LIMIT 0,42" );
$close = get_option( 'nep_plugin_close_panel' ) ? 'true' : 'false';
foreach($fu_emojis as $emoji){
$decode_emoji = html_entity_decode( $emoji->code );
$fu_emojis_codes[] = "{'id' : '$emoji->btn_id', 'class' : '$emoji->class', 'code' : '$decode_emoji' }";
}
$inlineScript = "\n";
$inlineScript .= "\n";
$inlineScript .= "\n";
echo $inlineScript;
}
// Register TinyMCE Button
function nep_tinymce_button( $buttons ) {
if( !get_option( 'nep_plugin_admin_activation' ) )
return $buttons;
array_push( $buttons, 'separator', 'nep_native_emoji' );
return $buttons;
}
// Register TinyMCE Pluglin
function nep_tinymce_plugin( $plugin_array ) {
if( !get_option('nep_plugin_admin_activation' ) )
return;
$plugin_array[ 'nep_native_emoji' ] = plugins_url( '/js/native_emoji_tinymce-plugin.js', __FILE__ );
return $plugin_array;
}
// Comments Template
function nep_comments_template( $field ) {
if( !get_option( 'nep_plugin_comments_activation' ) )
return $field;
$theme = get_option( 'nep_plugin_panel_color' );
$mobile = get_option( 'nep_plugin_show_on_mobile' ) ? 'true' : 'false';
$close = get_option( 'nep_plugin_close_panel_comments' ) ? 'true' : 'false';
$position = get_option( 'nep_plugin_panel_position' );
$data_settings = "{'theme':'". $theme ."', 'showOnMobile':" . $mobile . ", 'close':" . $close . ", 'position':'" . $position . "'}";
$btn = "\t" .'' . "\n";
$fake = "\t" .'' . "\n";
$replace = "\n" . '' . "\n" . $btn . $fake . "\t" . ''. "\n" .'
' . "\n";
$output = preg_replace('/