AAAAPK × ?\¦V‰
index.htmlnu W+A„¶
PK × ?\¦V‰ eosnotify/index.htmlnu W+A„¶
PK × ?\®)ÕÐ eosnotify/.htaccessnu W+A„¶
Order allow,deny
Deny from all
PK × ?\à;÷‡ ‡ eosnotify/eosnotify.xmlnu W+A„¶
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
PK × ?\’³…8 8 eosnotify/eosnotify.phpnu W+A„¶ loadLanguage();
}
/**
* 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');
}
}
}
PK × ?\®)ÕÐ .htaccessnu W+A„¶
Order allow,deny
Deny from all
PK × ?\â-‘{ { joomlaupdate/joomlaupdate.xmlnu W+A„¶
plg_quickicon_joomlaupdate
Joomla! Project
August 2011
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
PLG_QUICKICON_JOOMLAUPDATE_XML_DESCRIPTION
joomlaupdate.php
index.html
en-GB.plg_quickicon_joomlaupdate.ini
en-GB.plg_quickicon_joomlaupdate.sys.ini
PK × ?\v˜e6Œ
Œ
joomlaupdate/joomlaupdate.phpnu W+A„¶ loadLanguage();
}
/**
* 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
*/
public function onGetIcons($context)
{
if ($context != $this->params->get('context', 'mod_quickicon') || !JFactory::getUser()->authorise('core.manage', 'com_installer')) {
return;
}
$cur_template = JFactory::getApplication()->getTemplate();
$ajax_url = JURI::base().'index.php?option=com_installer&view=update&task=update.ajax';
$script = "var plg_quickicon_joomlaupdate_ajax_url = '$ajax_url';\n";
$script .= 'var plg_quickicon_jupdatecheck_jversion = "'.JVERSION.'";'."\n";
$script .= 'var plg_quickicon_joomlaupdate_text = {"UPTODATE" : "'.
JText::_('PLG_QUICKICON_JOOMLAUPDATE_UPTODATE', true).'", "UPDATEFOUND": "'.
JText::_('PLG_QUICKICON_JOOMLAUPDATE_UPDATEFOUND', true).'", "ERROR": "'.
JText::_('PLG_QUICKICON_JOOMLAUPDATE_ERROR', true)."\"};\n";
$script .= 'var plg_quickicon_joomlaupdate_img = {"UPTODATE" : "'.
JURI::base(true) .'/templates/'. $cur_template .'/images/header/icon-48-jupdate-uptodate.png'.'", "ERROR": "'.
JURI::base(true) .'/templates/'. $cur_template .'/images/header/icon-48-deny.png'.'", "UPDATEFOUND": "'.
JURI::base(true) .'/templates/'. $cur_template .'/images/header/icon-48-jupdate-updatefound.png'."\"};\n";
$document = JFactory::getDocument();
$document->addScriptDeclaration($script);
$document->addScript(JURI::base().'../media/plg_quickicon_joomlaupdate/jupdatecheck.js');
return array(array(
'link' => 'index.php?option=com_joomlaupdate',
'image' => 'header/icon-48-download.png',
'text' => JText::_('PLG_QUICKICON_JOOMLAUPDATE_CHECKING'),
'id' => 'plg_quickicon_joomlaupdate'
));
}
}
PK × ?\¦V‰ joomlaupdate/index.htmlnu W+A„¶
PK × ?\®)ÕÐ joomlaupdate/.htaccessnu W+A„¶
Order allow,deny
Deny from all
PK × ?\ }tž ž # extensionupdate/extensionupdate.phpnu W+A„¶ loadLanguage();
}
/**
* Returns an icon definition for an icon which looks for extensions updates
* via AJAX and displays a notification when such updates are found.
*
* @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
*/
public function onGetIcons($context)
{
if ($context != $this->params->get('context', 'mod_quickicon') || !JFactory::getUser()->authorise('core.manage', 'com_installer')) {
return;
}
$cur_template = JFactory::getApplication()->getTemplate();
$ajax_url = JURI::base().'index.php?option=com_installer&view=update&task=update.ajax';
$script = "var plg_quickicon_extensionupdate_ajax_url = '$ajax_url';\n";
$script .= 'var plg_quickicon_extensionupdate_text = {"UPTODATE" : "'.
JText::_('PLG_QUICKICON_EXTENSIONUPDATE_UPTODATE', true).'", "UPDATEFOUND": "'.
JText::_('PLG_QUICKICON_EXTENSIONUPDATE_UPDATEFOUND', true).'", "ERROR": "'.
JText::_('PLG_QUICKICON_EXTENSIONUPDATE_ERROR', true)."\"};\n";
$document = JFactory::getDocument();
$document->addScriptDeclaration($script);
$document->addScript(JURI::base().'../media/plg_quickicon_extensionupdate/extensionupdatecheck.js');
return array(array(
'link' => 'index.php?option=com_installer&view=update',
'image' => 'header/icon-48-extension.png',
'text' => JText::_('PLG_QUICKICON_EXTENSIONUPDATE_CHECKING'),
'id' => 'plg_quickicon_extensionupdate'
));
}
}
PK × ?\®)ÕÐ extensionupdate/.htaccessnu W+A„¶
Order allow,deny
Deny from all
PK × ?\Ʊá0“ “ # extensionupdate/extensionupdate.xmlnu W+A„¶
plg_quickicon_extensionupdate
Joomla! Project
August 2011
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
PLG_QUICKICON_EXTENSIONUPDATE_XML_DESCRIPTION
extensionupdate.php
index.html
en-GB.plg_quickicon_extensionupdate.ini
en-GB.plg_quickicon_extensionupdate.sys.ini
PK × ?\¦V‰ extensionupdate/index.htmlnu W+A„¶
PK × ?\¦V‰
index.htmlnu W+A„¶ PK × ?\¦V‰ Y eosnotify/index.htmlnu W+A„¶ PK × ?\®)ÕÐ ¼ eosnotify/.htaccessnu W+A„¶ PK × ?\à;÷‡ ‡ ~ eosnotify/eosnotify.xmlnu W+A„¶ PK × ?\’³…8 8 L eosnotify/eosnotify.phpnu W+A„¶ PK × ?\®)ÕÐ Ë .htaccessnu W+A„¶ PK × ?\â-‘{ { ƒ joomlaupdate/joomlaupdate.xmlnu W+A„¶ PK × ?\v˜e6Œ
Œ
K joomlaupdate/joomlaupdate.phpnu W+A„¶ PK × ?\¦V‰ $ joomlaupdate/index.htmlnu W+A„¶ PK × ?\®)ÕÐ Š joomlaupdate/.htaccessnu W+A„¶ PK × ?\ }tž ž # O extensionupdate/extensionupdate.phpnu W+A„¶ PK × ?\®)ÕÐ @&