Файл: upload/module/video/include/component/controller/convert.class.php
Строк: 78
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox_Component
* @version $Id: convert.class.php 3296 2011-10-12 13:29:57Z Raymond_Benc $
*/
class Video_Component_Controller_Convert extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
exit('Use AJAX method');
Phpfox::isUser(true);
if (!($iId = $this->request()->get('id')))
{
return Phpfox_Error::display(Phpfox::getPhrase('video.id_must_be_defined'));
}
echo '<script type="text/javascript">';
if (Phpfox::getService('video.convert')->process($iId))
{
if ($this->request()->get('video-inline') == '1')
{
$iFeedId = Phpfox::getService('feed.process')->getLastId();
echo 'window.parent.$.ajaxCall('video.displayFeed', 'id=' . $iFeedId . '&video_id=' . $iId . '', 'GET');';
}
elseif ($this->request()->get('isajax'))
{
echo 'window.parent.Editor.insert({type: 'video', id: '' . (int) $iId . '', editor_id: '' . base64_decode($this->request()->get('editor-id')) . ''});';
}
else
{
$aVideo = Phpfox::getService('video')->getForEdit($iId);
echo 'window.parent.location.href = '' . Phpfox::permalink('video', $aVideo['video_id'], $aVideo['title']) . '';';
}
}
else
{
Phpfox::getService('video.process')->delete($iId);
echo 'window.parent.document.getElementById('js_video_upload_error').style.display = 'block';';
echo 'window.parent.document.getElementById('js_video_upload_message').innerHTML = '' . implode('<br />', Phpfox_Error::get()) . '';';
echo 'window.parent.document.getElementById('js_upload_inner_form').style.display = 'block';';
echo 'window.parent.document.getElementById('js_video_detail').style.display = 'none';';
echo 'window.parent.document.getElementById('js_video_process').style.display = 'none';';
}
echo '</script>';
exit;
}
/**
* Garbage collector. Is executed after this class has completed
* its job and the template has also been displayed.
*/
public function clean()
{
(($sPlugin = Phpfox_Plugin::get('video.component_controller_convert_clean')) ? eval($sPlugin) : false);
}
}
?>