primo commit

This commit is contained in:
2024-12-17 17:34:10 +01:00
commit e650f8df99
16435 changed files with 2451012 additions and 0 deletions

View File

@ -0,0 +1 @@
<html><body bgcolor="#FFFFFF"></body></html>

View File

@ -0,0 +1,32 @@
<?php
/*
* @package Joomla
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
*
* @component Phoca Gallery
* @copyright Copyright (C) Jan Pavelka www.phoca.cz
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
*/
defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Language\Text;
echo '<div id="phocagallery-links">'
.'<fieldset class="adminform">'
.'<legend>'.Text::_( 'COM_PHOCAGALLERY_SELECT_TYPE' ).'</legend>'
.'<ul>'
.'<li class="ph-icon-16-edb-categories"><a href="'.$this->t['categories'].'">'.Text::_('COM_PHOCAGALLERY_CATEGORIES').'</a></li>'
//.'<li class="icon-16-edb-category"><a href="'.$this->t['COM_PHOCAGALLERY_CATEGORY'].'">'.JText::_('COM_PHOCAGALLERY_CATEGORY').'</a></li>'
.'<li class="ph-icon-16-edb-images"><a href="'.$this->t['images'].'">'.Text::_('COM_PHOCAGALLERY_IMAGES').'</a></li>'
.'<li class="ph-icon-16-edb-images"><a href="'.$this->t['imagesmasonry'].'">'.Text::_('COM_PHOCAGALLERY_IMAGES_MASONRY').'</a></li>'
/*.'<li class="ph-icon-16-edb-image"><a href="'.$this->t['image'].'">'.Text::_('COM_PHOCAGALLERY_IMAGE').'</a></li>'
'<li class="ph-icon-16-edb-switchimage"><a href="'.$this->t['switchimage'].'">'.Text::_('COM_PHOCAGALLERY_SWITCH_IMAGE').'</a></li>'
.'<li class="ph-icon-16-edb-slideshow"><a href="'.$this->t['slideshow'].'">'.Text::_('COM_PHOCAGALLERY_SLIDESHOW').'</a></li>'
*/
.'</ul>'
.'</div>'
.'</fieldset>'
.'</div>';
?>

View File

@ -0,0 +1 @@
<html><body bgcolor="#FFFFFF"></body></html>

View File

@ -0,0 +1,56 @@
<?php
/* @package Joomla
* @copyright Copyright (C) Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* @extension Phoca Extension
* @copyright Copyright (C) Jan Pavelka www.phoca.cz
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
*/
defined('_JEXEC') or die();
use Joomla\CMS\MVC\View\HtmlView;
use Joomla\CMS\Factory;
use Joomla\CMS\Uri\Uri;
use Joomla\CMS\HTML\HTMLHelper;
jimport( 'joomla.application.component.view' );
phocagalleryimport('phocagallery.render.renderadminviews');
class phocaGalleryViewphocaGalleryLinks extends HtmlView
{
protected $r;
protected $t;
function display($tpl = null) {
$this->r = new PhocaGalleryRenderAdminViews();
$this->t = PhocaGalleryUtils::setVars('link');
$app = Factory::getApplication();
//Frontend Changes
$tUri = '';
if (!$app->isClient('administrator')) {
$tUri = Uri::base();
}
$editor = $app->input->getCmd('editor', '');
if (!empty($editor)) {
$this->document->addScriptOptions('xtd-phocagallery', array('editor' => $editor));
}
$eName = Factory::getApplication()->input->get('editor');
$eName = preg_replace( '#[^A-Z0-9\-\_\[\]]#i', '', $eName );
HTMLHelper::_('jquery.framework', false);
HTMLHelper::stylesheet( 'media/com_phocagallery/css/administrator/phocagallery.css' );
HTMLHelper::stylesheet( 'media/plg_editors-xtd_phocagallery/css/phocagallery.css' );
$this->t['categories'] = $tUri.'index.php?option=com_phocagallery&amp;view=phocagallerylinkcats&amp;tmpl=component&amp;editor='.$eName;
//$this->t['COM_PHOCAGALLERY_CATEGORY'] = 'index.php?option=com_phocagallery&amp;view=phocagallerylinkcat&amp;tmpl=component&amp;editor='.$eName;
$this->t['images'] = $tUri.'index.php?option=com_phocagallery&amp;view=phocagallerylinkimg&amp;type=2&amp;tmpl=component&amp;editor='.$eName;
$this->t['image'] = $tUri.'index.php?option=com_phocagallery&amp;view=phocagallerylinkimg&amp;type=1&amp;tmpl=component&amp;editor='.$eName;
$this->t['imagesmasonry'] = $tUri.'index.php?option=com_phocagallery&amp;view=phocagallerylinkimg&amp;type=5&amp;tmpl=component&amp;editor='.$eName;
//$this->t['switchimage'] = $tUri.'index.php?option=com_phocagallery&amp;view=phocagallerylinkimg&amp;type=3&amp;tmpl=component&amp;editor='.$eName;
//$this->t['slideshow'] = $tUri.'index.php?option=com_phocagallery&amp;view=phocagallerylinkimg&amp;type=4&amp;tmpl=component&amp;editor='.$eName;
parent::display($tpl);
}
}
?>