|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 27.27 GB of 70.42 GB (38.73%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
http/
guitar.1/
components/
com_contushdvideoshare/
- drwxr-xr-x
|
Viewing file: controller.php (3.93 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
<?php
/*
* "ContusHDVideoShare Component" - Version 1.3
* Author: Contus Support - http://www.contussupport.com
* Copyright (c) 2010 Contus Support - support@hdvideoshare.net
* License: GNU/GPL http://www.gnu.org/copyleft/gpl.html
* Project page and Demo at http://www.hdvideoshare.net
* Creation Date: March 30 2011
*/
defined('_JEXEC') or die('Restricted access');
jimport('joomla.application.component.controller');
class contushdvideoshareController extends JController {
function display() {
$db = & JFactory::getDBO();
$query = "select language_settings,user_login from #__hdflv_site_settings where published=1";
$db->setQuery($query);
$rows = $db->loadObjectList();
define('USER_LOGIN', $rows[0]->user_login);
require_once("components/com_contushdvideoshare/language/" . $rows[0]->language_settings);
$viewName = JRequest::getVar('view');
if ($viewName != "languagexml" && $viewName != "configxml" && $viewName != "playxml")
{
?>
<!-- <script src="<?php //echo JURI::base(); ?>components/com_contushdvideoshare/js/tool_tip.js"></script>-->
<link rel="stylesheet" href="<?php echo JURI::base(); ?>components/com_contushdvideoshare/css/tool_tip.css" type="text/css" />
<?php
}
$this->getdisplay($viewName);
if ($viewName == "" || $viewName == "index")
$this->getdisplay('player');
}
function getdisplay($viewName="index") {
$document = & JFactory::getDocument();
$viewType = $document->getType();
$view = & $this->getmodView($viewName, $viewType);
// echo $viewName;
$model = & $this->getModel($viewName, 'Modelcontushdvideoshare');
//
if (!JError::isError($model)) {
$view->setModel($model, true);
}
$view->display();
}
function &getmodView($name = '', $type = '', $prefix = '', $config = array()) {
static $views;
if (empty($prefix))
{
$prefix = $this->getName() . 'View';
}
if (empty($views[$name]))
{
if(version_compare(JVERSION,'1.6.0','ge'))
{
if ($view = & $this->createView($name, $prefix, $type, $config))
{
$views[$name] = & $view;
}
else
{
header("Location:index.php?option=com_contushdvideoshare&view=player&itemid=0");
}
}
else
{
if ($view = & $this->_createView($name, $prefix, $type, $config))
{
$views[$name] = & $view;
}
else
{
header("Location:index.php?option=com_contushdvideoshare&view=player&itemid=0");
}
}
}
return $views[$name];
}
function adsxml()
{
$view = & $this->getView('adsxml');
if ($model = & $this->getModel('adsxml'))
{
//Push the model into the view (as default)
//Second parameter indicates that it is the default model for the view
$view->setModel($model, true);
}
$view->display();
}
// viewed Ad's for player
function impressionclicks()
{
$view = & $this->getView('impressionclicks');
if ($model = & $this->getModel('impressionclicks'))
{
$view->setModel($model, true);
}
$view->display();
}
function videourl()
{
$view = & $this->getView('videourl');
if ($model = & $this->getModel('videourl'))
{
//Push the model into the view (as default)
//Second parameter indicates that it is the default model for the view
$view->setModel($model, true);
}
$view->getvideourl();
}
}
?>
|