|
| 1 | +<?php |
| 2 | +/** |
| 3 | + * This is a PHP file containing the code for the acf_field_nav_menu class. |
| 4 | + * |
| 5 | + * @package wordpress/secure-custom-fields |
| 6 | + * @since 6.5.0 |
| 7 | + */ |
| 8 | + |
| 9 | +if ( ! class_exists( 'Acf_Field_Nav_Menu' ) ) : |
| 10 | + /** |
| 11 | + * Acf Nav menu field class |
| 12 | + */ |
| 13 | + class Acf_Field_Nav_Menu extends acf_field { |
| 14 | + |
| 15 | + /** |
| 16 | + * This function will setup the field type data |
| 17 | + * |
| 18 | + * @type function |
| 19 | + * @date 5/03/2014 |
| 20 | + * @since 6.5.0 |
| 21 | + */ |
| 22 | + public function initialize() { |
| 23 | + |
| 24 | + // vars |
| 25 | + $this->name = 'nav_menu'; |
| 26 | + $this->label = _x( 'Nav Menu', 'noun', 'secure-custom-fields' ); |
| 27 | + $this->category = 'choice'; |
| 28 | + $this->description = __( 'A dropdown list with a selection of menu choices that you can chose.', 'secure-custom-fields' ); |
| 29 | + $this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-select.png'; |
| 30 | + $this->doc_url = 'https://developer.wordpress.org/secure-custom-fields/features/fields/nav_menu/'; |
| 31 | + $this->tutorial_url = 'https://developer.wordpress.org/secure-custom-fields/features/fields/select/nav_menu-tutorial/'; |
| 32 | + $this->defaults = array( |
| 33 | + 'save_format' => 'id', |
| 34 | + 'allow_null' => 0, |
| 35 | + 'container' => 'div', |
| 36 | + ); |
| 37 | + |
| 38 | + add_filter( 'acf/field_wrapper_attributes', array( $this, 'nav_menu_field_wrapper_attributes' ), 10, 2 ); |
| 39 | + } |
| 40 | + |
| 41 | + /** |
| 42 | + * Renders the Nav Menu Field options seen when editing a Nav Menu Field. |
| 43 | + * |
| 44 | + * @param array $field The array representation of the current Nav Menu Field. |
| 45 | + */ |
| 46 | + public function render_field_settings( $field ) { |
| 47 | + $allow_null = $field['allow_null']; |
| 48 | + $nav_menus = wp_get_nav_menus( $allow_null ); |
| 49 | + if ( current_theme_supports( 'menus' ) ) { |
| 50 | + if ( empty( $nav_menus ) ) { |
| 51 | + ?> |
| 52 | + <div class="acf-field"> |
| 53 | + <div class="acf-notice"> |
| 54 | + <p> |
| 55 | + <?php |
| 56 | + printf( |
| 57 | + /* translators: %s is a link to the WordPress menu creation page in the admin dashboard. */ |
| 58 | + esc_html_x( 'Warning: No menus have been created yet. Please visit %s to set up your site navigation.', 'Admin menu creation notice', 'secure-custom-fields' ), |
| 59 | + '<a href="' . esc_url( admin_url( 'nav-menus.php' ) ) . '">' . esc_html__( 'the menu settings page', 'secure-custom-fields' ) . '</a>' |
| 60 | + ); |
| 61 | + ?> |
| 62 | + </p> |
| 63 | + </div> |
| 64 | + </div> |
| 65 | + <?php |
| 66 | + } |
| 67 | + } else { |
| 68 | + ?> |
| 69 | + <div class="acf-field"> |
| 70 | + <div class="acf-notice"> |
| 71 | + <p> |
| 72 | + <?php esc_html_e( 'Warning: The theme does not support navigation menus, the field will not display.', 'secure-custom-fields' ); ?> |
| 73 | + </p> |
| 74 | + </div> |
| 75 | + </div> |
| 76 | + <?php |
| 77 | + |
| 78 | + } |
| 79 | + |
| 80 | + // Register the Return Value format setting |
| 81 | + acf_render_field_setting( |
| 82 | + $field, |
| 83 | + array( |
| 84 | + 'label' => __( 'Return Value', 'secure-custom-fields' ), |
| 85 | + 'instructions' => __( 'Specify the returned value on front end', 'secure-custom-fields' ), |
| 86 | + 'type' => 'radio', |
| 87 | + 'name' => 'save_format', |
| 88 | + 'layout' => 'horizontal', |
| 89 | + 'choices' => array( |
| 90 | + 'object' => __( 'Nav Menu Object', 'secure-custom-fields' ), |
| 91 | + 'menu' => __( 'Nav Menu HTML', 'secure-custom-fields' ), |
| 92 | + 'id' => __( 'Nav Menu ID', 'secure-custom-fields' ), |
| 93 | + ), |
| 94 | + ) |
| 95 | + ); |
| 96 | + |
| 97 | + // Register the Menu Container setting |
| 98 | + acf_render_field_setting( |
| 99 | + $field, |
| 100 | + array( |
| 101 | + 'label' => __( 'Menu Container', 'secure-custom-fields' ), |
| 102 | + 'instructions' => __( "What to wrap the Menu's ul with (when returning HTML only)", 'secure-custom-fields' ), |
| 103 | + 'type' => 'select', |
| 104 | + 'name' => 'container', |
| 105 | + 'choices' => $this->get_allowed_nav_container_tags(), |
| 106 | + ) |
| 107 | + ); |
| 108 | + |
| 109 | + // Register the Allow Null setting |
| 110 | + acf_render_field_setting( |
| 111 | + $field, |
| 112 | + array( |
| 113 | + 'label' => __( 'Allow Null?', 'secure-custom-fields' ), |
| 114 | + 'type' => 'radio', |
| 115 | + 'name' => 'allow_null', |
| 116 | + 'layout' => 'horizontal', |
| 117 | + 'choices' => array( |
| 118 | + 1 => __( 'Yes', 'secure-custom-fields' ), |
| 119 | + 0 => __( 'No', 'secure-custom-fields' ), |
| 120 | + ), |
| 121 | + ) |
| 122 | + ); |
| 123 | + } |
| 124 | + /** |
| 125 | + * Get the allowed wrapper tags for use with wp_nav_menu(). |
| 126 | + * |
| 127 | + * @return array An array of allowed wrapper tags. |
| 128 | + */ |
| 129 | + private function get_allowed_nav_container_tags() { |
| 130 | + $tags = apply_filters( 'wp_nav_menu_container_allowed_tags', array( 'div', 'nav' ) ); |
| 131 | + $formatted_tags = array( |
| 132 | + '0' => 'None', |
| 133 | + ); |
| 134 | + |
| 135 | + foreach ( $tags as $tag ) { |
| 136 | + $formatted_tags[ $tag ] = $tag; |
| 137 | + } |
| 138 | + |
| 139 | + return $formatted_tags; |
| 140 | + } |
| 141 | + /** |
| 142 | + * Renders the Nav Menu Field. |
| 143 | + * |
| 144 | + * @param array $field The array representation of the current Nav Menu Field. |
| 145 | + */ |
| 146 | + public function render_field( $field ) { |
| 147 | + $allow_null = $field['allow_null']; |
| 148 | + $nav_menus = wp_get_nav_menus( $allow_null ); |
| 149 | + if ( ! current_theme_supports( 'menus' ) || empty( $nav_menus ) ) { |
| 150 | + return; // Don't render the field |
| 151 | + } |
| 152 | + |
| 153 | + ?> |
| 154 | + <select id="<?php esc_attr( $field['id'] ); ?>" class="<?php echo esc_attr( $field['class'] ); ?>" name="<?php echo esc_attr( $field['name'] ); ?>"> |
| 155 | + <?php |
| 156 | + if ( $allow_null ) { |
| 157 | + ?> |
| 158 | + <option value=""> |
| 159 | + <?php esc_html_e( '- Select -', 'secure-custom-fields' ); ?> |
| 160 | + </option> |
| 161 | + <?php |
| 162 | + } |
| 163 | + foreach ( $nav_menus as $nav_menu_name ) { |
| 164 | + ?> |
| 165 | + <option value="<?php echo esc_attr( $nav_menu_name->term_id ); ?>" <?php selected( $field['value'], $nav_menu_name->term_id ); ?>> |
| 166 | + <?php echo esc_html( $nav_menu_name->name ); ?> |
| 167 | + </option> |
| 168 | + <?php } ?> |
| 169 | + </select> |
| 170 | + <?php |
| 171 | + } |
| 172 | + |
| 173 | + /** |
| 174 | + * Renders the Nav Menu Field. |
| 175 | + * |
| 176 | + * @param int $value The Nav Menu ID selected for this Nav Menu Field. |
| 177 | + * @param int $post_id The Post ID this $value is associated with. |
| 178 | + * @param array $field The array representation of the current Nav Menu Field. |
| 179 | + * |
| 180 | + * @return mixed The Nav Menu ID, or the Nav Menu HTML, or the Nav Menu Object, or false. |
| 181 | + */ |
| 182 | + public function format_value( $value, $post_id, $field ) { |
| 183 | + // bail early if no value |
| 184 | + if ( empty( $value ) ) { |
| 185 | + return false; |
| 186 | + } |
| 187 | + |
| 188 | + // check format |
| 189 | + if ( 'object' === $field['save_format'] ) { |
| 190 | + $wp_menu_object = wp_get_nav_menu_object( $value ); |
| 191 | + |
| 192 | + if ( empty( $wp_menu_object ) ) { |
| 193 | + return false; |
| 194 | + } |
| 195 | + |
| 196 | + $menu_object = new stdClass(); |
| 197 | + |
| 198 | + $menu_object->ID = $wp_menu_object->term_id; |
| 199 | + $menu_object->name = $wp_menu_object->name; |
| 200 | + $menu_object->slug = $wp_menu_object->slug; |
| 201 | + $menu_object->count = $wp_menu_object->count; |
| 202 | + |
| 203 | + return $menu_object; |
| 204 | + } elseif ( 'menu' === $field['save_format'] ) { |
| 205 | + ob_start(); |
| 206 | + |
| 207 | + wp_nav_menu( |
| 208 | + array( |
| 209 | + 'menu' => $value, |
| 210 | + 'container' => $field['container'], |
| 211 | + ) |
| 212 | + ); |
| 213 | + |
| 214 | + return ob_get_clean(); |
| 215 | + } |
| 216 | + |
| 217 | + // Just return the Nav Menu ID |
| 218 | + return $value; |
| 219 | + } |
| 220 | + /** |
| 221 | + * Hide Field if no support |
| 222 | + * |
| 223 | + * @param array $wrapper Wrapper array that contains all field main wrapper attributes. |
| 224 | + * @param array $field main field array will all field data. |
| 225 | + */ |
| 226 | + public function nav_menu_field_wrapper_attributes( $wrapper, $field ) { |
| 227 | + // Check if it's the nav menu field (or any other specific field type) |
| 228 | + if ( isset( $field['type'] ) && 'nav_menu' === $field['type'] ) { |
| 229 | + // Check if menus are available and the theme supports them |
| 230 | + if ( ! current_theme_supports( 'menus' ) ) { |
| 231 | + // Add inline CSS to hide the field if no menus are available |
| 232 | + $wrapper['style'] = 'display: none;'; // You can also add additional styles |
| 233 | + } |
| 234 | + } |
| 235 | + |
| 236 | + return $wrapper; |
| 237 | + } |
| 238 | + } |
| 239 | + |
| 240 | + |
| 241 | + // initialize |
| 242 | + acf_register_field_type( 'Acf_Field_Nav_Menu' ); |
| 243 | +endif; // class_exists check |
0 commit comments