| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/newsite/administrator/components/com_jaextmanager/views/repo/ |
Upload File : |
<?php
/**
* @version $Id: view.html.php 17858 2010-06-23 17:54:28Z eddieajau $
* @copyright Copyright (C) 2005 - 2010 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// No direct access
defined('_JEXEC') or die();
jimport('joomla.application.component.view');
/**
* HTML View class for the Media component
*
* @package Joomla.Administrator
* @subpackage com_media
* @since 1.0
*/
class JaextmanagerViewRepo extends JAEMView
{
function display($tpl = null)
{
// Initialise variables.
$app = JFactory::getApplication();
$config = JComponentHelper::getParams(JACOMPONENT);
$lang = JFactory::getLanguage();
//$style = $app->getUserStateFromRequest('media.list.layout', 'layout', 'details', 'word');
$style = "details";
JHtml::_('behavior.framework', true);
$assets = JURI::root() . 'administrator/components/com_jaextmanager/assets/';
$document = JFactory::getDocument();
if(jaIsJoomla3x()){
$document->setBuffer($this->loadTemplate('navigation'), 'modules', 'top');
JHtml::_('script', $assets . 'repo_manager_3/' . 'repomanager.js', false, true);
JHtml::_('stylesheet', $assets . 'repo_manager_3/' . 'repomanager.css', false, true);
}else{
$document->setBuffer($this->loadTemplate('navigation'), 'modules', 'submenu');
JHtml::_('script', $assets . 'repo_manager/' . 'repomanager.js', false, true);
JHtml::_('stylesheet', $assets . 'repo_manager/' . 'repomanager.css', false, true);
}
JHtml::_('behavior.modal', 'a.modal');
$document->addScriptDeclaration("
window.addEvent('domready', function() {
document.preview = SqueezeBox;
});");
JHtml::_('script', 'system/mootree.js', true, true, false, false);
JHtml::_('stylesheet', 'system/mootree.css', array(), true);
if ($lang->isRTL()) :
JHtml::_('stylesheet', 'media/mootree_rtl.css', array(), true);
endif;
if ($config->get('enable_flash', 0)) {
JHtml::_('behavior.uploader', 'file-upload', array('onAllComplete' => 'function(){ MediaManager.refreshFrame(); }'));
}
if (DS == '\\') {
$base = str_replace(DS, "\\\\", JA_WORKING_DATA_FOLDER);
} else {
$base = JA_WORKING_DATA_FOLDER;
}
$js = "
var basepath = '" . $base . "';
var viewstyle = '" . $style . "';
";
$document->addScriptDeclaration($js);
/*
* Display form for FTP credentials?
* Don't set them here, as there are other functions called before this one if there is any file write operation
*/
jimport('joomla.client.helper');
$ftp = !JClientHelper::hasCredentials('ftp');
$session = JFactory::getSession();
$state = $this->get('state');
$folderTree = $this->get('folderTree');
$this->assignRef('session', $session);
$this->assignRef('config', $config);
$this->assignRef('state', $state);
$this->assign('require_ftp', $ftp);
$this->assign('folders_id', ' id="media-tree"');
$this->assign('folders', $folderTree);
// Set the toolbar
$this->addToolbar();
parent::display($tpl);
echo JHtml::_('behavior.keepalive');
}
/**
* Add the page title and toolbar.
*
* @since 1.6
*/
protected function addToolbar()
{
// Get the toolbar object instance
$bar = JToolBar::getInstance('toolbar');
// Set the titlebar text
JToolBarHelper::title(JText::_('JOOMLART_EXTENSIONS_MANAGER'), 'generic');
if(jaIsJoomla3x()) {
// Add a upload button
$title = JText::_('UPLOAD');
$dhtml = "<button href=\"#\" onclick=\"jaOpenUploader(); return false;\" class=\"toolbar btn btn-small btn-success\">
<i class=\"icon-plus icon-white\" title=\"$title\"></i>
$title</button>";
$bar->appendButton('Custom', $dhtml, 'upload');
// Add a delete button
$title = JText::_('DELETE');
$dhtml = "<button href=\"#\" onclick=\"multiDelete(); return false;\" class=\"toolbar btn btn-small\">
<i class=\"icon-remove\" title=\"$title\"></i>
$title</button>";
$bar->appendButton('Custom', $dhtml, 'delete');
} else {
// Add a upload button
$title = JText::_('UPLOAD');
$dhtml = "<a href=\"#\" onclick=\"jaOpenUploader(); return false;\" class=\"toolbar btn btn-small btn-success\">
<span class=\"icon-32-upload\" title=\"$title\" type=\"Custom\"></span>
$title</a>";
$bar->appendButton('Custom', $dhtml, 'upload');
// Add a delete button
$title = JText::_('DELETE');
$dhtml = "<a href=\"#\" onclick=\"multiDelete(); return false;\" class=\"toolbar\">
<span class=\"icon-32-delete\" title=\"$title\" type=\"Custom\"></span>
$title</a>";
$bar->appendButton('Custom', $dhtml, 'delete');
}
}
function getFolderLevel($folder)
{
$this->folders_id = null;
$txt = null;
if (isset($folder['children']) && count($folder['children'])) {
$tmp = $this->folders;
$this->folders = $folder;
if(jaIsJoomla3x()) {
$txt = $this->loadTemplate('folders30');
} else {
$txt = $this->loadTemplate('folders');
}
$this->folders = $tmp;
}
return $txt;
}
}