ACC SHELL

Path : /srv/www/vhosts/toptisk/application/controllers/
File Upload :
Current File : /srv/www/vhosts/toptisk/application/controllers/DownloadController.php

<?php

class DownloadController extends Mine_Controller_FrontendController
{
    public function  init()
    {
        parent::init();
        $this->view->active = 'download';        
        $this->view->banner = array('typ' => 'image', 'file' => 'oko.jpg');     //default banner
    }
    
    public function indexAction()
    {
        $this->view->title = $this->view->translate('other-menu-download');
        $this->view->vop = $this->_getVOPFileName();
    }
    
    private function _getVOPFileName()
    {
        switch ($this->view->lang)
        {
            case "cs":
                return "VOP.pdf";
            case "en":
                return "ToS.pdf";
            case "de":
                return "AGB.pdf";
            default:
                break;
        }
    }
}


ACC SHELL 2018