Changeset 76 for trunk/www/index.php


Ignore:
Timestamp:
Aug 24, 2009, 8:53:09 PM (15 years ago)
Author:
george
Message:
  • Přidáno: Podpora pro oprávnění uživatelů a skupin.
  • Upraveno: V include souborech použita cesta aktuálního skriptu.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/index.php

    r74 r76  
    1919$System->AddModule(new Log($System));
    2020$System->AddModule(new User($System));
     21$System->AddModule(new Permission($System));
    2122if(isset($_SERVER['REMOTE_ADDR'])) $System->Modules['User']->Check();
    22   else $System->Modules['User']->User['Id'] = $Config['Web']['UserConsoleId'];
     23  else $System->Modules['User']->Data['Id'] = $Config['Web']['UserConsoleId'];
     24$System->Modules['Permission']->LoadForUser($System->Modules['User']->Data['Id']);
     25print_r($System->Modules['Permission']->Data);
    2326
    2427if(array_key_exists('Module', $_GET)) $Module = $_GET['Module'];
Note: See TracChangeset for help on using the changeset viewer.