芝麻web文件管理V1.00
编辑当前文件:/home/dcqnetm/intuns/wp-content/plugins/cf7-to-zapier/includes/functions-admin.php
'; } } /** * Create a checkbox input */ if ( ! function_exists( 'ctz_checkbox_input' ) ) { function ctz_checkbox_input( $key, $value ) { echo '
'; } } /** * Create a textarea input */ if ( ! function_exists( 'ctz_textarea_input' ) ) { function ctz_textarea_input( $key, $value ) { if ( is_array( $value ) ) { $value = implode( PHP_EOL, $value ); } $value = esc_textarea( $value ); $rows = ( (int) substr_count( $value, "\n" ) ) + 2; $rows = max( $rows, 4 ); echo '
' . $value . '</textarea>'; } } /** * Create a select input */ if ( ! function_exists( 'ctz_select_input' ) ) { function ctz_select_input( $key, $value, $options ) { echo '
'; foreach ( $options as $key => $label ) { if ( is_numeric( $key ) ) { $key = $label; } echo '
' . $label . '
'; } echo '
'; } }