jablonka.czprosek.czf

freenet-router

Subversion Repositories:
[/] [trunk/] [freenet-router/] [var/] [www/] [freenet-router/] [Framework/] [Views/] [View.php] - Blame information for rev 2

 

Line No. Rev Author Line
12simandl<?php
2 
3namespace Phem\Views;
4 
5use Phem\Core\Collection;
6 
7/**
8 *
9 * @author kubapet
10 */
11abstract class View
12{
13 protected $template;
14 protected $content;
15 
16 function __construct($template, Collection $content)
17 {
18 $this->template = $template;
19 $this->content = $content;
20 }
21 
22 public abstract function display();
23}

Powered by WebSVN 2.2.1