| 12345678910111213141516171819202122232425262728293031 |
- <?php if ( ! defined( 'ABSPATH' ) ) exit;
- /**
- * Outputs the HTML of the help icon if it is set to display.
- *
- **/
- function ninja_forms_display_field_help( $field_id, $data ){
- $plugin_settings = nf_get_settings();
- if( isset( $data['show_help'] ) ){
- $show_help = $data['show_help'];
- }else{
- $show_help = 0;
- }
- if( isset( $data['help_text'] ) ){
- $help_text = $data['help_text'];
- }else{
- $help_text = '';
- }
- $help_text = htmlspecialchars( $help_text );
- if($show_help){
- ?>
- <img class='ninja-forms-help-text' src="<?php echo NINJA_FORMS_URL;?>images/question-ico.gif" title="<?php echo $help_text;?>" alt="<?php _e( 'Help Text', 'ninja-forms' ); ?>">
- <?php
- }
- }
- add_action( 'ninja_forms_display_field_help', 'ninja_forms_display_field_help', 10, 2 );
|