コード例 #1
0
 function process_bulk_action()
 {
     if ('delete' === $this->current_action()) {
         require_once 'education.class.php';
         $education = new Education();
         $ids = isset($_REQUEST['ID']) ? $_REQUEST['ID'] : array();
         $education->deleteUsers($ids);
     }
 }