PageRenderTime 44ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

/htdocs/core/ajax/row.php

https://github.com/asterix14/dolibarr
PHP | 73 lines | 32 code | 14 blank | 27 comment | 15 complexity | d0f339472fa289905110ab76a232e38d MD5 | raw file
Possible License(s): LGPL-2.0
  1. <?php
  2. /* Copyright (C) 2010-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/row.php
  19. * \brief File to return Ajax response on Row move
  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/class/genericobject.class.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['roworder']) && !empty($_GET['roworder'])) && (isset($_GET['table_element_line']) && !empty($_GET['table_element_line']))
  40. && (isset($_GET['fk_element']) && !empty($_GET['fk_element'])) && (isset($_GET['element_id']) && !empty($_GET['element_id'])) )
  41. {
  42. $roworder = explode(',',$_GET['roworder']);
  43. foreach($roworder as $value)
  44. {
  45. if (!empty($value))
  46. {
  47. $newroworder[] = $value;
  48. }
  49. }
  50. $roworder = implode(',',$newroworder);
  51. dol_syslog("AjaxRow roworder=".$_GET['roworder']." neworder=".$roworder." element=".$_GET['element'], LOG_DEBUG);
  52. $row=new GenericObject($db);
  53. $row->table_element_line = $_GET['table_element_line'];
  54. $row->fk_element = $_GET['fk_element'];
  55. $row->id = $_GET['element_id'];
  56. $result=$row->line_ajaxorder($roworder);
  57. $result=$row->line_order(true);
  58. }
  59. ?>