id ) {
case 'dashboard' :
include( 'class-sp-admin-dashboard.php' );
break;
}
}
/**
* Prevent any user who cannot 'edit_posts' (subscribers, fans etc) from accessing admin
*/
public function prevent_admin_access() {
$prevent_access = false;
if ( 'yes' == get_option( 'sportspress_lock_down_admin' ) && ! is_ajax() && ! ( current_user_can( 'edit_posts' ) || current_user_can( 'manage_sportspress' ) ) && basename( $_SERVER["SCRIPT_FILENAME"] ) !== 'admin-post.php' ) {
$prevent_access = true;
}
$prevent_access = apply_filters( 'sportspress_prevent_admin_access', $prevent_access );
if ( $prevent_access ) {
wp_safe_redirect( get_permalink( sp_get_page_id( 'myaccount' ) ) );
exit;
}
}
/**
* Add action link after post list title
*/
public function action_links() {
global $pagenow, $typenow;
if ( 'edit.php' == $pagenow && in_array( $typenow, sp_primary_post_types() ) ) {
if ( 'sp_event' === $typenow ) {
?>