PageRenderTime 40ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/htdocs/core/ajax/constantonoff.php

https://github.com/asterix14/dolibarr
PHP | 63 lines | 26 code | 10 blank | 27 comment | 16 complexity | 56e5d511bcc0d44af9431cc6f2c292ba 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/constantonoff.php
  19. * \brief File to set or del an on/off constant
  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. require_once(DOL_DOCUMENT_ROOT."/core/lib/admin.lib.php");
  29. /*
  30. * View
  31. */
  32. // Ajout directives pour resoudre bug IE
  33. //header('Cache-Control: Public, must-revalidate');
  34. //header('Pragma: public');
  35. //top_htmlhead("", "", 1); // Replaced with top_httphead. An ajax page does not need html header.
  36. top_httphead();
  37. print '<!-- Ajax page called with url '.$_SERVER["PHP_SELF"].'?'.$_SERVER["QUERY_STRING"].' -->'."\n";
  38. // Registering the location of boxes
  39. if((isset($_GET['action']) && ! empty($_GET['action'])) && (isset($_GET['name']) && ! empty($_GET['name'])) )
  40. {
  41. if ($user->admin)
  42. {
  43. if ($_GET['action'] == 'set')
  44. {
  45. dolibarr_set_const($db, $_GET['name'], 1, 'chaine', 0, '', $conf->entity);
  46. }
  47. else if ($_GET['action'] == 'del')
  48. {
  49. dolibarr_del_const($db, $_GET['name'], $conf->entity);
  50. }
  51. }
  52. }
  53. ?>