PATH:
home
/
lab2454c
/
netxzero.com
/
wp-content
/
plugins
/
elementor
/
core
/
page-assets
/
managers
/
font-icon-svg
<?php namespace Elementor\Core\Page_Assets\Managers\Font_Icon_Svg; use Elementor\Core\Base\Base_Object; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Elementor Font Icon Svg. * * @since 3.4.0 */ abstract class Base extends Base_Object { protected static $icon; abstract protected static function get_font_name(); abstract protected static function get_config_key(); abstract protected static function get_config_version(); abstract protected static function get_config_file_path(); protected static function get_config_data() { return []; } public static function get_config( $icon ) { self::$icon = $icon; return [ 'key' => static::get_config_key(), 'version' => static::get_config_version(), 'file_path' => static::get_config_file_path(), 'data' => static::get_config_data(), ]; } }
[-] base.php
[edit]
[+]
..
[-] font-awesome.php
[edit]
[-] manager.php
[edit]