芝麻web文件管理V1.00
编辑当前文件:/home4/randall/public_html/sl/wp-content/plugins/js_composer-old/include/params/default_params.php
'; } /** * Dropdown(select with options) shortcode attribute type generator. * * @param $settings * @param $value * * @return string - html string. * @since 4.4 */ function vc_dropdown_form_field( $settings, $value ) { $output = ''; $css_option = str_replace( '#', 'hash-', vc_get_dropdown_option( $settings, $value ) ); $output .= '
'; if ( is_array( $value ) ) { $value = isset( $value['value'] ) ? $value['value'] : array_shift( $value ); } if ( ! empty( $settings['value'] ) ) { foreach ( $settings['value'] as $index => $data ) { if ( is_numeric( $index ) && ( is_string( $data ) || is_numeric( $data ) ) ) { $option_label = $data; $option_value = $data; } elseif ( is_numeric( $index ) && is_array( $data ) ) { $option_label = isset( $data['label'] ) ? $data['label'] : array_pop( $data ); $option_value = isset( $data['value'] ) ? $data['value'] : array_pop( $data ); } else { $option_value = $data; $option_label = $index; } $selected = ''; $option_value_string = (string) $option_value; $value_string = (string) $value; if ( '' !== $value && $option_value_string === $value_string ) { $selected = 'selected="selected"'; } $option_class = str_replace( '#', 'hash-', $option_value ); $output .= '
' . htmlspecialchars( $option_label ) . '
'; } } $output .= '
'; return $output; } /** * Checkbox shortcode attribute type generator. * * @param $settings * @param string $value * * @return string - html string. * @since 4.4 */ function vc_checkbox_form_field( $settings, $value ) { $output = ''; if ( is_array( $value ) || is_null( $value ) ) { $value = ''; // fix #1239 } $current_value = strlen( $value ) > 0 ? explode( ',', $value ) : array(); $values = isset( $settings['value'] ) && is_array( $settings['value'] ) ? $settings['value'] : array( esc_html__( 'Yes', 'js_composer' ) => 'true' ); if ( ! empty( $values ) ) { foreach ( $values as $label => $v ) { // NOTE!! Don't use strict compare here for BC! // @codingStandardsIgnoreLine $checked = in_array( $v, $current_value ) ? 'checked' : ''; $output .= '
' . $label . '
'; } } return $output; } add_filter( 'vc_map_get_param_defaults', 'vc_checkbox_param_defaults', 10, 2 ); /** * @param $value * @param $param * @return mixed|string */ function vc_checkbox_param_defaults( $value, $param ) { if ( 'checkbox' === $param['type'] ) { $value = ''; if ( isset( $param['std'] ) ) { $value = $param['std']; } } return $value; } /** * Checkbox shortcode attribute type generator. * * @param $settings * @param $value * * @return string - html string. * @since 4.4 */ function vc_posttypes_form_field( $settings, $value ) { $output = ''; $args = array( 'public' => true, ); $post_types = get_post_types( $args ); $value = is_null( $value ) ? '' : $value; foreach ( $post_types as $post_type ) { $checked = ''; if ( 'attachment' !== $post_type ) { if ( in_array( $post_type, explode( ',', $value ), true ) ) { $checked = 'checked="checked"'; } $output .= '
' . $post_type . '
'; } } return $output; } /** * Taxonomies shortcode attribute type generator. * * @param $settings * @param $value * * @return string - html string. * @since 4.4 */ function vc_taxonomies_form_field( $settings, $value ) { $output = ''; $post_types = get_post_types( array( 'public' => false, 'name' => 'attachment', ), 'names', 'NOT' ); foreach ( $post_types as $type ) { $taxonomies = get_object_taxonomies( $type, '' ); foreach ( $taxonomies as $tax ) { $checked = ''; if ( in_array( $tax->name, explode( ',', $value ), true ) ) { $checked = 'checked'; } $output .= '
' . $tax->label . '
'; } } return $output; } /** * Exploded textarea shortcode attribute type generator. * * Data saved and coma-separated values are merged with line breaks and returned in a textarea. * * @param $settings * @param $value * * @return string - html string. * @since 4.4 */ function vc_exploded_textarea_form_field( $settings, $value ) { $value = str_replace( ',', "\n", $value ); return '
' . $value . '</textarea>'; } /** * Safe Textarea shortcode attribute type generator. * * @param $settings * @param $value * * @return string - html string. * @since 4.8.2 */ function vc_exploded_textarea_safe_form_field( $settings, $value ) { $value = vc_value_from_safe( $value, true ); if ( isset( $value ) ) { $value = str_replace( ',', "\n", $value ); } return '
' . $value . '</textarea>'; } /** * Textarea raw html shortcode attribute type generator. * * This attribute type allows safely add custom html to your post/page. * * @param $settings * @param $value * * @return string - html string. * @since 4.4 */ function vc_textarea_raw_html_form_field( $settings, $value ) { // @codingStandardsIgnoreLine return sprintf( '
%s</textarea>', $settings['param_name'], $settings['param_name'], $settings['type'], htmlentities( rawurldecode( base64_decode( $value ) ), ENT_COMPAT, 'UTF-8' ) ); } /** * Safe Textarea shortcode attribute type generator. * * @param $settings * @param $value * * @return string - html string. * @since 4.4 */ function vc_textarea_safe_form_field( $settings, $value ) { return '
' . vc_value_from_safe( $value, true ) . '</textarea>'; } /** * Textarea shortcode attribute type generator. * * @param $settings * @param $value * * @return string - html string. * @since 4.4 */ function vc_textarea_form_field( $settings, $value ) { return '
' . $value . '</textarea>'; } /** * Attach images shortcode attribute type generator. * * @param array $settings * @param string $value * @param string $tag * @param bool $single * * @return string - html string. * @since 4.4 * */ function vc_attach_images_form_field( $settings, $value, $tag, $single = false ) { $param_value = wpb_removeNotExistingImgIDs( $value ); return vc_get_template( 'params/attache_images/template.php', [ 'settings' => $settings, 'value' => $value, 'tag' => $tag, 'single' => $single, 'param_value' => $param_value, ] ); } /** * Attach image shortcode attribute type generator. * * @param $settings * @param $value * * @param $tag * * @return string - html string. * @since 4.4 */ function vc_attach_image_form_field( $settings, $value, $tag ) { return vc_attach_images_form_field( $settings, $value, $tag, true ); } /** * Widgetised sidebars shortcode attribute type generator. * * @param $settings * @param $value * * @return string - html string. * @since 4.4 */ function vc_widgetised_sidebars_form_field( $settings, $value ) { $output = ''; $sidebars = $GLOBALS['wp_registered_sidebars']; $output .= '
'; foreach ( $sidebars as $sidebar ) { $selected = ''; if ( $sidebar['id'] === $value ) { $selected = 'selected'; } $sidebar_name = $sidebar['name']; $output .= '
' . $sidebar_name . '
'; } $output .= '
'; return $output; }