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,58 @@
<?php
/*
* @package Joomla.Framework
* @copyright Copyright (C) 2005 - 2010 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*
* @component Phoca Component
* @copyright Copyright (C) Jan Pavelka www.phoca.cz
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License version 2 or later;
*/
defined('_JEXEC') or die();
use Joomla\CMS\MVC\Model\BaseDatabaseModel;
use Joomla\CMS\Factory;
jimport('joomla.application.component.model');
jimport('joomla.filesystem.folder');
jimport('joomla.filesystem.file');
phocagalleryimport('phocagallery.file.filefolderlist');
class PhocaGalleryCpModelPhocaGalleryI extends BaseDatabaseModel
{
protected $option = 'com_phocagallery';
protected $text_prefix = 'com_phocagallery';
//public $typeAlias = 'com_phocagallery.phocagalleryi';
function getFolderState($property = null) {
static $set;
if (!$set) {
$folder = Factory::getApplication()->input->get( 'folder', '', '', 'path' );
$this->setState('folder', $folder);
$parent = str_replace("\\", "/", dirname($folder));
$parent = ($parent == '.') ? null : $parent;
$this->setState('parent', $parent);
$set = true;
}
return parent::getState($property);
}
function getImages() {
$tab = Factory::getApplication()->input->get( 'tab', '', '', 'string' );
$muFailed = Factory::getApplication()->input->get( 'mufailed', '0', '', 'int' );
$muUploaded = Factory::getApplication()->input->get( 'muuploaded', '0', '', 'int' );
$refreshUrl = 'index.php?option=com_phocagallery&view=phocagalleryi&tab='.$tab.'&mufailed='.$muFailed.'&muuploaded='.$muUploaded.'&tmpl=component';
$list = PhocaGalleryFileFolderList::getList(0,1,0,$refreshUrl);
return $list['Images'];
}
function getFolders() {
$tab = Factory::getApplication()->input->get( 'tab', 0, '', 'int' );
$refreshUrl = 'index.php?option=com_phocagallery&view=phocagalleryi&tab='.$tab.'&tmpl=component';
$list = PhocaGalleryFileFolderList::getList(0,0,0,$refreshUrl);
return $list['folders'];
}
}
?>