AAAAindex.html000066600000000037151373414330006551 0ustar00 .htaccess000066600000000177151373414330006357 0ustar00 Order allow,deny Deny from all eosnotify.xml000066600000001207151373414330007315 0ustar00 PLG_EOSNOTIFY Joomla! Project October 2014 Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved. http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL admin@joomla.org www.joomla.org 2.5.0 End of Support Notifier eosnotify.php index.html eosnotify.php000066600000003470151373414330007310 0ustar00loadLanguage(); } /** * This method is called when the Quick Icons module is constructing its set * of icons. You can return an array which defines a single icon and it will * be rendered right after the stock Quick Icons. * * @param $context The calling context * * @return array A list of icon definition associative arrays, consisting of the * keys link, image, text and access. * * @since 2.5.28 */ public function onGetIcons($context) { if (!JFactory::getApplication()->isAdmin() || version_compare(JVERSION, '3.0', '>=')) { return; } $text = JText::_('PLG_EOSNOTIFY_SUPPORT_ENDING'); if (JFactory::getDate() >= '2015-01-01') { $text = JText::_('PLG_EOSNOTIFY_SUPPORT_ENDED'); } if (JAdministratorHelper::findOption() == 'com_cpanel') { JFactory::getApplication()->enqueueMessage(JText::sprintf('PLG_EOSNOTIFY_CLICK_FOR_INFORMATION_WITH_LINK', $text), 'error'); } } }