Server : LiteSpeed System : Linux webbox1.ncrdns.net 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64 User : rahcos ( 1533) PHP Version : 8.4.23 Disable Function : NONE Directory : /home/rahcos/.trash/wp-content/themes/hara/inc/vendors/elementor/icons/ |
<?php
if (! function_exists('hara_elementor_icon_control_simple_line_icons')) {
add_action('elementor/icons_manager/additional_tabs', 'hara_elementor_icon_control_simple_line_icons');
function hara_elementor_icon_control_simple_line_icons($tabs)
{
$tabs['simple-line-icons'] = [
'name' => 'simple-line-icons',
'label' => esc_html__('Simple Line Icons', 'hara'),
'prefix' => 'icon-',
'displayPrefix' => 'sim-icon',
'labelIcon' => 'fa fa-font-awesome',
'ver' => '2.4.0',
'fetchJson' => get_template_directory_uri() . '/inc/vendors/elementor/icons/json/simple-line-icons.json',
'native' => true,
];
return $tabs;
}
}
if (! function_exists('hara_elementor_icon_control_material_design_iconic')) {
add_action('elementor/icons_manager/additional_tabs', 'hara_elementor_icon_control_material_design_iconic');
function hara_elementor_icon_control_material_design_iconic($tabs)
{
$tabs['material-design-iconic'] = [
'name' => 'material-design-iconic',
'label' => esc_html__('Material Design Iconic', 'hara'),
'prefix' => 'zmdi-',
'displayPrefix' => 'zmdi',
'labelIcon' => 'fa fa-font-awesome',
'ver' => '2.2.0',
'fetchJson' => get_template_directory_uri() . '/inc/vendors/elementor/icons/json/material-design-iconic.json',
'native' => true,
];
return $tabs;
}
}
if (! function_exists('hara_elementor_icon_control_tbay_custom')) {
add_action('elementor/icons_manager/additional_tabs', 'hara_elementor_icon_control_tbay_custom');
function hara_elementor_icon_control_tbay_custom($tabs)
{
$tabs['tbay-custom'] = [
'name' => 'tbay-custom',
'label' => esc_html__('Thembay Custom', 'hara'),
'prefix' => 'tb-icon-',
'displayPrefix' => 'tb-icon',
'labelIcon' => 'fa fa-font-awesome',
'ver' => '1.0.0',
'fetchJson' => get_template_directory_uri() . '/inc/vendors/elementor/icons/json/tbay-custom.json',
'native' => true,
];
return $tabs;
}
}