SetPermsAll.php 218 B

12345678910111213
  1. <?php
  2. Lib::loadClass('RouteBase');
  3. class Route_PostTask_SetPermsAll extends RouteBase {
  4. function run() {
  5. User::getAcl()->fetchAllPerms(true);
  6. throw new AlertSuccessException("Wyłączono filtr procesu");
  7. }
  8. }