blob: 4b5890def182eae158e6d8e8bc7e79744c5e04ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
class MainLayout extends TTemplateControl
{
public function onLoad($param)
{
parent::onLoad($param);
$this->languages->DataSource = TPropertyValue::ensureArray($this->Application->Parameters['languages']);
$this->languages->dataBind();
}
public function languageLinkCreated($sender, $param)
{
$item = $param->Item;
if($item->ItemType == TListItemType::Item || $item->ItemType == TListItemType::AlternatingItem)
{
$params = $this->Request->toArray();
$params['lang'] = $sender->DataKeys[$item->ItemIndex];
unset($params[$this->Request->ServiceID]);
$url = $this->Service->ConstructUrl($this->Service->RequestedPagePath, $params);
$item->link->NavigateUrl = $url;
if($this->Application->Globalization->Culture == $params['lang'])
$item->link->CssClass="active";
}
}
}
?>
|