1. PHP / Говнокод #22827

    −11

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    /Make up the function to readout menu-data  
    function read_dir($dir) {
       $path = opendir($dir);
       while (false !== ($file = readdir($path))) {
           if(($file !== ".") and ($file !== "..")) {
               if(is_file($dir."/".$file))
                   $files[]=$file;
               else
                   $dirs[]=$dir."/".$file;           
           }
       }
       if($dirs) {
       echo "";
       }
       if($files) {
           natcasesort($files);
           foreach ($files as $file) {
               //Include Theme data
    			  include ("data/settings/themepref.php");
    			  include ("data/inc/themes/$themepref/index.php");
    			  //Get page data
    			  unset($hidden);
               include ("data/content/$file");
    
               //If page isn't hidden: display menu-item
               if (($hidden == "no") || (!$hidden)) {
               echo "$html_menuitem_start$title$html_menuitem_end"; } 
    
               }
       }
       closedir($path);
    }

    https://www.shopit.pro/ сорцы их цмс)

    Запостил: eskrano, 17 Апреля 2017

    Комментарии (6) RSS

    • показать все, что скрыто# www.shopit.pro

      И даже на этом сраном сайте bootstrap и виджет контактика. Эх, куда катится мир.
      Ответить
      • К однообразию.
        В этом смысле я даже как-то поддерживаю закрытие интернета - это ж сколько самоделок снова разведётся из-за отсутствия единственного "правильного" решения.

        Хотя это костыль, причём кривой. Нужен какой-то иной подход, этот мне не нравится.
        Ответить

    Добавить комментарий