update
This commit is contained in:
292
wp-content/plugins/native-emoji/native-emoji.php
Normal file
292
wp-content/plugins/native-emoji/native-emoji.php
Normal file
@@ -0,0 +1,292 @@
|
||||
<?php
|
||||
/*
|
||||
* Plugin Name: Native Emoji
|
||||
* Plugin URI: http://native-emoji.davabuu.net/
|
||||
* Description: This is not just a plugin, this is the plugin for use <cite>emoji</cite> in a native way in your <cite>posts and comments</cite>. 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 = '<a href="options-general.php?page=nep_native_emoji">' . __( 'configure your settings', 'native-emoji' ) . '</a>';
|
||||
echo '<div id="message" class="updated notice is-dismissible"><p>';
|
||||
printf(
|
||||
__( 'Thanks for installing Emoji Native Plugin, before using you must you must %1$s', 'native-emoji' ),
|
||||
$settings_link
|
||||
);
|
||||
echo '</p><button type="button" class="notice-dismiss"><span class="screen-reader-text">' . __( 'Discard this notice', 'native-emoji' ) . '</span></button></div>';
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Plugin Link Actions
|
||||
function nep_link_actions( $links ) {
|
||||
$mylinks = array(
|
||||
'<a href="options-general.php?page=nep_native_emoji">' . __( 'Settings', 'native-emoji' ) . '</a>',
|
||||
);
|
||||
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 = "<!-- TinyMCE Native Emoji Plugin -->\n";
|
||||
$inlineScript .= "<script type='text/javascript'>";
|
||||
$inlineScript .= "var nep_plugin_vars = {";
|
||||
$inlineScript .= "'nep_name':'" . __('Native Emoji', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_insert_emoji':'" . __('Insert Emoji', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_frequently_used':'" . __('Frequently Used', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_smileys_people':'" . __('Smileys & People', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_animals_nature':'" . __('Animals & Nature', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_food_drink':'" . __('Food & Drink', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_activity_sports':'" . __('Activity & Sports', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_travel_places':'" . __('Travel & Places', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_objects':'" . __('Objects', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_symbols':'" . __('Symbols', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_flags':'" . __('Flags', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_yellow':'" . __('No Skin Tone', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_pale':'" . __('Light Skin Tone', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_cream':'" . __('Medium Light Skin Tone', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_moderate_brown':'" . __('Medium Skin Tone', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_dark_brown':'" . __('Medium Dark Skin Tone', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_black':'" . __('Dark Skin Tone', 'native-emoji') . "',";
|
||||
$inlineScript .= "'nep_url':'". $plugin_url . "',";
|
||||
$inlineScript .= "'nep_close_panel':" . $close . ",";
|
||||
$inlineScript .= "'nep_close':'" . __('Close') . "',";
|
||||
$inlineScript .= "'nep_frequently_codes':[" . implode(',',$fu_emojis_codes) . "]";
|
||||
$inlineScript .= "};";
|
||||
$inlineScript .= "</script>\n";
|
||||
$inlineScript .= "<!-- TinyMCE Native Emoji Plugin -->\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" .'<a id="nep_call_panel" class="nep_' . $theme . ' nep_'. $position .'" data-emoji-panel="'. $data_settings .'" rel="nofollow noreferrer" title="' . __('Insert Emoji', 'native-emoji') . '"></a>' . "\n";
|
||||
$fake = "\t" .'<div id="nep_fake_textarea" contenteditable="true" data-emoji-receptor></div>' . "\n";
|
||||
$replace = "\n" . '<div id="nep_container">' . "\n" . $btn . $fake . "\t" . '<textarea $1 data-emoji-textarea></textarea>'. "\n" .'</div>' . "\n";
|
||||
$output = preg_replace('/<textarea\s(.*?)><\/textarea>/', $replace, $field);
|
||||
|
||||
return $output;
|
||||
}
|
||||
|
||||
// Install the plugin
|
||||
function nep_emoji_install() {
|
||||
// Required files
|
||||
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
|
||||
// Create Frecuently Used Table
|
||||
global $wpdb;
|
||||
$table = $wpdb->prefix . 'nep_native_emoji';
|
||||
$charset_collate = $wpdb->get_charset_collate();
|
||||
$sql = "CREATE TABLE $table (
|
||||
id mediumint(9) NOT NULL AUTO_INCREMENT,
|
||||
time datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
|
||||
btn_id varchar(255) NOT NULL,
|
||||
class varchar(255) NOT NULL,
|
||||
code varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
uid mediumint(9) NOT NULL,
|
||||
UNIQUE KEY id (id)
|
||||
) $charset_collate;";
|
||||
dbDelta( $sql );
|
||||
}
|
||||
|
||||
// Uninstall the plugin
|
||||
function nep_emoji_uninstall() {
|
||||
global $wpdb;
|
||||
$table = $wpdb->prefix . 'nep_native_emoji';
|
||||
// Delete Plugin Options
|
||||
delete_option( 'nep_native_emoji_active' );
|
||||
delete_option( 'nep_plugin_admin_activation' );
|
||||
delete_option( 'nep_plugin_close_panel' );
|
||||
delete_option( 'nep_plugin_comments_activation' );
|
||||
delete_option( 'nep_plugin_site_use_jquery' );
|
||||
delete_option( 'nep_plugin_show_on_mobile' );
|
||||
delete_option( 'nep_plugin_panel_color' );
|
||||
delete_option( 'nep_plugin_panel_position' );
|
||||
delete_option( 'nep_plugin_close_panel_comments' );
|
||||
// Delete Frecuently Used Table
|
||||
$wpdb->query("DROP TABLE IF EXISTS $table");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
new WP_nep_Native_Emoji();
|
||||
Reference in New Issue
Block a user