説明なし

html-admin-tools.php 703B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * html-admin-tools
  4. *
  5. * View to output admin tools for both archive and single
  6. *
  7. * @date 20/10/17
  8. * @since 5.6.3
  9. *
  10. * @param string $screen_id The screen ID used to display metaboxes
  11. * @param string $active The active Tool
  12. * @return n/a
  13. */
  14. $class = $active ? 'single' : 'grid';
  15. ?>
  16. <div class="wrap" id="acf-admin-tools">
  17. <h1><?php _e( 'Tools', 'acf' ); ?> <?php
  18. if ( $active ) :
  19. ?>
  20. <a class="page-title-action" href="<?php echo acf_get_admin_tools_url(); ?>"><?php _e( 'Back to all tools', 'acf' ); ?></a><?php endif; ?></h1>
  21. <div class="acf-meta-box-wrap -<?php echo $class; ?>">
  22. <?php do_meta_boxes( $screen_id, 'normal', '' ); ?>
  23. </div>
  24. </div>