| 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> |