Case study of migration from 1000 KLOC size legacy system into distributed architecture with use of Symfony2 framework.
Like it? Hate it? Leave your comment on https://joind.in/10257
View Slide
class Resources{//.../*** @url GET /{urlId}*/public function getResource($urlId){$params = array('id' => $urlId);$this->fw->executeAction('resources', 'show', $params);$smarty = $this->fw->getSmarty();$result = array('title' => $smarty->tpl_vars['res_title']->value,'description' => $smarty->tpl_vars['res_descr']->value,);return $result;}}