PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 2.4.0
Forumax – AI Powered Advanced Community Forum Plugin v2.4.0
2.4.4 2.4.3 2.4.2 2.4.1 2.4.0 trunk 1.0.8 1.1.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 2.0.0 2.1.0 All 29 releases
bbp-core / includes / admin / menu / admin_ui / header.php

header.php in Forumax – AI Powered Advanced Community Forum Plugin 2.4.0, at includes/admin/menu/admin_ui/header.php

71 lines 3.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <header class="easydocs-header-area">
2 <div class="container-fluid">
3 <div class="row alignment-center justify-content-between">
4 <div class="navbar-left d-flex alignment-center">
5 <div class="easydocs-logo-area">
6 <a href="javascript:void(0);">
7 <?php esc_html_e( 'Forums', 'forumax' ); ?>
8 </a>
9 </div>
10 <a href="javascript:void(0)" type="button" id="bbpc-forum" class="easydocs-btn easydocs-btn-outline-blue easydocs-btn-sm easydocs-btn-round">
11 <span class="dashicons dashicons-plus-alt2"></span>
12 <?php esc_html_e( 'Add Forum', 'forumax' ); ?>
13 </a>
14 </div>
15 <form action="#" method="POST" class="easydocs-search-form">
16 <div class="search-icon">
17 <span class="dashicons dashicons-search"></span>
18 </div>
19 <input type="search" name="keyword" class="form-control" id="bbpc-search" placeholder="<?php esc_attr_e( 'Search on ...', 'forumax' ); ?>" onkeyup="fetch()"/>
20 </form>
21 <div class="navbar-right">
22 <ul class="d-flex justify-content-end bbpc-right-nav">
23 <li class="easydocs-settings">
24 <div class="header-notify-icon bbpc-settings-icon">
25 <a href="<?php echo esc_url( admin_url( 'admin.php?page=forumax-settings' ) ); ?>">
26 <img src="<?php echo esc_url( FORUMAX_IMG . 'admin/admin-settings.svg' ); ?>" alt="<?php esc_attr_e( 'Settings Icon', 'forumax' ); ?>">
27 </a>
28 </div>
29 </li>
30 <li>
31 <div class="easydocs-settings">
32 <?php if ( current_user_can( 'edit_posts' ) ) : ?>
33 <div class="header-notify-icons">
34 <select name="bbpc_classic_ui" id="bbpc_classic_ui">
35 <option value="<?php echo esc_url( admin_url( 'admin.php?page=forumax' ) ); ?>">
36 <?php esc_html_e( 'Choose classic UI', 'forumax' ); ?>
37 </option>
38 <option value="<?php echo esc_url( admin_url( 'edit.php?post_type=forum' ) ); ?>">
39 <?php esc_html_e( 'Forums', 'forumax' ); ?>
40 </option>
41 <option value="<?php echo esc_url( admin_url( 'edit.php?post_type=topic' ) ); ?>">
42 <?php esc_html_e( 'Topics', 'forumax' ); ?>
43 </option>
44 <option value="<?php echo esc_url( admin_url( 'edit.php?post_type=reply' ) ); ?>">
45 <?php esc_html_e( 'Replies', 'forumax' ); ?>
46 </option>
47 </select>
48 </div>
49 <?php endif; ?>
50 </div>
51 </li>
52 <?php
53 if ( forumax_is_premium() ) :
54 do_action( 'forumax_pro_notification' );
55 else :
56 ?>
57 <li class="easydocs-notification forumax-pro-notification" title="<?php esc_attr_e( 'Notifications', 'forumax' ); ?>">
58 <div class="header-notify-icon">
59 <img class="notify-icon" src="<?php echo esc_url( FORUMAX_IMG . 'admin/notification.svg' ); ?>" alt="<?php esc_attr_e( 'Notify Icon', 'forumax' ); ?>">
60 <img class="settings-pro-icon" src="<?php echo esc_url( FORUMAX_IMG . 'admin/pro-icon.png' ); ?>" alt="<?php esc_attr_e( 'Pro Icon', 'forumax' ); ?>">
61 </div>
62 </li>
63 <?php
64 endif;
65 ?>
66 </ul>
67 </div>
68 </div>
69 </div>
70 </header>
71