Skip to content
Snippets Groups Projects
Select Git revision
  • 6cd58951ab45ca4b60c2fb87018ffc517adbfa4b
  • master default
  • develop
3 results

library.py

Blame
  • Forked from Wayne Motycka / MyMovieLibrary
    Source project has a limited visibility.
    configsample.inc.php 308 B
    <?php
    
    function autoload($class)
    {
        $class = str_replace(array('_', '\\'), '/', $class);
        include $class . '.php';
    }
    
    spl_autoload_register('autoload');
    
    set_include_path(__DIR__ . '/src' );
    
    $config = array(
        'proxyUrl' => 'http://www.getrave.com/rss/unl/channel1',
        'recentTimeframe' => '',
    );