![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/walla3t.corals.io/wp-content/plugins/apper-core/includes/ |
<?php /* * @author AcmeeDesign * @link https://acmeedesign.com * @since 1.0 */ add_filter( 'elementor/icons_manager/additional_tabs', 'elementor_simpleline_icons_tab', 999999, 1 ); function elementor_simpleline_icons_tab( $tabs = array() ) { // Append new icons $new_icons = array( 'user', 'people', 'user-female', 'user-follow', 'user-following', 'user-unfollow', 'login', 'logout', 'emotsmile', 'phone', 'call-end', 'call-in', 'call-out', 'map', 'location-pin', 'direction', 'directions', 'compass', 'layers', 'menu', 'list', 'options-vertical', 'options', 'arrow-down', 'arrow-left', 'arrow-right', 'arrow-up', 'arrow-up-circle', 'arrow-left-circle', 'arrow-right-circle', 'arrow-down-circle', 'check', 'clock', 'plus', 'minus', 'close', 'exclamation', 'organization', 'trophy', 'screen-smartphone', 'screen-desktop', 'plane', 'notebook', 'mustache', 'mouse', 'magnet', 'energy', 'disc', 'cursor', 'cursor-move', 'crop', 'chemistry', 'speedometer', 'shield', 'screen-tablet', 'magic-wand', 'hourglass', 'graduation', 'ghost', 'game-controller', 'fire', 'eyeglass', 'envelope-open', 'envelope-letter', 'bell', 'badge', 'anchor', 'wallet', 'vector', 'speech', 'puzzle', 'printer', 'present', 'playlist', 'pin', 'picture', 'handbag', 'globe-alt', 'globe', 'folder-alt', 'folder', 'film', 'feed', 'drop', 'drawer', 'docs', 'doc', 'diamond', 'cup', 'calculator', 'bubbles', 'briefcase', 'book-open', 'basket-loaded', 'basket', 'bag', 'action-undo', 'action-redo', 'wrench', 'umbrella', 'trash', 'tag', 'support', 'frame', 'size-fullscreen', 'size-actual', 'shuffle', 'share-alt', 'share', 'rocket', 'question', 'pie-chart', 'pencil', 'note', 'loop', 'home', 'grid', 'graph', 'microphone', 'music-tone-alt', 'music-tone', 'earphones-alt', 'earphones', 'equalizer', 'like', 'dislike', 'control-start', 'control-rewind', 'control-play', 'control-pause', 'control-forward', 'control-end', 'volume-1', 'volume-2', 'volume-off', 'calendar', 'bulb', 'chart', 'ban', 'bubble', 'camrecorder', 'camera', 'cloud-download', 'cloud-upload', 'envelope', 'eye', 'flag', 'heart', 'info', 'key', 'link', 'lock', 'lock-open', 'magnifier', 'magnifier-add', 'magnifier-remove', 'paper-clip', 'paper-plane', 'power', 'refresh', 'reload', 'settings', 'star', 'symbol-female', 'symbol-male', 'target', 'credit-card', 'paypal', 'social-tumblr', 'social-twitter', 'social-facebook', 'social-instagram', 'social-linkedin', 'social-pinterest', 'social-github', 'social-google', 'social-reddit', 'social-skype', 'social-dribbble', 'social-behance', 'social-foursqare', 'social-soundcloud', 'social-spotify', 'social-stumbleupon', 'social-youtube', 'social-dropbox' ); $tabs['acm-simple-line-icons'] = array( 'name' => 'simple-line-icons', 'label' => esc_html__( 'Line Icons', 'acmthemes' ), 'labelIcon' => 'fas fa-user', 'prefix' => 'icon-', 'displayPrefix' => '', 'url' => ACMBASE_CSS_DIR_URI . 'simple-line-icons.min.css', 'icons' => $new_icons, 'ver' => '1.0.0', ); return $tabs; }