PluginProbe
FileBird – WordPress Media Library Folders & File Manager / 6.3
FileBird – WordPress Media Library Folders & File Manager v6.3
6.5.8 6.5.7 6.5.5 6.5.4 trunk 4.3.1 5.1.6 5.3 5.3.2 5.4.3 5.4.4 5.4.5 5.5 5.5.3 5.5.5 5.5.8 5.5.8.1 5.6 5.6.1 5.6.2 5.6.3 5.6.4 6.2.3 6.2.5 6.3 All 36 releases
filebird / views / settings / header.php

header.php in FileBird – WordPress Media Library Folders & File Manager 6.3, at views/settings/header.php

49 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 $navigation = array(
4 array(
5 'label' => __( 'Activation', 'filebird' ),
6 'link' => 'activation',
7 'icon' => 'dashicons-awards',
8 ),
9 array(
10 'label' => __( 'Settings', 'filebird' ),
11 'link' => 'settings',
12 'icon' => 'dashicons-admin-generic',
13 ),
14 array(
15 'label' => __( 'Tools', 'filebird' ),
16 'link' => 'tools',
17 'icon' => 'dashicons-admin-tools',
18 ),
19 array(
20 'label' => __( 'Import/Export', 'filebird' ),
21 'link' => 'import-export',
22 'icon' => 'dashicons-database',
23 ),
24 );
25 ?>
26
27 <div id="filebird-admin-header">
28 <div id="filebird-admin-logo">
29 <img src="<?php echo esc_attr( NJFB_PLUGIN_URL . 'assets/img/logo.svg' ); ?>" alt="filebird logo" />
30 <div id="filebird-admin-version">
31 <h3 class="wp-heading-inline">
32 FileBird Lite
33 </h3>
34 <span class="divider"></span>
35 <span><?php esc_html_e( 'Version', 'filebird' ); ?> <span><?php echo esc_html( NJFB_VERSION ); ?></span></span>
36 </div>
37 </div>
38 <div id="filebird-admin-actions">
39 <a href="https://ninjateam.gitbook.io/filebird/features/interface" target="_blank" rel="noopener noreferrer">
40 <?php esc_html_e( 'Docs', 'filebird' ); ?>
41 </a>
42 <a href="https://ninjateam.org/support/" target="_blank" rel="noopener noreferrer">
43 <?php esc_html_e( 'Support', 'filebird' ); ?>
44 </a>
45 <a href="https://ninjateam.gitbook.io/filebird/other-links/changelog" target="_blank" rel="noopener noreferrer">
46 <?php esc_html_e( 'Changelog', 'filebird' ); ?>
47 </a>
48 </div>
49 </div>