mirror of
https://github.com/joomla-extensions/jedchecker.git
synced 2024-12-02 18:08:21 +00:00
get localized component title from sys.ini file
This commit is contained in:
parent
c0b7c05e6f
commit
0fe6fd5dd5
@ -47,9 +47,6 @@ JHtml::script('media/com_jedchecker/js/script.js');
|
|||||||
$options = json_encode($this->jsOptions);
|
$options = json_encode($this->jsOptions);
|
||||||
JFactory::getDocument()->addScriptDeclaration("var jed_options = $options;");
|
JFactory::getDocument()->addScriptDeclaration("var jed_options = $options;");
|
||||||
|
|
||||||
// Load translation for "JED Checker" title from sys.ini file
|
|
||||||
JFactory::getLanguage()->load('com_jedchecker.sys', JPATH_ADMINISTRATOR);
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<div id="jedchecker">
|
<div id="jedchecker">
|
||||||
<div class="row g-3">
|
<div class="row g-3">
|
||||||
|
@ -34,6 +34,9 @@ class JedcheckerViewUploads extends JViewLegacy
|
|||||||
{
|
{
|
||||||
$this->path = JFactory::getConfig()->get('tmp_path') . '/jed_checker';
|
$this->path = JFactory::getConfig()->get('tmp_path') . '/jed_checker';
|
||||||
|
|
||||||
|
// Load translation for "JED Checker" title from sys.ini file
|
||||||
|
JFactory::getLanguage()->load('com_jedchecker.sys', JPATH_ADMINISTRATOR);
|
||||||
|
|
||||||
$this->setToolbar();
|
$this->setToolbar();
|
||||||
$this->jsOptions['url'] = JUri::base();
|
$this->jsOptions['url'] = JUri::base();
|
||||||
$this->jsOptions['rules'] = $this->getRules();
|
$this->jsOptions['rules'] = $this->getRules();
|
||||||
@ -91,7 +94,8 @@ class JedcheckerViewUploads extends JViewLegacy
|
|||||||
JToolbarHelper::custom('check', 'search', 'search', JText::_('COM_JEDCHECKER_TOOLBAR_CHECK'), false);
|
JToolbarHelper::custom('check', 'search', 'search', JText::_('COM_JEDCHECKER_TOOLBAR_CHECK'), false);
|
||||||
}
|
}
|
||||||
|
|
||||||
JToolbarHelper::title('JED checker');
|
JToolbarHelper::title(JText::_('COM_JEDCHECKER'));
|
||||||
|
|
||||||
if ( file_exists($this->path) )
|
if ( file_exists($this->path) )
|
||||||
{
|
{
|
||||||
JToolbarHelper::custom('uploads.clear', 'delete', 'delete', JText::_('COM_JEDCHECKER_TOOLBAR_CLEAR'), false);
|
JToolbarHelper::custom('uploads.clear', 'delete', 'delete', JText::_('COM_JEDCHECKER_TOOLBAR_CLEAR'), false);
|
||||||
|
Loading…
Reference in New Issue
Block a user