PageRenderTime 57ms CodeModel.GetById 32ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/fe/modules/dir.module.php

https://github.com/traviskuhl/twittangle
PHP | 25 lines | 11 code | 12 blank | 2 comment | 0 complexity | ffaaca988def16596bcb031e8beb285f MD5 | raw file
  1. <?php
  2. class dir extends Tangle {
  3. public function __construct() {
  4. // arent
  5. parent::__construct();
  6. // body class
  7. $this->bodyClass = 'dir';
  8. }
  9. public function main() {
  10. include( $this->tmpl('dir/index') );
  11. }
  12. }
  13. ?>