Select Git revision
configsample.inc.php
Forked from
Digital Experience Group / UNL_Alert
Source project has a limited visibility.
-
Kevin Abel authoredKevin Abel authored
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' => '',
);