You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
397 B

  1. <?php
  2. class AboutController extends BaseController {
  3. function load() {
  4. $this->session_only = false;
  5. }
  6. function dispatch() {
  7. $this->page->setTitle(t('%s - About', APP_TITLE));
  8. $this->page->menuAddLink(t('Home'), 'main');
  9. $this->page->menuAddLink(t('Discover'), 'discover');
  10. $this->page->menuAddLink(t('About'), 'about', true);
  11. }
  12. }