]> dev.renevier.net Git - syj.git/blob - application/controllers/TermsofuseController.php
version 0.1
[syj.git] / application / controllers / TermsofuseController.php
1 <?php
2 /*  This file is part of Syj, Copyright (c) 2010 Arnaud Renevier,
3     and is published under the AGPL license. */
4
5 class TermsofuseController extends Zend_Controller_Action
6 {
7     public function indexAction() {
8         $this->view->headLink()->appendStylesheet('css/generic.css');
9         $this->view->headLink()->appendStylesheet('css/termsofuse.css');
10         $this->view->headScript()->appendFile('js/prototype.js');
11         $this->view->headScript()->appendFile('js/termsofuse.js');
12         $this->view->headTitle($this->view->translate("terms of use"));
13     }
14 }