Server : Apache System : Linux server.lienzindia.com 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64 User : plutus ( 1007) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/plutus/public_html/wp-content/themes/vrm/inc/forms/ |
Upload File : |
<?php namespace TotalTheme\Forms; \defined( 'ABSPATH' ) || exit; /** * Used for the select wrapper. */ class Select_Wrap { /** * Returns select wrap open element. */ public static function open() { echo '<div class="wpex-select-wrap">'; } /** * Returns the custom select arrow. */ public static function arrow() { echo '<div class="wpex-select-arrow">' . self::get_arrow_icon_html() . '</div>'; } /** * Returns arrow theme icon name. */ public static function get_arrow_ticon() { $icon = 'angle-down'; /** * Filters the select wrap arrow theme icon. * * @param string $icon */ $icon = (string) \apply_filters( 'wpex_select_wrap_arrow_ticon', $icon ); return $icon; } /** * Returns select arrow html. */ public static function get_arrow_icon_html() { $html = \wpex_get_theme_icon_html( self::get_arrow_ticon(), 'wpex-select-arrow__icon' ); /** * Filters the select wrap arrow icon html. * * @param string $html */ $html = (string) \apply_filters( 'wpex_select_wrap_arrow_html', $html ); return $html; } }