PageRenderTime 51ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/htdocs/core/ajax/security.php

https://github.com/asterix14/dolibarr
PHP | 55 lines | 18 code | 9 blank | 28 comment | 11 complexity | a59bc0908a0c4cf1c62bb2ae0f293ee3 MD5 | raw file
Possible License(s): LGPL-2.0
  1. <?php
  2. /* Copyright (C) 2011 Regis Houssin <regis@dolibarr.fr>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. /**
  18. * \file htdocs/core/ajax/security.php
  19. * \brief File for return security data
  20. */
  21. if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL','1'); // Disables token renewal
  22. if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1');
  23. if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML','1');
  24. if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1');
  25. if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1');
  26. if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1');
  27. require('../../main.inc.php');
  28. /*
  29. * View
  30. */
  31. // Ajout directives pour resoudre bug IE
  32. //header('Cache-Control: Public, must-revalidate');
  33. //header('Pragma: public');
  34. //top_htmlhead("", "", 1); // Replaced with top_httphead. An ajax page does not need html header.
  35. top_httphead();
  36. //print '<!-- Ajax page called with url '.$_SERVER["PHP_SELF"].'?'.$_SERVER["QUERY_STRING"].' -->'."\n";
  37. // Registering the location of boxes
  38. if(isset($_GET['action']) && ! empty($_GET['action']))
  39. {
  40. if ($_GET['action'] == 'getrandompassword' && $user->admin)
  41. {
  42. $generic = $_GET['generic'];
  43. echo getRandomPassword($generic);
  44. }
  45. }
  46. ?>