31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-05-29 03:50:46 +00:00

Final code style fix

This commit is contained in:
Richard Fath 2020-04-04 23:06:19 +02:00 committed by GitHub
parent dd45425fdc
commit 4c33c35bfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,22 +53,22 @@ class Com_PatchtesterInstallerScript extends InstallerScript
{
if ($type == 'install')
{
$language = JFactory::getLanguage();
$language->load('com_patchtester', JPATH_ADMINISTRATOR, null, true);
$language->load('com_patchtester', JPATH_SITE, null, true);
echo '<h1><img src="../media/com_patchtester/images/icon-48-patchtester.png"> ' . Text::_('COM_PATCHTESTER') . '</h1>';
echo '<p>' . Text::_('COM_PATCHTESTER_XML_DESCRIPTION') . '</p>';
echo '<p>' . Text::_('COM_PATCHTESTER_GOTO') . ' <a href="index.php?option=com_patchtester">' . Text::_('COM_PATCHTESTER') . '</a></p>';
echo '<p>' . Text::_('COM_PATCHTESTER_GOTO') . ' <a href="index.php?option=com_config&view=component&component=com_patchtester#authentication &path=&return=aHR0cDovL2xvY2FsaG9zdC9wYXRjaDRhMTIvYWRtaW5pc3RyYXRvci9pbmRleC5waHA%2Fb3B0aW9uPWNvbV9wYXRjaHRlc3Rlcg%3D%3D">' . Text::_('COM_PATCHTESTER_OPTIONS') . '</a></p>';
$language = JFactory::getLanguage();
$language->load('com_patchtester', JPATH_ADMINISTRATOR, null, true);
$language->load('com_patchtester', JPATH_SITE, null, true);
echo '<h1><img src="../media/com_patchtester/images/icon-48-patchtester.png"> ' . Text::_('COM_PATCHTESTER') . '</h1>';
echo '<p>' . Text::_('COM_PATCHTESTER_XML_DESCRIPTION') . '</p>';
echo '<p>' . Text::_('COM_PATCHTESTER_GOTO') . ' <a href="index.php?option=com_patchtester">' . Text::_('COM_PATCHTESTER') . '</a></p>';
echo '<p>' . Text::_('COM_PATCHTESTER_GOTO') . ' <a href="index.php?option=com_config&view=component&component=com_patchtester#authentication &path=&return=aHR0cDovL2xvY2FsaG9zdC9wYXRjaDRhMTIvYWRtaW5pc3RyYXRvci9pbmRleC5waHA%2Fb3B0aW9uPWNvbV9wYXRjaHRlc3Rlcg%3D%3D">' . Text::_('COM_PATCHTESTER_OPTIONS') . '</a></p>';
}
if ($type == 'uninstall')
{
$language = JFactory::getLanguage();
$language->load('com_patchtester', JPATH_ADMINISTRATOR, null, true);
$language->load('com_patchtester', JPATH_SITE, null, true);
echo '<h1>' . Text::_('COM_PATCHTESTER') . '</h1>';
echo '<p>' . Text::_('COM_PATCHTESTER_UNINSTALL_THANK_YOU') . '</p>';
$language = JFactory::getLanguage();
$language->load('com_patchtester', JPATH_ADMINISTRATOR, null, true);
$language->load('com_patchtester', JPATH_SITE, null, true);
echo '<h1>' . Text::_('COM_PATCHTESTER') . '</h1>';
echo '<p>' . Text::_('COM_PATCHTESTER_UNINSTALL_THANK_YOU') . '</p>';
}
}
}
}