PluginProbe ʕ •ᴥ•ʔ
Secure Custom Fields / trunk
Secure Custom Fields vtrunk
6.9.1 6.9.0 6.8.9 6.8.7 6.8.8 6.8.6 6.8.4 6.8.5 trunk 6.4.0-beta1 6.4.0-beta2 6.4.1 6.4.1-beta3 6.4.1-beta4 6.4.1-beta5 6.4.1-beta6 6.4.1-beta7 6.4.2 6.5.0 6.5.1 6.5.2 6.5.3 6.5.4 6.5.5 6.5.6 6.5.7 6.6.0 6.7.0 6.7.1 6.8.0 6.8.1 6.8.2 6.8.3
secure-custom-fields / includes / admin / views / tools / tools.php
secure-custom-fields / includes / admin / views / tools Last commit date
index.php 1 year ago tools.php 1 year ago
tools.php
22 lines
1 <?php
2 /**
3 * View to output admin tools for both archive and single
4 *
5 * @package wordpress/secure-custom-fields
6 */
7
8 $class = $active ? 'single' : 'grid';
9 $tool = $active ? ' tool-' . $active : '';
10 ?>
11 <div id="acf-admin-tools" class="wrap<?php echo esc_attr( $tool ); ?>">
12
13 <h1><?php esc_html_e( 'Tools', 'secure-custom-fields' ); ?> <?php
14 if ( $active ) :
15 ?>
16 <a class="page-title-action" href="<?php echo esc_url( acf_get_admin_tools_url() ); ?>"><?php esc_html_e( 'Back to all tools', 'secure-custom-fields' ); ?></a><?php endif; ?></h1>
17
18 <div class="acf-meta-box-wrap -<?php echo esc_attr( $class ); ?>">
19 <?php do_meta_boxes( $screen_id, 'normal', '' ); ?>
20 </div>
21 </div>
22