| 1 | <?php  | 
            ||
| 26 | abstract class AbstractPageLayoutView extends AbstractViewModel implements ViewModel\PageLayoutView  | 
            ||
| 27 | { | 
            ||
| 28 | |||
| 29 | /**  | 
            ||
| 30 | * @var array  | 
            ||
| 31 | */  | 
            ||
| 32 | protected $variables = [  | 
            ||
| 33 | 'body_html' => NULL,  | 
            ||
| 34 | 'title' => NULL,  | 
            ||
| 35 | ];  | 
            ||
| 36 | |||
| 37 | /**  | 
            ||
| 38 | * @param string $title  | 
            ||
| 39 | *  | 
            ||
| 40 | * @return void  | 
            ||
| 41 | */  | 
            ||
| 42 | public function setTitle($title)  | 
            ||
| 46 | |||
| 47 | /**  | 
            ||
| 48 | * @param string $html  | 
            ||
| 49 | *  | 
            ||
| 50 | * @return void  | 
            ||
| 51 | */  | 
            ||
| 52 | public function setBodyHTML($html)  | 
            ||
| 56 | |||
| 57 | }  | 
            ||
| 58 |