2015-05-18 14:26:29 +02:00
|
|
|
<?php namespace Todaymade\Daux\Format\Base;
|
|
|
|
|
|
|
|
interface Page
|
|
|
|
{
|
2016-03-13 21:51:15 +01:00
|
|
|
/**
|
|
|
|
* Get the converted content, without any template
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getPureContent();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the full content
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2015-05-18 14:26:29 +02:00
|
|
|
public function getContent();
|
|
|
|
}
|