Your IP : 216.73.216.209


Current Path : /home/m/e/g/megadansyp/www/administrator/components/com_jaextmanager/views/repo/
Upload File :
Current File : /home/m/e/g/megadansyp/www/administrator/components/com_jaextmanager/views/repo/view.html.php

<?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";

		if (version_compare(JVERSION, '4', '<')) {
			JHtml::_('behavior.framework', true);
			JHtml::_('script', 'system/mootree.js');
			JHtml::_('stylesheet', 'system/mootree.css', array(), true);
		}

		$assets = JURI::root() . 'administrator/components/com_jaextmanager/assets/';
		$document = JFactory::getDocument();
		if (jaIsJoomla4x()) {
			$document->setBuffer($this->loadTemplate('navigation'), 'modules', 'top');
			JHtml::_('stylesheet', $assets . 'repo_manager_3/' . 'repomanager.css');
		} else if(jaIsJoomla3x()){
			$document->setBuffer($this->loadTemplate('navigation'), 'modules', 'top');
			JHtml::_('script', $assets . 'repo_manager_3/' . 'repomanager.js');
			JHtml::_('stylesheet', $assets . 'repo_manager_3/' . 'repomanager.css');
		}else{
			$document->setBuffer($this->loadTemplate('navigation'), 'modules', 'submenu');
			JHtml::_('script', $assets . 'repo_manager/' . 'repomanager.js');
			JHtml::_('stylesheet', $assets . 'repo_manager/' . 'repomanager.css');
		}
		
		
		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);
	}


	/**
	 * 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;
	}
}