<?php    
class ControllerNewsShortcutRoute extends Controller {   
  	protected function index() {
		$this->load->language('news/shortcut');
		
		$this->data['route']= $this->request->get['route'];		
		$this->data['text_category'] = $this->language->get('text_category');
		$this->data['text_article'] = $this->language->get('text_article');
		$this->data['text_poll'] = $this->language->get('text_poll');
		$this->data['text_author'] = $this->language->get('text_author');
		$this->data['text_download'] = $this->language->get('text_download');
		$this->data['text_comment'] = $this->language->get('text_comment');
		$this->data['text_setting'] = $this->language->get('text_setting');
		$this->data['text_newsinfo'] = $this->language->get('text_newsinfo');
		
		$this->data['category'] = $this->url->link('news/category', 'token=' . $this->session->data['token'], 'SSL');
		$this->data['article'] = $this->url->link('news/article', 'token=' . $this->session->data['token'], 'SSL');
		$this->data['poll'] = $this->url->link('news/poll', 'token=' . $this->session->data['token'], 'SSL');
		$this->data['author'] = $this->url->link('news/author', 'token=' . $this->session->data['token'], 'SSL');
		$this->data['download'] = $this->url->link('news/download', 'token=' . $this->session->data['token'], 'SSL');
		$this->data['comment'] = $this->url->link('news/comment', 'token=' . $this->session->data['token'], 'SSL');
		$this->data['setting'] = $this->url->link('module/article_all_settings/settings', 'token=' . $this->session->data['token'], 'SSL');
		$this->data['general'] = $this->url->link('module/article_all_settings/info', 'token=' . $this->session->data['token'], 'SSL');
		
		
		$this->template = 'news/shortcut_route.tpl';
	
    	$this->render();
  	}
}
?>