Частичная синхронизация с 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/View/list.php Normal file
View file

@ -0,0 +1,13 @@
<?php
class View_List extends View_View
{
function execute()
{
$result = array();
foreach ($this->_section as $key => $value) {
$result [] = $value->execute();
}
return $result;
}
}