HEX
Server: Apache
System:
User: ()
PHP: 7.4.33
Disabled: system,passthru,shell_exec,exec,proc_close,proc_open,proc_get_status,proc_nice,proc_terminate,highlight_file,escapeshellcmd,pclose,debugger_off,debugger_on,leak,listen,define_syslog_variables,ftp_exec,posix_uname,posix_getpwuid,get_current_user,getmyuid,getmygid,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,escapeshellarg,myshellexec,escapeshellarg,disk_free_space,disk_total_space,show_source,dl,symlink,listen,syslog,php_ini_scanned_files,inurl,apache_setenv,closelog,rar_open,bzopen,bzread,bzwrite,shellcode,show_source,apache_get_modules,apache_get_version,apache_note,openlog,crack_check,crack_closedict,pcntl_exec,ini_alter,backtick,cmd,virtual,getservbyport,myshellexec,hypot,pg_host,phpini,link,readlink,syslog,id,ftok,posix_access,error_log,sym,php_u,psockopen,apache_child_k_closedict,crack_getlastmessage,crack_opendict,php_ini,ini_restore,popen,curl_multi_exec,php_uname
Upload Files
File: /home/homework/www/kurs7/wp-content/plugins/wp-font-awesome/wp-font-awesome.php
<?php
   /*
   Plugin Name: WP Font Awesome
   Plugin URI: https://wordpress.org/plugins/wp-font-awesome/
   Description: This plugin allows the easily embed Font Awesome to your site.
   Version: 1.7.7
   Author: Zayed Baloch
   Author URI: https://www.zayedbaloch.com/
   License: GPL2
   */

defined('ABSPATH') or die("No script kiddies please!");
define( 'ZB_FAWE_VERSION',   '1.7.7' );
define( 'ZB_FAWE_URL', plugins_url( '', __FILE__ ) );
define( 'ZB_FAWE_TEXTDOMAIN',  'zb_font_awesome' );

function zb_wp_font_awesome() {
  load_plugin_textdomain( ZB_FAWE_TEXTDOMAIN );
}
add_action( 'init', 'zb_wp_font_awesome' );



function wp_font_awesome_style() {
  wp_register_style('fontawesome-css-4', ZB_FAWE_URL . '/font-awesome/css/font-awesome.min.css', array(), ZB_FAWE_VERSION);
  wp_enqueue_style('fontawesome-css-4');

  wp_register_style('fontawesome-css-5', ZB_FAWE_URL . '/font-awesome/css/fontawesome-all.min.css', array(), ZB_FAWE_VERSION);
  wp_enqueue_style('fontawesome-css-5');
  
}
add_action('wp_enqueue_scripts', 'wp_font_awesome_style');

function wp_font_awesome_style_admin() {
    // TODO: Only Load on Edit Page
    wp_enqueue_style('wp-font-awesome-script-admin', ZB_FAWE_URL.'/style.css');
}

add_action('admin_enqueue_scripts', 'wp_font_awesome_style_admin');

/*function wp_font_awesome_admin_script() {
  wp_enqueue_script( 'wp-font-awesome-script', ZB_FAWE_URL . '/script.js', array( 'jquery' ), ZB_FAWE_VERSION, true );
}
add_action( 'admin_enqueue_scripts', 'wp_font_awesome_admin_script' );*/

function wp_fa_shortcode( $atts ) {
  extract( shortcode_atts( array( 'icon' => 'home', 'size' => '', 'color' => '', 'sup' => ''), $atts ) );
  if ( $size ) { $size = ' fa-'.$size; } else{ $size = ''; }
  if ( $color ) { $color = ' style="color: '.$color ; } else{ $color = ''; }

  if ( strtolower($sup) === 'yes' ) {
    return '<sup><i class="fa fa-'.str_replace('fa-','',$icon). $size. '"'.$color .'"></i></sup>';
  } else{
    return '<i class="fa fa-'.str_replace('fa-','',$icon). $size. '"'.$color .'"></i>';
  }
}

function wp_fa5s_shortcode( $atts ) {
  extract( shortcode_atts( array( 'icon' => 'home', 'size' => '', 'color' => '', 'sup' => '' ), $atts ) );
  if ( $size ) { $size = ' fa-'.$size; }
  else{ $size = ''; }

  if ( $color ) { $color = ' style="color: '.$color ; }
  else{ $color = ''; }

  if ( strtolower($sup) === 'yes' ) {
    return '<sup><i class="fas fa-'.str_replace('fa-','',$icon). $size. '"'.$color .'"></i></sup>';
  } else{
    return '<i class="fas fa-'.str_replace('fa-','',$icon). $size. '"'.$color .'"></i>';
  }
}

function wp_fa5r_shortcode( $atts ) {
  extract( shortcode_atts( array( 'icon' => 'home', 'size' => '', 'color' => '', 'sup' => '' ), $atts ) );
  if ( $size ) { $size = ' fa-'.$size; }
  else{ $size = ''; }

  if ( $color ) { $color = ' style="color: '.$color ; }
  else{ $color = ''; }

  if ( strtolower($sup) === 'yes' ) {
    return '<sup><i class="far fa-'.str_replace('fa-','',$icon). $size. '"'.$color .'"></i></sup>';
  } else{
    return '<i class="far fa-'.str_replace('fa-','',$icon). $size. '"'.$color .'"></i>';
  }

}

function wp_fa5b_shortcode( $atts ) {
  extract( shortcode_atts( array( 'icon' => 'home', 'size' => '', 'color' => '', 'sup' => '' ), $atts ) );
  if ( $size ) { $size = ' fa-'.$size; }
  else{ $size = ''; }

  if ( $color ) { $color = ' style="color: '.$color ; }
  else{ $color = ''; }

  if ( strtolower($sup) === 'yes' ) {
    return '<sup><i class="fab fa-'.str_replace('fa-','',$icon). $size. '"'.$color .'"></i></sup>';
  } else{
    return '<i class="fab fa-'.str_replace('fa-','',$icon). $size. '"'.$color .'"></i>';
  }

}

add_shortcode( 'wpfa', 'wp_fa_shortcode' );
add_shortcode( 'wpfa5s', 'wp_fa5s_shortcode' );
add_shortcode( 'wpfa5r', 'wp_fa5r_shortcode' );
add_shortcode( 'wpfa5b', 'wp_fa5b_shortcode' );

add_filter('wp_nav_menu_items', 'do_shortcode');
add_filter('widget_text', 'do_shortcode');
add_filter('widget_title', 'do_shortcode');

function wpfa_add_shortcode_to_title( $title ){
  return do_shortcode($title);
}
add_filter( 'the_title', 'wpfa_add_shortcode_to_title' );


function wpfontawesome_register_setting_page() {
  add_options_page('WP Font Awesome', 'WP Font Awesome', 'manage_options', 'wpFontAwesome', 'wpfontawesome_setting_page');
}
add_action('admin_menu', 'wpfontawesome_register_setting_page');

function wpfontawesome_setting_page(){
?>

  <h2>WP Font Awesome &nbsp;&nbsp;<span style="font-size:50%;font-weight: normal;">Version: 1.7</span></h2>
  <p>This plugin allows you to easily embed Font Awesome icon to your site with simple shortcodes.</p>

  <h2>Shortcodes</h2>
<p>Introduced three new shortcode for Font Awesome support.</p>

<strong>Font Awesome 5</strong>
<p><code>[wpfa5s icon="home" size="3x" color"#336699"]</code> for Solid style.</p>
<p><code>[wpfa5r icon="user" color="red"]</code> for Regular style. <em>support only in few icon</em>.</p>
<p><code>[wpfa5b icon="facebook" size="5x" color="#3B5998"]</code> for Brands.</p>
<br/>
<strong>Font Awesome 4.7</strong>
<p><code>[wpfa icon="gear" color="green"]</code>.</p>

<br/>
<h2>Size</h2>
<p><code>xs</code>, <code>sm</code>, <code>lg</code>, <code>2x</code>, <code>3x</code>, <code>5x</code>, <code>7x</code>, <code>10x</code></p>

<br/><hr/>
<p><strong>Note</strong>: The <code>fa</code> prefix has been deprecated in version 5. The new default is the <code>fas</code> solid style <code>far</code> regular style and the <code>fab</code> style for brands.</p>

<em>WP Font Awesome plugin still support Font Awesome version 4</em>

<?php
}

// Add custom action links
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'wpfontawesome_zb_action_link' );

function wpfontawesome_zb_action_link( $links ) {
  $plugin_links = array(
    '<a href="' . admin_url( 'options-general.php?page=wpFontAwesome' ) . '">' . __( 'Help', ZB_FAWE_TEXTDOMAIN ) . '</a>',
  );
  return array_merge( $plugin_links, $links );
}


function wp_font_awesome_add_mce_button() {
  // check user permissions
  if ( !current_user_can( 'edit_posts' ) &&  !current_user_can( 'edit_pages' ) ) {
             return;
     }
 // check if WYSIWYG is enabled
 if ( 'true' == get_user_option( 'rich_editing' ) ) {
     add_filter( 'mce_external_plugins', 'wp_font_awesome_add_tinymce_plugin' );
     add_filter( 'mce_buttons', 'wp_font_awesome_register_mce_button' );
     }
}
add_action('admin_head', 'wp_font_awesome_add_mce_button');

// register new button in the editor
function wp_font_awesome_register_mce_button( $buttons ) {
  array_push( $buttons, 'shortcode_wp_font_awesome_insert' );
  return $buttons;
}


// declare a script for the new button
// the script will insert the shortcode on the click event
function wp_font_awesome_add_tinymce_plugin( $plugin_array ) {
  $plugin_array['shortcode_wp_font_awesome_insert'] = ZB_FAWE_URL .'/script.js';
  return $plugin_array;
}