public
Description: Midgard Components Framework 3rd generation
Homepage: http://www.midgard-project.org
Clone URL: git://github.com/bergie/midcom.git
midcom / midcom_core / services / templating.php
100644 32 lines (29 sloc) 0.833 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
* @package midcom_core
* @author The Midgard Project, http://www.midgard-project.org
* @copyright The Midgard Project, http://www.midgard-project.org
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
*/
 
/**
* Templating interface for MidCOM 3
*
* @package midcom_core
*/
interface midcom_core_services_templating
{
    /**
* Include the template based on either global or controller-specific template entry point.
*/
    public function template();
    
    /**
* Include the content template based on either global or controller-specific template entry point.
public function content();*/
    
    /**
* Show the loaded contents using the template engine
*
* @param string $content Content to display
*/
    public function display();
}
?>