blob: 1d153fc32b01ed15587b41678ddea3eced6ca3e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<? $languages = Config::get()->INSTALLED_LANGUAGES ?>
<? if (count($languages) > 1): ?>
<div style="width: 100%; text-align: right;">
<? foreach ($languages as $language) : ?>
<a data-dialog="size=auto;title='<?= htmlReady($stg->getDisplayName()) ?>'" href="<?= $controller->action_link('description/' . $stg->id . '/', array('display_language' => $language)) ?>">
<img src="<?= Assets::image_path('languages/' . $language['picture']) ?>" width="24" alt="<?= $language['name'] ?>" title="<?= $language['name'] ?>">
</a>
<? endforeach; ?>
</div>
<? endif; ?>
<?= $this->render_partial('shared/studiengang/_studiengang_info') ?>
|