123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- <?php
- if ( ! defined( 'ABSPATH' ) ) {
- exit; // Exit if accessed directly
- }
- if ( ! class_exists( 'ACF_Admin' ) ) :
- class ACF_Admin {
- /**
- * Constructor.
- *
- * @date 23/06/12
- * @since 5.0.0
- *
- * @param void
- * @return void
- */
- function __construct() {
- // Add actions.
- add_action( 'admin_menu', array( $this, 'admin_menu' ) );
- add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
- add_action( 'admin_body_class', array( $this, 'admin_body_class' ) );
- add_action( 'current_screen', array( $this, 'current_screen' ) );
- }
- /**
- * Adds the ACF menu item.
- *
- * @date 28/09/13
- * @since 5.0.0
- *
- * @param void
- * @return void
- */
- function admin_menu() {
- // Bail early if ACF is hidden.
- if ( ! acf_get_setting( 'show_admin' ) ) {
- return;
- }
- // Vars.
- $slug = 'edit.php?post_type=acf-field-group';
- $cap = acf_get_setting( 'capability' );
- // Add menu items.
- add_menu_page( __( 'Custom Fields', 'acf' ), __( 'Custom Fields', 'acf' ), $cap, $slug, false, 'dashicons-welcome-widgets-menus', 80 );
- add_submenu_page( $slug, __( 'Field Groups', 'acf' ), __( 'Field Groups', 'acf' ), $cap, $slug );
- add_submenu_page( $slug, __( 'Add New', 'acf' ), __( 'Add New', 'acf' ), $cap, 'post-new.php?post_type=acf-field-group' );
- }
- /**
- * Enqueues global admin styling.
- *
- * @date 28/09/13
- * @since 5.0.0
- *
- * @param void
- * @return void
- */
- function admin_enqueue_scripts() {
- wp_enqueue_style( 'acf-global' );
- }
- /**
- * Appends custom admin body classes.
- *
- * @date 5/11/19
- * @since 5.8.7
- *
- * @param string $classes Space-separated list of CSS classes.
- * @return string
- */
- function admin_body_class( $classes ) {
- global $wp_version;
- // Determine body class version.
- $wp_minor_version = floatval( $wp_version );
- if ( $wp_minor_version >= 5.3 ) {
- $classes .= ' acf-admin-5-3';
- } else {
- $classes .= ' acf-admin-3-8';
- }
- // Add browser for specific CSS.
- $classes .= ' acf-browser-' . acf_get_browser();
- // Return classes.
- return $classes;
- }
- /**
- * Adds custom functionality to "ACF" admin pages.
- *
- * @date 7/4/20
- * @since 5.9.0
- *
- * @param void
- * @return void
- */
- function current_screen( $screen ) {
- // Determine if the current page being viewed is "ACF" related.
- if ( isset( $screen->post_type ) && $screen->post_type === 'acf-field-group' ) {
- add_action( 'in_admin_header', array( $this, 'in_admin_header' ) );
- add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) );
- $this->setup_help_tab();
- }
- }
- /**
- * Sets up the admin help tab.
- *
- * @date 20/4/20
- * @since 5.9.0
- *
- * @param void
- * @return void
- */
- public function setup_help_tab() {
- $screen = get_current_screen();
- // Overview tab.
- $screen->add_help_tab(
- array(
- 'id' => 'overview',
- 'title' => __( 'Overview', 'acf' ),
- 'content' =>
- '<p><strong>' . __( 'Overview', 'acf' ) . '</strong></p>' .
- '<p>' . __( 'The Advanced Custom Fields plugin provides a visual form builder to customize WordPress edit screens with extra fields, and an intuitive API to display custom field values in any theme template file.', 'acf' ) . '</p>' .
- '<p>' . sprintf(
- __( 'Before creating your first Field Group, we recommend first reading our <a href="%s" target="_blank">Getting started</a> guide to familiarize yourself with the plugin\'s philosophy and best practises.', 'acf' ),
- acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/getting-started-with-acf/', 'docs', 'help-tab' )
- ) . '</p>' .
- '<p>' . __( 'Please use the Help & Support tab to get in touch should you find yourself requiring assistance.', 'acf' ) . '</p>' .
- '',
- )
- );
- // Help tab.
- $screen->add_help_tab(
- array(
- 'id' => 'help',
- 'title' => __( 'Help & Support', 'acf' ),
- 'content' =>
- '<p><strong>' . __( 'Help & Support', 'acf' ) . '</strong></p>' .
- '<p>' . __( 'We are fanatical about support, and want you to get the best out of your website with ACF. If you run into any difficulties, there are several places you can find help:', 'acf' ) . '</p>' .
- '<ul>' .
- '<li>' . sprintf(
- __( '<a href="%s" target="_blank">Documentation</a>. Our extensive documentation contains references and guides for most situations you may encounter.', 'acf' ),
- acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/', 'docs', 'help-tab' )
- ) . '</li>' .
- '<li>' . sprintf(
- __( '<a href="%s" target="_blank">Discussions</a>. We have an active and friendly community on our Community Forums who may be able to help you figure out the ‘how-tos’ of the ACF world.', 'acf' ),
- acf_add_url_utm_tags( 'https://support.advancedcustomfields.com/', 'docs', 'help-tab' )
- ) . '</li>' .
- '<li>' . sprintf(
- __( '<a href="%s" target="_blank">Help Desk</a>. The support professionals on our Help Desk will assist with your more in depth, technical challenges.', 'acf' ),
- acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/support/', 'docs', 'help-tab' )
- ) . '</li>' .
- '</ul>',
- )
- );
- // Sidebar.
- $screen->set_help_sidebar(
- '<p><strong>' . __( 'Information', 'acf' ) . '</strong></p>' .
- '<p><span class="dashicons dashicons-admin-plugins"></span> ' . sprintf( __( 'Version %s', 'acf' ), ACF_VERSION ) . '</p>' .
- '<p><span class="dashicons dashicons-wordpress"></span> <a href="https://wordpress.org/plugins/advanced-custom-fields/" target="_blank">' . __( 'View details', 'acf' ) . '</a></p>' .
- '<p><span class="dashicons dashicons-admin-home"></span> <a href="' . acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/', 'docs', 'help-tab' ) . '" target="_blank" target="_blank">' . __( 'Visit website', 'acf' ) . '</a></p>' .
- ''
- );
- }
- /**
- * Renders the admin navigation element.
- *
- * @date 27/3/20
- * @since 5.9.0
- *
- * @param void
- * @return void
- */
- function in_admin_header() {
- acf_get_view( 'html-admin-navigation' );
- $screen = get_current_screen();
- if ( isset( $screen->base ) && 'post' === $screen->base ) {
- acf_get_view( 'html-admin-form-top' );
- }
- }
- /**
- * Modifies the admin footer text.
- *
- * @date 7/4/20
- * @since 5.9.0
- *
- * @param string $text The admin footer text.
- * @return string
- */
- function admin_footer_text( $text ) {
- // Use RegExp to append "ACF" after the <a> element allowing translations to read correctly.
- return preg_replace( '/(<a[\S\s]+?\/a>)/', '$1 ' . __( 'and', 'acf' ) . ' <a href="' . acf_add_url_utm_tags( 'https://www.advancedcustomfields.com', 'footer', 'footer' ) . '" target="_blank">ACF</a>', $text, 1 );
- }
- }
- // Instantiate.
- acf_new_instance( 'ACF_Admin' );
- endif; // class_exists check
|