芝麻web文件管理V1.00
编辑当前文件:/home/felaukpo/public_html/wp-content/plugins/cartflows/admin-core/inc/flow-meta.php
$settings, ); return $settings_data; } /** * Page Header Tabs. * * @param int $flow_id id. */ public static function get_settings_fields( $flow_id ) { // Check is the current theme is FSE theme or not. $is_fse_theme = wcf_is_current_theme_is_fse_theme(); // Add the hidden class if the current theme is not FSE theme. $section_hide_class = ! $is_fse_theme ? 'wcf-hide hidden' : ''; // Check is the current flow is Store Checkout Flow. $is_store_checkout_flow = intval( \Cartflows_Helper::get_global_setting( '_cartflows_store_checkout' ) ) === intval( $flow_id ); // Determine whether to show CodeMirror editors or the legacy textarea. $show_code_editor = AdminHelper::should_show_code_editor(); $general_fields = array( 'flow_slug' => array( 'type' => 'text', 'name' => 'post_name', 'label' => __( 'Funnel Slug', 'cartflows' ), 'value' => get_post_field( 'post_name', $flow_id ), 'display_align' => 'vertical', ), 'flow_indexing' => array( 'type' => 'select', 'name' => 'wcf-flow-indexing', 'label' => __( 'Disallow Indexing', 'cartflows' ), 'tooltip' => __( 'Changing this will replace the default global setting. To go back to the global setting, just select Default.', 'cartflows' ), 'display_align' => 'vertical', 'options' => array( array( 'value' => '', 'label' => __( 'Default', 'cartflows' ), ), array( 'value' => 'disallow', 'label' => __( 'Yes', 'cartflows' ), ), array( 'value' => 'allow', 'label' => __( 'No', 'cartflows' ), ), ), 'value' => get_post_meta( $flow_id, 'wcf-flow-indexing', true ), ), ); if ( $show_code_editor ) { // Migration completed: show separate JS and CSS CodeMirror editors. $general_fields['flow_script_option'] = array( 'type' => 'code', 'label' => __( 'Funnel Custom JavaScript', 'cartflows' ), 'name' => 'wcf-flow-custom-js', 'value' => get_post_meta( $flow_id, 'wcf-flow-custom-js', true ), 'language' => 'javascript', 'tooltip' => __( 'Any JavaScript added here will run across all pages in this funnel. Do not include script tags.', 'cartflows' ), 'display_align' => 'vertical', ); $general_fields['flow_style_option'] = array( 'type' => 'code', 'label' => __( 'Funnel Custom CSS', 'cartflows' ), 'name' => 'wcf-flow-custom-css', 'value' => get_post_meta( $flow_id, 'wcf-flow-custom-css', true ), 'language' => 'css', 'tooltip' => __( 'Any CSS added here will run across all pages in this funnel. Do not include style tags.', 'cartflows' ), 'display_align' => 'vertical', ); } else { // Migration not completed: show the legacy combined textarea. $general_fields['script_option'] = array( 'type' => 'textarea', 'label' => __( 'Funnel Custom Script', 'cartflows' ), 'name' => 'wcf-flow-custom-script', 'value' => get_post_meta( $flow_id, 'wcf-flow-custom-script', true ), 'tooltip' => __( 'Any code you add here will work across all the pages in this funnel.', 'cartflows' ), 'display_align' => 'vertical', ); } $settings = array( 'instant-layout' => array( 'title' => __( 'Instant Layout ', 'cartflows' ), 'slug' => 'instant_layout', 'fields' => array( 'instant-layout-style' => array( 'type' => 'toggle', 'label' => __( 'Enable Instant Layout', 'cartflows' ), 'name' => 'instant-layout-style', 'value' => get_post_meta( $flow_id, 'instant-layout-style', true ), 'desc' => sprintf( /* translators: %1$s: Break line, %2$s: link html Start, %3$s: Link html end. */ __( 'This layout will replace the default page template for the Checkout, Upsell/Downsell and Thank You steps. You can customize %1$sthe design in the Checkout, Upsell/Downsell and Thank You step\'s settings, under the design tab. %2$sRead More.%3$s', 'cartflows' ), '
', '
', '
' ), 'is_fullwidth' => true, ), 'wcf-instant-checkout-header-logo-heading' => array( 'type' => 'heading', 'label' => __( 'Logo', 'cartflows' ), 'conditions' => array( 'relation' => 'and', 'fields' => array( array( 'name' => 'instant-layout-style', 'operator' => '===', 'value' => 'yes', ), ), ), ), 'wcf-instant-checkout-header-logo' => array( 'type' => 'image-selector', 'label' => __( 'Custom Logo', 'cartflows' ), 'name' => 'wcf-instant-checkout-header-logo', 'value' => wcf()->options->get_flow_meta_value( $flow_id, 'wcf-instant-checkout-header-logo' ), 'isNameArray' => true, 'objName' => 'wcf_instant_checkout_header_logo', 'tooltip' => __( 'If you\'ve added a custom logo, it will show up here. If not, a default logo from the theme will be used instead.', 'cartflows' ), 'conditions' => array( 'relation' => 'and', 'fields' => array( array( 'name' => 'instant-layout-style', 'operator' => '===', 'value' => 'yes', ), ), ), 'desc' => __( 'Minimum image size should be 130 x 40 in pixes for ideal display.', 'cartflows' ), 'display_align' => 'vertical', ), 'wcf-instant-checkout-header-logo-width' => array( 'type' => 'number', 'label' => __( 'Width (In px)', 'cartflows' ), 'name' => 'wcf-instant-checkout-header-logo-width', 'placeholder' => '130px', 'value' => wcf()->options->get_flow_meta_value( $flow_id, 'wcf-instant-checkout-header-logo-width' ), 'display_align' => 'vertical', 'conditions' => array( 'fields' => array( array( 'name' => 'instant-layout-style', 'operator' => '===', 'value' => 'yes', ), ), ), ), 'wcf-instant-checkout-header-logo-height' => array( 'type' => 'number', 'label' => __( 'Height (In px)', 'cartflows' ), 'name' => 'wcf-instant-checkout-header-logo-height', 'placeholder' => '40px', 'value' => wcf()->options->get_flow_meta_value( $flow_id, 'wcf-instant-checkout-header-logo-height' ), 'display_align' => 'vertical', 'conditions' => array( 'fields' => array( array( 'name' => 'instant-layout-style', 'operator' => '===', 'value' => 'yes', ), ), ), ), 'wcf-instant-checkout-header--color' => array( 'type' => 'color-picker', 'name' => 'wcf-instant-checkout-header-color', 'label' => __( 'Header Color', 'cartflows' ), 'value' => wcf()->options->get_flow_meta_value( $flow_id, 'wcf-instant-checkout-header-color' ), 'conditions' => array( 'fields' => array( array( 'name' => 'instant-layout-style', 'operator' => '===', 'value' => 'yes', ), ), ), ), ), 'priority' => 10, ), 'funnel-advanced-options' => array( 'title' => __( 'Global Styling', 'cartflows' ), 'slug' => 'funnel_advanced_options', 'fields' => array( 'gcp-enable-option' => array( 'type' => 'toggle', 'label' => __( 'Enable Global Styling', 'cartflows' ), 'name' => 'wcf-enable-gcp-styling', 'value' => get_post_meta( $flow_id, 'wcf-enable-gcp-styling', true ), 'is_fullwidth' => true, ), 'gcp-primary-color' => array( 'type' => 'color-picker', 'name' => 'wcf-gcp-primary-color', 'label' => __( 'Primary Color', 'cartflows' ), 'value' => wcf()->options->get_flow_meta_value( $flow_id, 'wcf-gcp-primary-color' ), 'conditions' => array( 'fields' => array( array( 'name' => 'wcf-enable-gcp-styling', 'operator' => '===', 'value' => 'yes', ), ), ), ), 'gcp-secondary-color' => array( 'type' => 'color-picker', 'name' => 'wcf-gcp-secondary-color', 'label' => __( 'Secondary Color', 'cartflows' ), 'value' => wcf()->options->get_flow_meta_value( $flow_id, 'wcf-gcp-secondary-color' ), 'conditions' => array( 'fields' => array( array( 'name' => 'wcf-enable-gcp-styling', 'operator' => '===', 'value' => 'yes', ), ), ), ), 'gcp-primary-text-color' => array( 'type' => 'color-picker', 'name' => 'wcf-gcp-text-color', 'label' => __( 'Text Color', 'cartflows' ), 'value' => wcf()->options->get_flow_meta_value( $flow_id, 'wcf-gcp-text-color' ), 'conditions' => array( 'fields' => array( array( 'name' => 'wcf-enable-gcp-styling', 'operator' => '===', 'value' => 'yes', ), ), ), ), 'gcp-accent-color' => array( 'type' => 'color-picker', 'name' => 'wcf-gcp-accent-color', 'label' => __( 'Heading/Accent Color', 'cartflows' ), 'value' => wcf()->options->get_flow_meta_value( $flow_id, 'wcf-gcp-accent-color' ), 'conditions' => array( 'fields' => array( array( 'name' => 'wcf-enable-gcp-styling', 'operator' => '===', 'value' => 'yes', ), ), ), ), ), 'priority' => 20, ), 'general' => array( 'title' => __( 'General ', 'cartflows' ), 'slug' => 'general', 'fields' => $general_fields, 'priority' => 30, ), ); return apply_filters( 'cartflows_admin_flow_settings', $settings, $flow_id ); } }