/stationary/couch/extend/AppGui.php

http://zoop.googlecode.com/ · PHP · 11 lines · 9 code · 2 blank · 0 comment · 0 complexity · 309ef79c1127857b89e5062e0dead279 MD5 · raw file

  1. <?php
  2. class AppGui extends Gui
  3. {
  4. function fetch($tpl_file, $cache_id = null, $compile_id = null, $display = false)
  5. {
  6. $this->assign("TEMPLATE_CONTENT", $tpl_file);
  7. return parent::fetch('layouts/main.tpl', $cache_id, $compile_id, $display);
  8. }
  9. }