| Server IP : 146.59.209.152 / Your IP : 216.73.216.46 Web Server : Apache System : Linux webm005.cluster131.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : infrafs ( 43850) PHP Version : 8.2.29 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/infrafs/www/wp-content/themes/trackstore/framework/lib/eltd.icons/ |
Upload File : |
<?php
include ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.icons/eltd.iconcollection.interface.php";
include ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.icons/eltd.fontawesome.php";
include ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.icons/eltd.fontelegant.php";
include ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.icons/eltd.ionicons.php";
include ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.icons/eltd.lineaicons.php";
include ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.icons/eltd.linearicons.php";
include ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.icons/eltd.simplelineicons.php";
include ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.icons/eltd.dripicons.php";
/*
Class: TrackStoreElatedIconCollections
A class that initializes Elated Icon Collections
*/
class TrackStoreElatedIconCollections
{
private static $instance;
public $iconCollections;
public $VCParamsArray;
public $iconPackParamName;
private function __construct() {
$this->iconPackParamName = 'icon_pack';
$this->initIconCollections();
}
public static function get_instance() {
if (null == self::$instance) {
self::$instance = new self;
}
return self::$instance;
}
/**
* Method that adds individual collections to set of collections
*/
private function initIconCollections() {
$this->addIconCollection('font_awesome', new TrackStoreElatedIconsFontAwesome("Font Awesome", "fa_icon"));
$this->addIconCollection('font_elegant', new TrackStoreElatedIconsFontElegant("Font Elegant", "fe_icon"));
$this->addIconCollection('ion_icons', new TrackStoreElatedIonIcons("Ion Icons", "ion_icon"));
$this->addIconCollection('linea_icons', new TrackStoreElatedLineaIcons('Linea Icons', 'linea_icon'));
$this->addIconCollection('linear_icons', new TrackStoreElatedLinearIcons('Linear Icons', 'linear_icon'));
$this->addIconCollection('simple_line_icons', new TrackStoreElatedSimpleLineIcons('Simple Line Icons', 'simple_line_icon'));
$this->addIconCollection('dripicons', new TrackStoreElatedDripicons('Dripicons', 'dripicon'));
}
public function getIconsMetaBoxOrOption($attributes) {
$scope = '';
$label = '';
$parent = '';
$name = '';
$defaul_icon_pack = '';
$default_icon = '';
$type = '';
$field_type = '';
extract($attributes);
$icon_hide_array = array();
$icon_show_array = array();
$icon_collections = $this->getCollectionsWithSocialIcons();
$icon_collection_params = $this->getSocialIconCollectionsParams();
if ($scope == 'regular') {
$icon_collections = $this->getCollectionsWithIcons();
$icon_collection_params = $this->getIconCollectionsParams();
}
foreach ($icon_collections as $dep_collection_key => $dep_collection_object) {
$icon_hide_array[$dep_collection_key] = '';
$icon_show_array[$dep_collection_key] = '#eltd_' . $name . '_' . $dep_collection_object->param . '_container';
foreach ($icon_collection_params as $icon_collection_param) {
if ($icon_collection_param !== $dep_collection_object->param) {
$icon_hide_array[$dep_collection_key] .= '#eltd_' . $name . '_' . $icon_collection_param . '_container,';
}
}
$icon_hide_array[$dep_collection_key] = rtrim($icon_hide_array[$dep_collection_key], ',');
}
$options = array(
'font_awesome' => esc_html__('Font Awesome', 'trackstore'),
'font_elegant' => esc_html__('Font Elegant', 'trackstore'),
'ion_icons' => esc_html__('Ion Icons', 'trackstore'),
'simple_line_icons' => esc_html__('Simple Line Icons', 'trackstore')
);
if ($scope == 'regular') {
$options = array(
'font_awesome' => esc_html__('Font Awesome', 'trackstore'),
'font_elegant' => esc_html__('Font Elegant', 'trackstore'),
'ion_icons' => esc_html__('Ion Icons', 'trackstore'),
'linea_icons' => esc_html__('Linea Icons', 'trackstore'),
'linear_icons' => esc_html__('Linear Icons', 'trackstore'),
'simple_line_icons' => esc_html__('Simple Line Icons', 'trackstore'),
'dripicons' => esc_html__('Dripicons', 'trackstore')
);
}
if ($type == 'meta-box') {
trackstore_elated_create_meta_box_field(
array(
'parent' => $parent,
'type' => 'select' . $field_type,
'name' => $name,
'default_value' => $defaul_icon_pack,
'label' => $label,
'options' => $options,
'args' => array(
'dependence' => true,
'hide' => $icon_hide_array,
'show' => $icon_show_array
)
)
);
} else if ($type == 'option') {
trackstore_elated_add_admin_field(
array(
'parent' => $parent,
'type' => 'select' . $field_type,
'name' => $name,
'default_value' => $defaul_icon_pack,
'label' => $label,
'options' => $options,
'args' => array(
'dependence' => true,
'hide' => $icon_hide_array,
'show' => $icon_show_array
)
)
);
}
foreach ($icon_collections as $collection_key => $collection_object) {
if ($scope == 'regular') {
$icons_array = $collection_object->getIconsArray();
} else {
$icons_array = $collection_object->getSocialIconsArray();
}
$icon_collections_keys = array_keys($icon_collections);
unset($icon_collections_keys[array_search($collection_key, $icon_collections_keys)]);
$eltd_icon_hide_values = $icon_collections_keys;
$eltd_icon_pack_container = trackstore_elated_add_admin_container(
array(
'parent' => $parent,
'name' => $name . '_' . $collection_object->param . '_container',
'hidden_property' => $name,
'hidden_value' => '',
'hidden_values' => $eltd_icon_hide_values,
'simple' => $field_type == 'simple' ? true : false
)
);
if ($type == 'meta-box') {
trackstore_elated_create_meta_box_field(
array(
'parent' => $eltd_icon_pack_container,
'type' => 'select' . $field_type,
'name' => $name . '_' . $collection_object->param,
'default_value' => $default_icon,
'label' => $collection_object->title,
'options' => $icons_array
)
);
} else if ($type == 'option') {
trackstore_elated_add_admin_field(
array(
'parent' => $eltd_icon_pack_container,
'type' => 'select' . $field_type,
'name' => $name . '_' . $collection_object->param,
'default_value' => $default_icon,
'label' => $collection_object->title,
'options' => $icons_array
)
);
}
}
}
public function getVCParamsArray($iconPackDependency = array(), $iconCollectionPrefix = "", $emptyIconPack = false) {
if ($emptyIconPack) {
$iconCollectionsVC = $this->getIconCollectionsVCEmpty();
} else {
$iconCollectionsVC = $this->getIconCollectionsVC();
}
$iconPackParams = array(
'type' => 'dropdown',
'heading' => esc_html__('Icon Pack', 'trackstore'),
'param_name' => $this->iconPackParamName,
'value' => $iconCollectionsVC,
'save_always' => true
);
if ($iconPackDependency !== "") {
$iconPackParams["dependency"] = $iconPackDependency;
}
$iconPackParams = array($iconPackParams);
$iconSetParams = array();
if (is_array($this->iconCollections) && count($this->iconCollections)) {
foreach ($this->iconCollections as $key => $collection) {
$iconSetParams[] = array(
'type' => 'dropdown',
'heading' => esc_html__('Icon', 'trackstore'),
'param_name' => $iconCollectionPrefix . $collection->param,
'value' => $collection->getIconsArray(),
'dependency' => array('element' => $this->iconPackParamName, 'value' => array($key)),
'save_always' => true
);
}
}
return array_merge($iconPackParams, $iconSetParams);
}
public function getSocialVCParamsArray($iconPackDependency = array(), $iconCollectionPrefix = "", $emptyIconPack = false, $exclude = '') {
if ($emptyIconPack) {
$iconCollectionsVC = $this->getIconCollectionsVCEmptyExclude($exclude);
} else {
$iconCollectionsVC = $this->getIconCollectionsVCExclude($exclude);
}
$iconPackParams = array(
'type' => 'dropdown',
'heading' => esc_html__('Icon Pack', 'trackstore'),
'param_name' => $this->iconPackParamName,
'value' => $iconCollectionsVC,
'save_always' => true
);
if ($iconPackDependency !== "") {
$iconPackParams["dependency"] = $iconPackDependency;
}
$iconPackParams = array($iconPackParams);
$iconCollections = $this->iconCollections;
if (is_array($exclude) && count($exclude)) {
foreach ($exclude as $exclude_key) {
if (array_key_exists($exclude_key, $this->iconCollections)) {
unset($iconCollections[$exclude_key]);
}
}
} else {
if (array_key_exists($exclude, $this->iconCollections)) {
unset($iconCollections[$exclude]);
}
}
$iconSetParams = array();
if (is_array($iconCollections) && count($iconCollections)) {
foreach ($iconCollections as $key => $collection) {
$iconSetParams[] = array(
'type' => 'dropdown',
'class' => '',
'heading' => esc_html__('Icon', 'trackstore'),
'param_name' => $iconCollectionPrefix . $collection->param,
'value' => $collection->getSocialIconsArrayVC(),
'dependency' => array('element' => $this->iconPackParamName, 'value' => array($key)),
'save_always' => true
);
}
}
return array_merge($iconPackParams, $iconSetParams);
}
public function getIconWidgetParamsArray() {
$iconPackParams[] = array(
'type' => 'dropdown',
'title' => esc_html__('Icon Pack', 'trackstore'),
'name' => 'icon_pack',
'options' => array(
'font_awesome' => esc_html__('Font Awesome', 'trackstore'),
'font_elegant' => esc_html__('Font Elegant', 'trackstore'),
'ion_icons' => esc_html__('Ion Icons', 'trackstore'),
'linea_icons' => esc_html__('Linea Icons', 'trackstore'),
'linear_icons' => esc_html__('Linear Icons', 'trackstore'),
'simple_line_icons' => esc_html__('Simple Line Icons', 'trackstore'),
'dripicons' => esc_html__('Dripicons', 'trackstore')
)
);
$iconSetParams = array();
if (is_array($this->iconCollections) && count($this->iconCollections)) {
foreach ($this->iconCollections as $key => $collection) {
$iconSetParams[] = array(
'type' => 'dropdown',
'title' => $collection->title . ' Icon',
'name' => $collection->param,
'options' => array_flip($collection->getIconsArray())
);
}
}
return array_merge($iconPackParams, $iconSetParams);
}
public function getSocialIconWidgetParamsArray() {
$iconCollectionsVC = $this->getCollectionsWithSocialIcons();
$iconPackParams[] = array(
'type' => 'dropdown',
'title' => esc_html__('Icon Pack', 'trackstore'),
'name' => 'icon_pack',
'options' => array(
'font_awesome' => esc_html__('Font Awesome', 'trackstore'),
'font_elegant' => esc_html__('Font Elegant', 'trackstore'),
'ion_icons' => esc_html__('Ion Icons', 'trackstore'),
'simple_line_icons' => esc_html__('Simple Line Icons', 'trackstore')
)
);
$iconSetParams = array();
if (is_array($iconCollectionsVC) && count($iconCollectionsVC)) {
foreach ($iconCollectionsVC as $key => $collection) {
$iconSetParams[] = array(
'type' => 'dropdown',
'title' => $collection->title . ' Icon',
'name' => $collection->param,
'options' => array_flip($collection->getSocialIconsArrayVC())
);
}
}
return array_merge($iconPackParams, $iconSetParams);
}
public function getCollectionsWithIcons() {
$collectionsWithIcons = array();
foreach ($this->iconCollections as $key => $collection) {
$collectionsWithIcons[$key] = $collection;
}
return $collectionsWithIcons;
}
public function getCollectionsWithSocialIcons() {
$collectionsWithSocial = array();
foreach ($this->iconCollections as $key => $collection) {
if ($collection->hasSocialIcons()) {
$collectionsWithSocial[$key] = $collection;
}
}
return $collectionsWithSocial;
}
public function getIconSizesArray() {
return array(
"Tiny" => "fa-lg",
"Small" => "fa-2x",
"Medium" => "fa-3x",
"Large" => "fa-4x",
"Very Large" => "fa-5x"
);
}
public function getIconSizeClass($iconSize) {
switch ($iconSize) {
case "fa-lg":
$iconSize = "eltd-tiny-icon";
break;
case "fa-2x":
$iconSize = "eltd-small-icon";
break;
case "fa-3x":
$iconSize = "eltd-medium-icon";
break;
case "fa-4x":
$iconSize = "eltd-large-icon";
break;
case "fa-5x":
$iconSize = "eltd-huge-icon";
break;
default:
$iconSize = "eltd-small-icon";
}
return $iconSize;
}
/**
* @param $key
*
* @return bool
*/
public function getIconCollectionParamNameByKey($key) {
$collection = $this->getIconCollection($key);
if ($collection) {
return $collection->param;
}
return false;
}
public function getShortcodeParams($iconCollectionPrefix = "") {
$iconCollectionsParam = array();
foreach ($this->iconCollections as $key => $collection) {
$iconCollectionsParam[$iconCollectionPrefix . $collection->param] = '';
}
return array_merge(array($this->iconPackParamName => '',), $iconCollectionsParam);
}
public function addIconCollection($key, $value) {
$this->iconCollections[$key] = $value;
}
public function getIconCollection($key) {
if (array_key_exists($key, $this->iconCollections)) {
return $this->iconCollections[$key];
}
return false;
}
public function getIconCollectionIcons(iTrackStoreElatedIconCollection $collection) {
return $collection->getIconsArray();
}
public function getIconCollectionsVC() {
$vc_array = array();
foreach ($this->iconCollections as $key => $collection) {
$vc_array[$collection->title] = $key;
}
return $vc_array;
}
public function getIconCollectionsVCExclude($exclude) {
$array = $this->getIconCollectionsVC();
if (is_array($exclude) && count($exclude)) {
foreach ($exclude as $key) {
if (($x = array_search($key, $array)) !== false) {
unset($array[$x]);
}
}
} else {
if (($x = array_search($exclude, $array)) !== false) {
unset($array[$x]);
}
}
return $array;
}
public function getIconCollectionsKeys() {
return array_keys($this->iconCollections);
}
/**
* Method that returns an array of 'param' attribute of each icon collection
* @return array array of param attributes
*/
public function getIconCollectionsParams() {
$paramArray = array();
if (is_array($this->iconCollections) && count($this->iconCollections)) {
foreach ($this->iconCollections as $key => $obj) {
$paramArray[] = $obj->param;
}
}
return $paramArray;
}
/**
* Method that returns an array of 'param' attribute of each icon collection with social icons
* @return array array of param attributes
*/
public function getSocialIconCollectionsParams() {
$paramArray = array();
if (is_array($this->getCollectionsWithSocialIcons()) && count($this->getCollectionsWithSocialIcons())) {
foreach ($this->getCollectionsWithSocialIcons() as $key => $obj) {
$paramArray[] = $obj->param;
}
}
return $paramArray;
}
public function getIconCollections() {
$array = array();
foreach ($this->iconCollections as $key => $collection) {
$array[$key] = $collection->title;
}
return $array;
}
public function getIconCollectionsEmpty($no_empty_key = "") {
$array = array();
$array[$no_empty_key] = "No Icon";
foreach ($this->iconCollections as $key => $collection) {
$array[$key] = $collection->title;
}
return $array;
}
public function getIconCollectionsVCEmpty() {
$vc_array = array();
$vc_array["No Icon"] = "";
foreach ($this->iconCollections as $key => $collection) {
$vc_array[$collection->title] = $key;
}
return $vc_array;
}
public function getIconCollectionsVCEmptyExclude($key) {
$array = $this->getIconCollectionsVCEmpty();
if (($x = array_search($key, $array)) !== false) {
unset($array[$x]);
}
return $array;
}
public function getIconCollectionsExclude($exclude) {
$array = $this->getIconCollections();
if (is_array($exclude) && count($exclude)) {
foreach ($exclude as $exclude_key) {
if (array_key_exists($exclude_key, $array)) {
unset($array[$exclude_key]);
}
}
} else {
if (array_key_exists($exclude, $array)) {
unset($array[$exclude]);
}
}
return $array;
}
public function hasIconCollection($key) {
return array_key_exists($key, $this->iconCollections);
}
/**
* Method that renders icon for given icon pack
*
* @param icon to render
* @param icon pack to render icon from
* @param parameters for icon
*
* @return mixed
*/
public function renderIcon($icon, $iconPack, $params = array()) {
if ($this->hasIconCollection($iconPack)) {
$iconObject = $this->getIconCollection($iconPack);
return $iconObject->render($icon, $params);
}
}
public function enqueueStyles() {
if (is_array($this->iconCollections) && count($this->iconCollections)) {
foreach ($this->iconCollections as $collection_key => $collection_obj) {
wp_enqueue_style('eltd-' . $collection_key, $collection_obj->styleUrl);
}
}
}
# HEADER AND SIDE MENU ICONS
public function getSearchIcon($iconPack, $return) {
if ($this->hasIconCollection($iconPack)) {
$iconsObject = $this->getIconCollection($iconPack);
$iconHTML = $iconsObject->getSearchIcon();
if ($return) {
return $iconHTML;
} else {
echo wp_kses_post($iconHTML);
}
}
}
public function getSearchClose($iconPack, $return) {
if ($this->hasIconCollection($iconPack)) {
$iconsObject = $this->getIconCollection($iconPack);
$iconHTML = $iconsObject->getSearchClose();
if ($return) {
return $iconHTML;
} else {
echo wp_kses_post($iconHTML);
}
}
}
public function getMenuSideIcon($iconPack) {
if ($this->hasIconCollection($iconPack)) {
$iconsObject = $this->getIconCollection($iconPack);
$iconHTML = $iconsObject->getMenuSideIcon();
echo wp_kses_post($iconHTML);
}
}
public function getBackToTopIcon($iconPack) {
if ($this->hasIconCollection($iconPack)) {
$iconsObject = $this->getIconCollection($iconPack);
$iconHTML = $iconsObject->getBackToTopIcon();
echo wp_kses_post($iconHTML);
}
}
public function getMobileMenuIcon($iconPack, $return = false) {
if ($this->hasIconCollection($iconPack)) {
$iconsObject = $this->getIconCollection($iconPack);
$iconHTML = $iconsObject->getMobileMenuIcon();
if ($return) {
return $iconHTML;
} else {
echo wp_kses_post($iconHTML);
}
}
}
public function getQuoteIcon($iconPack, $return = false) {
if ($this->hasIconCollection($iconPack)) {
$iconsObject = $this->getIconCollection($iconPack);
$iconHTML = $iconsObject->getQuoteIcon();
if ($return) {
return $iconHTML;
} else {
echo wp_kses_post($iconHTML);
}
}
}
# SOCIAL SIDEBAR ICONS
public function getFacebookIcon($iconPack) {
if ($this->hasIconCollection($iconPack)) {
$iconsObject = $this->getIconCollection($iconPack);
return $iconsObject->getFacebookIcon();
}
}
public function getTwitterIcon($iconPack) {
if ($this->hasIconCollection($iconPack)) {
$iconsObject = $this->getIconCollection($iconPack);
return $iconsObject->getTwitterIcon();
}
}
public function getGooglePlusIcon($iconPack) {
if ($this->hasIconCollection($iconPack)) {
$iconsObject = $this->getIconCollection($iconPack);
return $iconsObject->getGooglePlusIcon();
}
}
public function getLinkedInIcon($iconPack) {
if ($this->hasIconCollection($iconPack)) {
$iconsObject = $this->getIconCollection($iconPack);
return $iconsObject->getLinkedInIcon();
}
}
public function getTumblrIcon($iconPack) {
if ($this->hasIconCollection($iconPack)) {
$iconsObject = $this->getIconCollection($iconPack);
return $iconsObject->getTumblrIcon();
}
}
public function getPinterestIcon($iconPack) {
if ($this->hasIconCollection($iconPack)) {
$iconsObject = $this->getIconCollection($iconPack);
return $iconsObject->getPinterestIcon();
}
}
public function getVKIcon($iconPack) {
if ($this->hasIconCollection($iconPack)) {
$iconsObject = $this->getIconCollection($iconPack);
return $iconsObject->getVKIcon();
}
}
}
if (!function_exists('trackstore_elated_activate_theme_icons')) {
function trackstore_elated_activate_theme_icons() {
global $trackstore_elated_IconCollections;
$trackstore_elated_IconCollections = TrackStoreElatedIconCollections::get_instance();
}
add_action('after_setup_theme', 'trackstore_elated_activate_theme_icons');
}