block-add.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /* Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
  3. * Copyright (C) 2017 ATM Consulting <contact@atm-consulting.fr>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. */
  18. /**
  19. * \file htdocs/blockedlog/ajax/block-add.php
  20. * \ingroup blockedlog
  21. * \brief block-add
  22. */
  23. // This script is called with a POST method.
  24. // Directory to scan (full path) is inside POST['dir'].
  25. if (!defined('NOTOKENRENEWAL')) {
  26. define('NOTOKENRENEWAL', 1); // Disables token renewal
  27. }
  28. if (!defined('NOREQUIREMENU')) {
  29. define('NOREQUIREMENU', '1');
  30. }
  31. if (!defined('NOREQUIREHTML')) {
  32. define('NOREQUIREHTML', '1');
  33. }
  34. $res = require '../../main.inc.php';
  35. $id = GETPOST('id', 'int');
  36. $element = GETPOST('element', 'alpha');
  37. $action = GETPOST('action', 'aZ09');
  38. /*
  39. * View
  40. */
  41. top_httphead();
  42. if ($element === 'facture') {
  43. require_once DOL_DOCUMENT_ROOT.'/blockedlog/class/blockedlog.class.php';
  44. require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
  45. $facture = new Facture($db);
  46. if ($facture->fetch($id) > 0) {
  47. $facture->call_trigger($action, $user);
  48. }
  49. }