component/admin/views/languages/view.html.php 1 location
|
@@ 47-52 (lines=6) @@
|
44 |
|
$this->state = $this->get('State'); |
45 |
|
$this->form = $this->get('Form'); |
46 |
|
|
47 |
|
if (version_compare(JVERSION, $this->minCmsVersion, 'lt')) |
48 |
|
{ |
49 |
|
JFactory::getApplication()->enqueueMessage(JText::sprintf('COM_LOCALISE_ERROR_INSTALL_JVERSION', $this->minCmsVersion), 'warning'); |
50 |
|
|
51 |
|
return false; |
52 |
|
} |
53 |
|
|
54 |
|
LocaliseHelper::addSubmenu('languages'); |
55 |
|
|
component/admin/views/packages/view.html.php 1 location
|
@@ 49-54 (lines=6) @@
|
46 |
|
$this->form = $this->get('Form'); |
47 |
|
$this->file = $app->input->get('file'); |
48 |
|
|
49 |
|
if (version_compare(JVERSION, $this->minCmsVersion, 'lt')) |
50 |
|
{ |
51 |
|
JFactory::getApplication()->enqueueMessage(JText::sprintf('COM_LOCALISE_ERROR_INSTALL_JVERSION', $this->minCmsVersion), 'warning'); |
52 |
|
|
53 |
|
return false; |
54 |
|
} |
55 |
|
|
56 |
|
LocaliseHelper::addSubmenu('packages'); |
57 |
|
|
component/admin/views/translations/view.html.php 1 location
|
@@ 50-55 (lines=6) @@
|
47 |
|
$this->filterForm = $this->get('FilterForm'); |
48 |
|
$this->activeFilters = $this->get('ActiveFilters'); |
49 |
|
|
50 |
|
if (version_compare(JVERSION, $this->minCmsVersion, 'lt')) |
51 |
|
{ |
52 |
|
JFactory::getApplication()->enqueueMessage(JText::sprintf('COM_LOCALISE_ERROR_INSTALL_JVERSION', $this->minCmsVersion), 'warning'); |
53 |
|
|
54 |
|
return false; |
55 |
|
} |
56 |
|
|
57 |
|
LocaliseHelper::addSubmenu('translations'); |
58 |
|
|