55 lines
1.6 KiB
PHP
55 lines
1.6 KiB
PHP
<?php
|
|
//phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- included template file.
|
|
|
|
global $post_type, $post_type_object, $acf_page_title;
|
|
$post_new_file = sprintf(
|
|
'post-new.php?post_type=%s',
|
|
is_string( $post_type ) ? $post_type : 'acf-field-group'
|
|
);
|
|
|
|
$acf_is_options_page_preview = acf_request_arg( 'page' ) === 'acf_options_preview';
|
|
|
|
$page_title = false;
|
|
if ( isset( $acf_page_title ) ) {
|
|
$page_title = $acf_page_title;
|
|
} elseif ( is_object( $post_type_object ) ) {
|
|
$page_title = $post_type_object->labels->name;
|
|
}
|
|
if ( $page_title ) {
|
|
?>
|
|
<div class="acf-headerbar">
|
|
|
|
<h1 class="acf-page-title">
|
|
<?php
|
|
echo esc_html( $page_title );
|
|
?>
|
|
<?php if ( $acf_is_options_page_preview ) { ?>
|
|
<div class="acf-pro-label"><img src="<?php echo esc_url( acf_get_url( 'assets/images/pro-chip.svg' ) ); ?>" alt="<?php esc_attr_e( 'ACF PRO logo', 'acf' ); ?>"></div>
|
|
<?php
|
|
}
|
|
?>
|
|
</h1>
|
|
<?php if ( $acf_is_options_page_preview ) { ?>
|
|
<a href="#" class="acf-btn acf-btn-sm disabled">
|
|
<i class="acf-icon acf-icon-plus"></i>
|
|
<?php esc_html_e( 'Add Options Page', 'acf' ); ?>
|
|
</a>
|
|
<?php } ?>
|
|
<?php
|
|
if ( ! empty( $post_type_object ) && current_user_can( $post_type_object->cap->create_posts ) ) {
|
|
$class = 'acf-btn acf-btn-sm';
|
|
if ( 'acf-ui-options-page' === $post_type && acf_is_pro() && ! acf_pro_is_license_active() ) {
|
|
$class .= ' disabled';
|
|
}
|
|
|
|
printf(
|
|
'<a href="%1$s" class="%2$s"><i class="acf-icon acf-icon-plus"></i>%3$s</a>',
|
|
esc_url( admin_url( $post_new_file ) ),
|
|
esc_attr( $class ),
|
|
esc_html( $post_type_object->labels->add_new )
|
|
);
|
|
}
|
|
?>
|
|
|
|
</div>
|
|
<?php } ?>
|