Файловый менеджер - Редактировать - /home/kunzqhe/www/wp-content/themes/themify-ultra/themify/themify-icon-picker/themify-icon-picker.php
Ðазад
<?php defined( 'ABSPATH' ) || exit; if( ! class_exists( 'Themify_Icon_Font' ) ) : /** * Definition for icon font classes * * @since 1.0 */ class Themify_Icon_Font { public static $url; private static $types; protected static $usedIcons = array(); protected function __construct(){ self::$types[$this->get_id()]=$this; } public static function init(){ $dir = trailingslashit( dirname( __FILE__ ) ); include $dir.'includes/class-icon-themify.php'; include $dir .'includes/class-icon-fontawesome.php'; include $dir .'includes/class-icon-fontello.php'; do_action( 'tf_icon_picker_init' ); add_action( 'wp_ajax_tf_icon_picker_lightbox', array( __CLASS__, 'tf_icon_picker' ) ); add_action( 'wp_ajax_tf_get_icon', array( __CLASS__, 'tf_ajax_get_icon' ) ); add_action('wp_ajax_tf_icon_get_by_type',array(__CLASS__,'get_ajax_by_type')); add_action('wp_ajax_nopriv_tf_load_icons',array(__CLASS__,'load_icons')); add_action('wp_ajax_tf_load_icons',array(__CLASS__,'load_icons')); } /** * Return the ID of the icon font * * @return string */ function get_id() { return ''; } /** * Return the name of the icon font * * @return string */ function get_label() { return ''; } /** * Returns a list of icon fonts registered * * @return array */ public static function get_types() { return self::$types; } /** * Gets an icon name and checks if it's a valid icon in the font * * @param $name name of the icon * @return bool */ function is_valid_icon( $name ) { return true; } /** * Returns the formatted CSS classname for the icon * * @return string */ function get_classname( $icon ,$lazy=null,$data_only=false) { return $icon; } function get_categories(){ return array(); } /** * Load script and style required for the icon picker interface * * Must be called manually wherever you need the icon picker. */ public static function enqueue() { $url = THEMIFY_URI . '/themify-icon-picker/assets/'; wp_enqueue_script( 'tf-icon-picker', themify_enque($url . 'themify.font-icons-select.js'), array( 'jquery' ), THEMIFY_VERSION, true ); wp_localize_script( 'tf-icon-picker', 'tfIconPicker', array( 'url'=>$url, 'ajaxurl' => admin_url( 'admin-ajax.php' ), ) ); do_action( 'themify_icon_picker_enqueue' ); } public function get_icons_by_category($cat=''){ return array(); } function picker_template($cat='') { $icons = $this->get_icons_by_category($cat); $id=$this->get_id(); ?> <?php if(!empty($icons)):?> <?php foreach( $icons as $key => $v ) : ?> <div class="tf_icons_groups" id="<?php echo $id,'-',$key?>"> <?php foreach( $v as $k => $v2 ) : ?> <a href="#" data-icon="<?php echo $k; ?>"> <?php echo $this->get_classname( $k ),$v2; ?> </a> <?php endforeach; ?> </div> <?php endforeach; ?> <?php endif;?> <?php } public static function get_used_icons() { return self::$usedIcons; } /** * Render the icon picker interface * * @since 1.0 */ public static function tf_icon_picker() { $icon_fonts = self::get_types(); if ( ! empty( $icon_fonts ) ) { include trailingslashit( dirname( __FILE__ ) ) . 'views/template.php'; } die; } /** * Hooked to "tf_get_icon" Ajax call, returns the icon CSS classname for $_POST['tf_icon'] * * @since 1.0 */ public static function tf_ajax_get_icon() { if ( isset( $_GET['tf_icon'] ) ) { echo htmlspecialchars( themify_get_icon( $_GET['tf_icon'] ) ); } die; } public static function load_icons(){ if(!empty($_POST['icons'])){ $icons=json_decode(str_replace('\\','',$_POST['icons'])); $res=array(); foreach($icons as $ic){ $r=themify_get_icon(trim($ic),false,false,true); if($r){ $res[$ic]=$r; } } echo json_encode($res); } die; } public static function get_ajax_by_type(){ if(!empty($_POST['type'])){ $type = $_POST['type']; $cat = !empty($_POST['cat'])?$_POST['cat']:''; $types = self::get_types(); if(isset($types[$type])){ $types[$type]->picker_template($cat); } Themify_Enqueue_Assets::loadIcons(); } die; } protected function svg_attributes($attrs){ if(isset($attrs['aria-label'])){ $attrs['role']='img'; }else{ $attrs['aria-hidden']='true'; } return themify_get_element_attributes($attrs); } } endif; if( ! function_exists( 'themify_get_icon' ) ){ /** * Retrieve an icon name and returns the proper CSS classname to display that icon * * @return string */ function themify_get_icon( $name,$type=false,$lazy=false,$data_only=false,$attrs=array()) { $types = Themify_Icon_Font::get_types(); if($type!==false && isset($types[$type])){ return $types[$type]->get_classname( $name,$lazy,$data_only,$attrs ); } foreach( $types as $font ) { if( $font->is_valid_icon( $name ) ) { return $font->get_classname( $name,$lazy,$data_only,$attrs ); } } return false; } } add_action( 'init', array( 'Themify_Icon_Font', 'init' ) );
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка