statistic.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. ////////////////////////////////////////////////////////////////////////////////
  3. // Copyright (C) ReloadCMS Development Team //
  4. // http://reloadcms.sf.net //
  5. // //
  6. // This program is distributed in the hope that it will be useful, //
  7. // but WITHOUT ANY WARRANTY, without even the implied warranty of //
  8. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. //
  9. // //
  10. // This product released under GNU General Public License v2 //
  11. ////////////////////////////////////////////////////////////////////////////////
  12. function statistic_register(){
  13. global $system;
  14. return true;
  15. }
  16. function statistic_get(){
  17. return (false);
  18. }
  19. function striptags_array(&$array){
  20. foreach ($array as $key => $value) {
  21. if(is_array($array[$key])) {
  22. striptags_array($array[$key]);
  23. } else {
  24. $array[$key] = strip_tags($value);
  25. }
  26. }
  27. return true;
  28. }
  29. function statistic_clean(){
  30. }
  31. ?>