Skip navigation.

Free Drupal Theme Workshop by Rob Feature the Host of Geeks and God with Matt Farina

If you want to help me pay the cost of hosting these files, please Donate if you can :)










Below are the Videos from the Free Drupal Theme Workshop by Rob Feature the Host
of Geeks and God with Matt Farina

  • Where?

    St. Matthew Lutheran Church

    2040 South Commerce

    Walled Lake, MI

    Room 304 (use rear entrance)


    Google Map
  • Date: Saturday, October 11, 2008
  • Time: 1pm-6pm

  • Geeks and God are Rod Feature and Matt Farina. Please check out their sites.



    Thanks for your support!!



    Also, we have an IRC channel at FREENODE #geeksandgod




    Videos for Free Drupal Theme Workshop

    // $filelist = explode("\n",`find .|sort`);
    $dirpath = "./files/freetheme/videos/";
    $dh = opendir($dirpath);
    while (false !==($file = readdir($dh))) {
    $files[] = $file;
    }
    sort($files, SORT_STRING);
    foreach ($files as $file) {
    //Don't list subdirectories
    if (!is_dir("$dirpath/$file")) {
    //Truncate the file extension and capitalize the first letter
    echo "". htmlspecialchars(ucfirst(preg_replace('/\..*$/', '', $file))) ."
    ";
    }
    }
    ?>