| 1 |
<?php |
| 2 |
/** |
| 3 |
* Outputs the Charitable admin header. |
| 4 |
* |
| 5 |
* @package Charitable |
| 6 |
* @since 1.8.0 |
| 7 |
*/ |
| 8 |
|
| 9 |
?> |
| 10 |
|
| 11 |
<?php do_action( 'charitable_admin_before_header' ); ?> |
| 12 |
|
| 13 |
<div id="charitable-admin-header" class="charitable-admin-header charitable-campaign-header"> |
| 14 |
<div class="charitable-admin-header-interior"> |
| 15 |
|
| 16 |
<h1 class="charitable-logo" id="charitable-logo"> |
| 17 |
<a href="<?php echo admin_url( 'admin.php?page=charitable' ); ?>"><img src="<?php echo charitable()->get_path( 'directory', false ) . 'assets/images/charitable-header-logo.png'; ?>" alt="Charitable" width="200" height="38" /></a> |
| 18 |
</h1> |
| 19 |
<div class="charitable-header-logos"> |
| 20 |
<ul> |
| 21 |
<?php /* <li><a href="#" title="<?php _e( 'Notifications', 'charitable' ); ?>" class="charitable-header-logo charitable-notification-inbox"><img src="<?php echo charitable()->get_path( 'directory', false ) . 'assets/images/icons/inbox.png'; ?>" alt="<?php _e( 'Notifications', 'charitable' ); ?>"" width="25" height="25" /></a></li> */ ?> |
| 22 |
<li><a href="<?php echo esc_url( charitable_help_link() ); ?>" target="_blank" title="<?php esc_html_e( 'Help', 'charitable' ); ?>" class="charitable-header-logo charitable-notification-help"><img src="<?php echo charitable()->get_path( 'directory', false ) . 'assets/images/icons/help.png'; ?>" alt=" alt="<?php esc_html_e( 'Help', 'charitable' ); ?>"" width="25" height="25" /></a></li> |
| 23 |
</ul> |
| 24 |
</div> |
| 25 |
|
| 26 |
<?php do_action( 'charitable_admin_in_header' ); ?> |
| 27 |
|
| 28 |
</div> |
| 29 |
</div> |
| 30 |
|
| 31 |
<?php do_action( 'charitable_admin_after_header' ); ?> |