45 lines
799 B
PHP
45 lines
799 B
PHP
<?php
|
|
|
|
class BlockLanguages extends Module
|
|
{
|
|
function __construct()
|
|
{
|
|
$this->name = 'blocklanguages';
|
|
$this->tab = 'Blocks';
|
|
$this->version = 0.1;
|
|
|
|
parent::__construct();
|
|
|
|
$this->displayName = $this->l('Language block');
|
|
$this->description = $this->l('Adds a block for selecting a language');
|
|
}
|
|
|
|
function install()
|
|
{
|
|
if (!parent::install())
|
|
return false;
|
|
if (!$this->registerHook('top'))
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Returns module content for header
|
|
*
|
|
* @param array $params Parameters
|
|
* @return string Content
|
|
*/
|
|
function hookTop($params)
|
|
{
|
|
global $smarty;
|
|
$languages = Language::getLanguages();
|
|
if (!sizeof($languages))
|
|
return '';
|
|
$smarty->assign('languages', $languages);
|
|
return $this->display(__FILE__, 'blocklanguages.tpl');
|
|
}
|
|
|
|
}
|
|
|
|
?>
|