/
home
/
assocoweys
/
avexp
/
administrator
/
components
/
com_falang
/
models
/
Upload File
HOME
<?php /** * @package Falang for Joomla! * @author Stéphane Bouey <stephane.bouey@faboba.com> - http://www.faboba.com * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html * @copyright Copyright (C) 2010-2017. Faboba.com All rights reserved. */ // No direct access to this file defined('_JEXEC') or die; jimport( 'joomla.application.component.modellist' ); /** * This class extends JModel about some general methods used in all models of Falang * @package Falang * @subpackage JFModel */ class JFModel extends JModelList { /** * returns the default language of the frontend * @return object instance of the default language */ function getDefaultLanguage() { $params = JComponentHelper::getParams('com_languages'); return $params->get("site", 'en-GB'); } }