You've already forked joomla_test
first commit
This commit is contained in:
22
modules/mod_languages/mod_languages.php
Normal file
22
modules/mod_languages/mod_languages.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage mod_languages
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
// Include the syndicate functions only once
|
||||
require_once __DIR__ . '/helper.php';
|
||||
|
||||
$headerText = JString::trim($params->get('header_text'));
|
||||
$footerText = JString::trim($params->get('footer_text'));
|
||||
|
||||
$list = ModLanguagesHelper::getList($params);
|
||||
|
||||
$moduleclass_sfx = htmlspecialchars($params->get('moduleclass_sfx'));
|
||||
|
||||
require JModuleHelper::getLayoutPath('mod_languages', $params->get('layout', 'default'));
|
Reference in New Issue
Block a user