'', 'success' => 'var(--rsp-green)', 'warning' => 'var(--rsp-yellow)', 'error' => 'var(--rsp-red)', 'disabled' => 'var(--rsp-grey-400)', ); $color = $status_and_color[ $status ]; $icons = array( 'bullet' => '', 'circle' => '', 'check' => '', 'warning' => '', 'error' => '', 'times' => '', 'circle-check' => '', 'circle-times' => '', 'chevron-up' => '', 'chevron-down' => '', 'chevron-right' => '', 'chevron-left' => '', 'plus' => '', 'minus' => '', 'sync' => '', 'sync-error' => '', 'shortcode' => '', 'file' => '', 'file-disabled' => '', 'file-download' => '', 'calendar' => '', 'calendar-error' => '', 'help' => '', 'copy' => '', ); $icon_html = '
'; if ( !empty($tooltip) ) { // get help tip $icon_html = cmplz_tc_help_tip( $tooltip, $icon_html ); } if ( !empty($copy_id) && !empty($copy_text) ){ $icon_html = ' ' . $copy_text . ' ' . $icon_html . ' '; } return $icon_html; } /** * Get the html output for a help tip * * @param $str * @param $content */ function cmplz_tc_help_tip( $str, $content = false ) { $content = !$content ? cmplz_tc_icon('help') : $content; ob_start(); ?>