Commit 648b8f2bd5f88aa2e4b5b21ed9a6cdf256e8194a
1 parent
169c8dd4
....
Showing
1 changed file
with
23 additions
and
0 deletions
Show diff stats
| 1 | +<?php | |
| 2 | + | |
| 3 | +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | |
| 4 | + | |
| 5 | +namespace controllers; | |
| 6 | + | |
| 7 | +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | |
| 8 | +use \Phalcon\Mvc\View; | |
| 9 | + | |
| 10 | +class FaqController extends \controllers\ControllerBase | |
| 11 | +{ | |
| 12 | + /////////////////////////////////////////////////////////////////////////// | |
| 13 | + | |
| 14 | + public function IndexAction( ) | |
| 15 | + { | |
| 16 | + $lang_url = $this->seoUrl->getChangeLangUrl(); | |
| 17 | + $this->view->setVars([ | |
| 18 | + 'change_lang_url' => $lang_url, | |
| 19 | + ]); | |
| 20 | + } | |
| 21 | + | |
| 22 | +} | |
| 23 | + | |
| 0 | 24 | \ No newline at end of file | ... | ... |