Файловый менеджер - Редактировать - /home/tuudkjt/globeasy/wp-includes/ID3/custom-taxonomy.tar
Назад
custom_taxonomy.php 0000777 00000045004 15251202624 0010536 0 ustar 00 <?php defined( 'ABSPATH' ) || exit(); // Display Custom Checkout Fields function ovabrw_custom_taxonomy() { $list_fields = recursive_array_replace( '\\', '', get_option( 'ovabrw_custom_taxonomy', array() ) ); if ( isset( $_POST ) && $_POST ) { $_POST = recursive_array_replace( '\\', '', $_POST ); } $action_popup = isset( $_POST['ova_action'] ) ? sanitize_text_field( $_POST['ova_action'] ) : ''; $slug = isset( $_POST['slug'] ) ? sanitize_text_field( sanitize_title ( $_POST['slug'] ) ) : ''; if ( $slug ) { $slug = str_replace( '-', '_', $slug ); } if ( $action_popup == 'new' ) { $slug = apply_filters( 'ovabrw_prefix_cus_tax', 'brw_' ) . $slug; } //Update popup (Add New and Edit) if ( ! empty( $action_popup ) ) { if ( isset( $_POST ) && array_key_exists( 'name', $_POST ) && ! empty( $_POST['name'] ) && array_key_exists( 'slug', $_POST ) && ! empty( $_POST['slug'] ) && array_key_exists( 'singular_name', $_POST ) && ! empty( $_POST['singular_name'] ) ) { $list_fields[$slug] = array( 'name' => isset( $_POST['name'] ) ? sanitize_text_field( $_POST['name'] ): '', 'singular_name' => isset( $_POST['singular_name'] ) ? sanitize_text_field( $_POST['singular_name'] ) : '', 'label_frontend' => isset( $_POST['label_frontend'] ) ? sanitize_text_field( $_POST['label_frontend'] ) : '', 'enabled' => ( isset( $_POST['enabled'] ) && $_POST['enabled'] != '' ) ? 'on' : '', 'show_listing' => ( isset( $_POST['show_listing'] ) && $_POST['show_listing'] != '' ) ? 'on' : '', ); } if ( isset( $_POST ) ) { if ( $action_popup == 'new' ) { update_option('ovabrw_custom_taxonomy', $list_fields); } elseif ( $action_popup == 'edit' ) { $old_slug = isset( $_POST['ova_old_slug'] ) ? $_POST['ova_old_slug'] : ''; if ( ! empty( $old_slug ) && array_key_exists( $old_slug, $list_fields ) && $old_slug != $slug ) { unset($list_fields[$old_slug]); } if ( ! $slug ) { unset($list_fields[$slug]); } update_option('ovabrw_custom_taxonomy', $list_fields); } } } //end popup // Update in Listing custom post type (Remove, Enable, Disable) $action_update = isset( $_POST['ovabrw_update_table'] ) ? sanitize_text_field( $_POST['ovabrw_update_table'] ) : ''; if ( $action_update === 'update_table' ) { if ( isset( $_POST['remove'] ) && $_POST['remove'] == 'remove' ) { $select_field = isset( $_POST['select_field'] ) ? $_POST['select_field'] : []; if ( is_array( $select_field ) && ! empty( $select_field ) ) { foreach ( $select_field as $field ) { if ( array_key_exists( $field, $list_fields ) ) { unset( $list_fields[$field] ); } } } } if ( isset( $_POST['enable'] ) && $_POST['enable'] == 'enable' ) { $select_field = isset( $_POST['select_field'] ) ? $_POST['select_field'] : []; if ( is_array( $select_field ) && ! empty( $select_field ) ) { foreach ( $select_field as $field ) { if ( ! empty( $field ) && array_key_exists( $field, $list_fields ) ) { $list_fields[$field]['enabled'] = 'on'; } } } } if ( isset( $_POST['disable'] ) && $_POST['disable'] == 'disable' ) { $select_field = isset( $_POST['select_field'] ) ? $_POST['select_field'] : []; if ( is_array( $select_field ) && ! empty( $select_field ) ) { foreach ( $select_field as $field ) { if ( ! empty( $field ) && array_key_exists( $field, $list_fields ) ) { $list_fields[$field]['enabled'] = ''; } } } } update_option('ovabrw_custom_taxonomy', $list_fields); } ?> <div class="wrap"> <div class="ova-list-checkout-field"> <form method="post" id="ova_update_form" action=""> <input type="hidden" name="ovabrw_update_table" value="update_table" > <table cellspacing="0" cellpadding="10px"> <thead> <th colspan="6"> <button type="button" class="button button-primary" id="ovabrw_openform"> + <?php esc_html_e( 'Add Taxonomy', 'ova-brw' ); ?> </button> <input type="submit" class="button" name="remove" value="remove" > <input type="submit" class="button" name="enable" value="enable" > <input type="submit" class="button" name="disable" value="disable" > </th> <tr> <th class="check-column"> <input type="checkbox" style="margin:0px 4px -1px -1px;" id="ovabrw_select_all_field" /> </th> <th class="slug"> <?php esc_html_e('Slug', 'ova-brw'); ?> </th> <th class="name"> <?php esc_html_e('Name', 'ova-brw'); ?> </th> <th class="singular_name"> <?php esc_html_e('Singular name', 'ova-brw'); ?> </th> <th class="label_frontend"> <?php esc_html_e('Label Frontend', 'ova-brw'); ?> </th> <th class="manage_tax"> <?php esc_html_e('Manage Taxonomy', 'ova-brw'); ?> </th> <th class="status"> <?php esc_html_e('Enabled', 'ova-brw'); ?> </th> <th class="status"> <?php esc_html_e('Show in Listing', 'ova-brw'); ?> </th> <th class="action"> <?php esc_html_e('Edit', 'ova-brw'); ?> </th> </tr> </thead> <tbody> <?php if ( ! empty( $list_fields ) ): foreach ( $list_fields as $key => $field ): $slug = $key; $name = array_key_exists( 'name', $field ) ? $field['name'] : ''; $singular_name = array_key_exists( 'singular_name', $field ) ? $field['singular_name'] : ''; $label_frontend = array_key_exists( 'label_frontend', $field ) ? $field['label_frontend'] : ''; $enabled = array_key_exists( 'enabled', $field ) ? $field['enabled'] : ''; $show_listing = array_key_exists( 'show_listing', $field ) ? $field['show_listing'] : ''; $enabled_status = $enabled ? '<span class="dashicons dashicons-yes tips" data-tip="Yes"></span>' : '-'; $show_listing_status = $show_listing ? '<span class="dashicons dashicons-yes tips" data-tip="Yes"></span>' : '-'; $class_disable = ! $enabled ? 'class="ova-disable"' : ''; $disable_button = ! $enabled ? 'disabled' : ''; $value_enabled = ( $enabled == 'on' ) ? $slug : ''; $data_edit = [ 'slug' => $slug, 'name' => $name, 'singular_name' => $singular_name, 'label_frontend' => $label_frontend, 'show_listing' => $show_listing, 'enabled' => $enabled ]; $data_edit = json_encode( $data_edit ); ?> <tr <?php echo $class_disable; ?>> <input type="hidden" name="remove_field[]" value=""> <input type="hidden" name="enable_field[]" value="<?php echo esc_attr( $value_enabled ); ?>"> <td class="ova-checkbox"> <input type="checkbox" name="select_field[]" value="<?php echo esc_attr( $slug ); ?>" /> </td> <td class="ova-slug"> <?php echo esc_html( $slug ); ?> </td> <td class="ova-name"> <?php echo esc_html( $name ); ?> </td> <td class="ova-singular_name"> <?php echo esc_html( $singular_name ); ?> </td> <td class="ova-label-frontend"> <?php echo esc_html( $label_frontend ); ?> </td> <td> <?php $terms = get_terms( array( 'taxonomy' => $slug,//i guess campaign_action is your taxonomy 'hide_empty' => false )); ?> <a href="<?php echo admin_url('edit-tags.php?post_type=product&taxonomy='.$slug); ?>" title="<?php esc_html_e( 'Manage Taxonomy: Add/Update value of taxonomy', 'ova-brw' ); ?>"> <i class="dashicons dashicons-category"></i> (<?php echo !is_wp_error( $terms ) ? count( $terms ): 0; ?>) </a> </td> <td class="ova-enable status"> <?php echo $enabled_status; ?> </td> <td class="ova-show-listing status"> <?php echo $show_listing_status; ?> </td> <td class="ova-edit edit"> <button type="button" <?php echo esc_attr( $disable_button ) ?> class="button ova-button ovabrw_edit_field_form" data-data_edit="<?php echo esc_attr( $data_edit ) ?>"> <?php esc_html_e( 'Edit', 'ova-brw' ); ?> </button> </td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody> </table> </form> </div> <div class="ova-wrap-popup-ckf"> <div id="ova_new_field_form" class="ova-popup-wrapper"> <a href="javascript:void(0)" class="close_popup" id="ovabrw_close_popup" >X</a> <?php ova_output_popup_custom_tax_form( 'new', $list_fields ); ?> </div> </div> </div> <?php } function ova_output_popup_custom_tax_form( $form_type = '', $list_fields = [] ) { ?> <form method="post" id="ova_popup_field_form" action=""> <input type="hidden" name="ova_action" value="<?php echo esc_attr( $form_type ); ?>" /> <input type="hidden" name="ova_old_name" value="" /> <input type="hidden" name="ova_old_slug" value="" /> <table width="100%"> <tr> <td colspan="2" class="err_msgs"></td> </tr> <tr class="ova-row-slug"> <td class="label"> <?php esc_html_e( 'Slug', 'ova-brw' ); ?> </td> <td> <input type="text" name="slug" value="" placeholder="<?php esc_html_e( 'taxonomy_1', 'ova-brw' ); ?> "> <br> <span> <?php esc_html_e( 'Taxonomy key, must not exceed 32 characters', 'ova-brw' ); ?> </span> </td> </tr> <tr class="ova-row-name"> <td class="label"> <?php esc_html_e( 'Name', 'ova-brw' ) ?> </td> <td> <input type="text" name="name" value="" placeholder="<?php esc_html_e( 'Taxonomys 1', 'ova-brw' ); ?> "> </td> </tr> <tr class="ova-row-sigular-name"> <td class="label"> <?php esc_html_e( 'Singular name', 'ova-brw' ) ?> </td> <td> <input type="text" name="singular_name" value="" placeholder="<?php esc_html_e( 'Taxonomy 1', 'ova-brw' ); ?> "> </td> </tr> <tr class="ova-row-label-frontend"> <td class="label"> <?php esc_html_e( 'Label frontend', 'ova-brw' ) ?> </td> <td> <input type="text" name="label_frontend" value="" placeholder="<?php esc_html_e( 'Label', 'ova-brw' ); ?> "> </td> </tr> <tr class="row-required"> <td> </td> <td class="check-box"> <input id="ova_enable" type="checkbox" name="enabled" checked="checked" value="on"> <label for="ova_enable"> <?php esc_html_e( 'Enable', 'ova-brw' ) ?> </label> <br/> </td> <td class="label"></td> </tr> <tr class="row-show-listing"> <td> </td> <td class="check-box"> <input id="show_listing" type="checkbox" name="show_listing" checked="checked" value="on"> <label> <?php esc_html_e( 'Show in Listing', 'ova-brw' ); ?> </label> <br/> </td> <td class="label"></td> </tr> </table> <button type='submit' class="button button-primary"> <?php esc_html_e( 'save', 'ova-brw' ) ?> </button> </form> <?php } // Custom metabox with cmb2 add_action( 'cmb2_init', 'ovabrw_custom_metaboxs_cmb2' ); function ovabrw_custom_metaboxs_cmb2() { $prefix = 'ovabrw_'; /* Tour Plan Settings ***************************************************************************/ /* ************************************************************************************/ $cmb2_settings = new_cmb2_box( array( 'id' => 'ovabrw_custom_metaboxs_cmb2_settings', 'title' => esc_html__( 'Included/Excluded & Tour Plan', 'ova-brw' ), 'object_types' => array( 'product'), // Post type 'context' => 'normal', 'priority' => 'high', 'closed' => false, 'show_names' => true, ) ); // Included $group_tour_included = $cmb2_settings->add_field( array( 'id' => $prefix . 'group_tour_included', 'type' => 'group', 'options' => array( 'group_title' => esc_html__( 'Tour Included', 'ova-brw' ), 'add_button' => esc_html__( 'Add Tour Included', 'ova-brw' ), 'remove_button' => esc_html__( 'Remove', 'ova-brw' ), 'sortable' => true, ), ) ); $cmb2_settings->add_group_field( $group_tour_included, array( 'name' => esc_html__( 'Text', 'ova-brw' ), 'id' => $prefix . 'tour_included_text', 'type' => 'text', ) ); // Excluded $group_tour_excluded = $cmb2_settings->add_field( array( 'id' => $prefix . 'group_tour_excluded', 'type' => 'group', 'options' => array( 'group_title' => esc_html__( 'Tour Excluded', 'ova-brw' ), 'add_button' => esc_html__( 'Add Tour Excluded', 'ova-brw' ), 'remove_button' => esc_html__( 'Remove', 'ova-brw' ), 'sortable' => true, ), ) ); $cmb2_settings->add_group_field( $group_tour_excluded, array( 'name' => esc_html__( 'Text', 'ova-brw' ), 'id' => $prefix . 'tour_excluded_text', 'type' => 'text', ) ); // Tour Plan $group_tour_plan = $cmb2_settings->add_field( array( 'id' => $prefix . 'group_tour_plan', 'type' => 'group', 'options' => array( 'group_title' => esc_html__( 'Tour Plan', 'ova-brw' ), 'add_button' => esc_html__( 'Add Tour Plan', 'ova-brw' ), 'remove_button' => esc_html__( 'Remove', 'ova-brw' ), 'sortable' => true, ), ) ); $cmb2_settings->add_group_field( $group_tour_plan, array( 'name' => esc_html__( 'Day', 'ova-brw' ), 'id' => $prefix . 'tour_plan_day', 'type' => 'text', ) ); $cmb2_settings->add_group_field( $group_tour_plan, array( 'name' => esc_html__( 'Label', 'ova-brw' ), 'id' => $prefix . 'tour_plan_label', 'type' => 'text', ) ); $cmb2_settings->add_group_field( $group_tour_plan, array( 'name' => esc_html__( 'Description', 'ova-brw' ), 'id' => $prefix . 'tour_plan_desc', 'type' => 'wysiwyg', 'options' => array( 'textarea_rows' => 5, ), ) ); }
| ver. 1.6 |
Github
|
.
| PHP 8.1.34 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка