class-wes-permissions.php

<?php
if (!defined('ABSPATH')) {
    exit;
}

class WES_Permissions {
    
    public static function can_manage_students() {
        return current_user_can('manage_options');
    }
    
    public static function can_view_students() {
        return current_user_can('manage_options');
    }
    
    public static function can_delete_students() {
        return current_user_can('manage_options');
    }
    
    public static function can_export_students() {
        return current_user_can('manage_options');
    }
}