Частичная синхронизация с CMS

This commit is contained in:
origami11 2017-02-17 16:22:44 +03:00
parent 312f18a20a
commit b26e521657
62 changed files with 827 additions and 5992 deletions

13
src/Layout/Empty.php Normal file
View file

@ -0,0 +1,13 @@
<?php
/**
* Самый простой макет
*/
class Layout_Empty extends Filter_Filter
{
function execute(HttpRequest $request)
{
$text = $this->processor->execute($request);
return $text;
}
}