CDNVideo core lib for http://www.cdnvideo.ru/
CDNVideo core lib provide a small help to manage url and switch them to CDN. This lib will be extender as new API comes Just donwload lib and include it into your project :
require_once 'lib/autoloader.php';Your should define some settings for lib. They should be in your contract with CNDVideo ('domain', 'client_id')
$CDNVideo = new \CDNVideo\CDNVideo(array(
'domain' => 'example.com',
'id' => 1000,
'targets' => array(
'css', 'js', 'jpeg', 'jpg', 'png', 'gif', 'mp3', 'mp4', 'ogg', 'flv'
),
'init_time' => time(), // default: time()
'ttl' => 1000, // default: 14 days in seconds
));