home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / groupoffice-com-2.01 / controls / acl.php < prev    next >
PHP Script  |  2004-03-08  |  983b  |  27 lines

  1. <?php
  2. /*
  3. Copyright Intermesh 2003
  4. Author: Merijn Schering <mschering@intermesh.nl>
  5. Version: 1.0 Release date: 08 July 2003
  6.  
  7. This program is free software; you can redistribute it and/or modify it
  8. under the terms of the GNU General Public License as published by the
  9. Free Software Foundation; either version 2 of the License, or (at your
  10. option) any later version.
  11. */
  12.  
  13. require("../Group-Office.php");
  14. $GO_SECURITY->authenticate();
  15.  
  16. if (isset($_REQUEST['search_field']))
  17. {
  18.     SetCookie("user_search_field",$_REQUEST['search_field'],time()+3600*24*365,"/","",0);
  19.     $_COOKIE['user_search_field'] = $_REQUEST['search_field'];
  20. }
  21. $GO_HEADER['body_arguments'] = 'class="TableInside"';
  22. require($GO_THEME->theme_path."header.inc");
  23. echo '<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%"><tr><td class="TableInside" valign="top">';
  24. $acl = new acl($_REQUEST['acl_id']);
  25. echo '</td></tr></table>';
  26. require($GO_THEME->theme_path."footer.inc");
  27. ?>