1
0

functions.all.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /* $Id: functions.all.php 2879 2007-04-12 18:19:08Z b4rt $ */
  3. /*******************************************************************************
  4. LICENSE
  5. This program is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU General Public License (GPL)
  7. as published by the Free Software Foundation; either version 2
  8. of the License, or (at your option) any later version.
  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. To read the license please visit http://www.gnu.org/copyleft/gpl.html
  14. *******************************************************************************/
  15. // core
  16. require_once("inc/functions/functions.core.php");
  17. // common
  18. require_once("inc/functions/functions.common.php");
  19. // dispatcher
  20. require_once("inc/functions/functions.dispatcher.php");
  21. // admin
  22. require_once("inc/functions/functions.admin.php");
  23. // dir
  24. require_once("inc/functions/functions.dir.php");
  25. // maketorrent
  26. require_once("inc/functions/functions.maketorrent.php");
  27. // readrss
  28. require_once('inc/functions/functions.readrss.php');
  29. // transfer
  30. require_once('inc/functions/functions.transfer.php');
  31. // tools functions
  32. require_once('inc/functions/functions.tools.php');
  33. ?>