17 declare(strict_types=1);
24 protected \ilDBInterface
$db;
35 "DELETE FROM rbac_ta " .
37 "SELECT obj_id FROM object_data " .
38 "WHERE type = 'typ' " .
42 $this->db->manipulate($sql);
46 "DELETE FROM object_data " .
47 "WHERE type = 'typ' " .
50 $this->db->manipulate($sql);
57 "DELETE FROM rbac_ta " .
59 "SELECT ops_id FROM rbac_operations " .
60 "WHERE operation = 'create_dbk'" .
63 $this->db->manipulate($sql);
66 "DELETE FROM rbac_templates " .
68 "SELECT ops_id FROM rbac_operations " .
69 "WHERE operation = 'create_dbk'" .
72 $this->db->manipulate($sql);
76 "DELETE FROM rbac_operations " .
77 "WHERE operation = 'create_dbk'";
79 $this->db->manipulate($sql);
86 "DELETE FROM rbac_templates " .
90 $this->db->manipulate($sql);
prepare(\ilDBInterface $db)
Prepare the execution of the steps.