Files
handbrake-cluster-webui/webui/pages/rips/source-details.php
Ben Roberts 76f2c4790d Reorganised code layout
Separated class library and web interface code
Added a common config/database config to be referenced by all
subprojects

Fixed previous commit
2010-08-14 15:36:31 +01:00

12 lines
322 B
PHP

<?php
$main = HandBrakeCluster_Main::instance();
$req = $main->request();
$config = $main->config();
$source = HandBrakeCluster_Rips_Source::loadEncoded($req->get('id', HandBrakeCluster_Exception_InvalidParameters));
$this->smarty->assign('source', $source);
$this->smarty->assign('titles', $source->titles());
?>