Reconcile to live bytes. Diff vs pristine = Cadline modification (ARCHLine.XP 2024 Rendering contest upload form, ~3 files) + version drift/line-endings. Signed-off-by: LÁZÁR Imre <imre@illusion.hu> Assisted-by: claude-code@claude-opus-4-8
88 lines
2.3 KiB
PHP
88 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* @version 2.7.8
|
|
* @author Michael A. Gilkes (jaido7@yahoo.com)
|
|
* @copyright Michael Albert Gilkes
|
|
* @license GNU/GPLv2
|
|
*
|
|
|
|
Easy File Uploader Module for Joomla!
|
|
Copyright (C) 2010-2016 Michael Albert Gilkes
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
// No direct access to this file
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
class mod_easyfileuploaderInstallerScript
|
|
{
|
|
/**
|
|
* Called before any type of action. Method to run before an install/update/uninstall method.
|
|
*
|
|
* @param string $route Which action is happening (install|uninstall|discover_install)
|
|
* @param JAdapterInstance $parent The object responsible for running this script
|
|
*
|
|
* @return boolean True on success
|
|
*/
|
|
function preflight($route, $adapter)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Called on installation
|
|
*
|
|
* @param JAdapterInstance $adapter The object responsible for running this script
|
|
*
|
|
* @return boolean True on success
|
|
*/
|
|
function install($adapter)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Called on update
|
|
*
|
|
* @param JAdapterInstance $adapter The object responsible for running this script
|
|
*
|
|
* @return boolean True on success
|
|
*/
|
|
function update($adapter)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Called on uninstallation
|
|
*
|
|
* @param JAdapterInstance $adapter The object responsible for running this script
|
|
*/
|
|
function uninstall($adapter)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Called after any type of action. Method to run after an install/update/uninstall method.
|
|
*
|
|
* @param string $route Which action is happening (install|uninstall|discover_install)
|
|
* @param JAdapterInstance $adapter The object responsible for running this script
|
|
*
|
|
* @return boolean True on success
|
|
*/
|
|
function postflight($route, $adapter)
|
|
{
|
|
}
|
|
}
|