https://github.com/PressForward/pressforward
Raw File
Tip revision: 6574fc369f5d200caa1257f849ff8d2e213c877e authored by Boone B Gorges on 01 March 2023, 19:55:47 UTC
Stable tag 5.4.0.
Tip revision: 6574fc3
tab-alerts.tpl.php
<?php
/**
 * Template for Alerts tab.
 *
 * @package PressForward
 */

?>

<?php if ( current_user_can( 'edit_posts' ) ) : ?>
	<div class="alert-box postbox">
		<div class="handlediv" title="<?php esc_attr_e( 'Click to toggle', 'pf' ); ?>"><br></div>
		<h3 class="hndle"><span><?php esc_html_e( 'Feed Problems', 'pf' ); ?></span></h3>
		<div class="inside">
			<?php
			pressforward( 'admin.menu' )->pf_alert_displayer();
			?>
		</div>
	</div>
<?php endif; ?>

<form method="post" action="options.php" enctype="multipart/form-data">
	<?php settings_fields( PF_SLUG . '_feedlist_group' ); ?>
</form>
back to top