123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409 |
- <?php
- if ( ! class_exists( 'acf_form_taxonomy' ) ) :
- class acf_form_taxonomy {
- var $view = 'add';
-
- function __construct() {
-
- add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
-
- add_action( 'create_term', array( $this, 'save_term' ), 10, 3 );
- add_action( 'edit_term', array( $this, 'save_term' ), 10, 3 );
-
- add_action( 'delete_term', array( $this, 'delete_term' ), 10, 4 );
- }
-
- function validate_page() {
-
- global $pagenow;
-
- if ( $pagenow === 'edit-tags.php' || $pagenow === 'term.php' ) {
- return true;
- }
-
- return false;
- }
-
- function admin_enqueue_scripts() {
-
- if ( ! $this->validate_page() ) {
- return;
- }
-
- $screen = get_current_screen();
- $taxonomy = $screen->taxonomy;
-
- acf_enqueue_scripts();
-
- add_action( 'admin_footer', array( $this, 'admin_footer' ), 10, 1 );
- add_action( "{$taxonomy}_add_form_fields", array( $this, 'add_term' ), 10, 1 );
- add_action( "{$taxonomy}_edit_form", array( $this, 'edit_term' ), 10, 2 );
- }
-
- function add_term( $taxonomy ) {
-
- $post_id = 'term_0';
-
- $this->view = 'add';
-
- $field_groups = acf_get_field_groups(
- array(
- 'taxonomy' => $taxonomy,
- )
- );
-
- if ( ! empty( $field_groups ) ) {
-
- acf_form_data(
- array(
- 'screen' => 'taxonomy',
- 'post_id' => $post_id,
- )
- );
-
- echo '<div id="acf-term-fields" class="acf-fields -clear">';
-
- foreach ( $field_groups as $field_group ) {
- $fields = acf_get_fields( $field_group );
- acf_render_fields( $fields, $post_id, 'div', 'field' );
- }
-
- echo '</div>';
- }
- }
-
- function edit_term( $term, $taxonomy ) {
-
- $post_id = 'term_' . $term->term_id;
-
- $this->view = 'edit';
-
- $field_groups = acf_get_field_groups(
- array(
- 'taxonomy' => $taxonomy,
- )
- );
-
- if ( ! empty( $field_groups ) ) {
- acf_form_data(
- array(
- 'screen' => 'taxonomy',
- 'post_id' => $post_id,
- )
- );
- foreach ( $field_groups as $field_group ) {
-
- if ( $field_group['style'] == 'default' ) {
- echo '<h2>' . $field_group['title'] . '</h2>';
- }
-
- echo '<table class="form-table">';
- $fields = acf_get_fields( $field_group );
- acf_render_fields( $fields, $post_id, 'tr', 'field' );
- echo '</table>';
- }
- }
- }
-
- function admin_footer() {
- ?>
- <script type="text/javascript">
- (function($) {
-
-
- var view = '<?php echo $this->view; ?>';
- var $form = $('#' + view + 'tag');
- var $submit = $('#' + view + 'tag input[type="submit"]:last');
-
-
- if( !$submit.next('.spinner').length ) {
- $submit.after('<span class="spinner"></span>');
- }
-
- <?php
-
- if ( $this->view == 'add' ) :
- ?>
-
-
- var $fields = $('#acf-term-fields');
- var html = '';
-
-
-
-
- acf.addAction('prepare', function(){
- html = $fields.html();
- }, 6);
-
-
- $submit.on('click', function( e ){
-
-
- var valid = acf.validateForm({
- form: $form,
- event: e,
- reset: true
- });
-
-
- if( !valid ) {
- e.preventDefault();
- e.stopImmediatePropagation();
- }
- });
-
-
- $(document).ajaxComplete(function(event, xhr, settings) {
-
-
- if( settings.data.indexOf('action=add-tag') == -1 ) {
- return;
- }
-
-
- if( xhr.responseText.indexOf('wp_error') !== -1 ) {
- return;
- }
-
-
- acf.doAction('remove', $fields);
-
-
- $fields.html( html );
-
-
- acf.doAction('append', $fields);
-
-
- acf.unload.reset();
- });
-
- <?php endif; ?>
-
- })(jQuery);
- </script>
- <?php
- }
-
- function save_term( $term_id, $tt_id, $taxonomy ) {
-
- $post_id = 'term_' . $term_id;
-
- if ( ! acf_verify_nonce( 'taxonomy' ) ) {
- return $term_id;
- }
-
- acf_validate_save_post( true );
-
- acf_save_post( $post_id );
- }
-
- function delete_term( $term, $tt_id, $taxonomy, $deleted_term ) {
-
- if ( acf_isset_termmeta() ) {
- return $term;
- }
-
- global $wpdb;
-
- $search = $taxonomy . '_' . $term . '_%';
- $_search = '_' . $search;
-
-
- $search = str_replace( '_', '\_', $search );
- $_search = str_replace( '_', '\_', $_search );
-
- $result = $wpdb->query(
- $wpdb->prepare(
- "DELETE FROM $wpdb->options WHERE option_name LIKE %s OR option_name LIKE %s",
- $search,
- $_search
- )
- );
- }
- }
- new acf_form_taxonomy();
- endif;
- ?>
|