get('folders.data'), 'avisos.json' ]); $avisos = json_decode(trim(file_get_contents($filename))); $filename = implode(DIRECTORY_SEPARATOR, [ $container->get('folders.data'), 'destacados.json' ]); $destacados = json_decode(trim(file_get_contents($filename))); $filename = implode(DIRECTORY_SEPARATOR, [ $container->get('folders.data'), 'segmentos.json' ]); $segmentos = json_decode(trim(file_get_contents($filename))); array_walk($segmentos, function(&$item) use ($container) { if (!isset($item->imagen)) { $item->imagen = '
'; return; } $item->imagen = ''; }); $filename = implode(DIRECTORY_SEPARATOR, [ $container->get('folders.data'), 'resumen.json' ]); $resumen = json_decode(trim(file_get_contents($filename))); $indicadores = ['uf' => 'UF', 'euro' => 'Euro', 'imacec' => 'IMACEC', 'dolar' => 'USD', 'ipc' => 'IPC', 'utm' => 'UTM', 'bitcoin' => 'BitCoin', 'libra_cobre' => 'Lb. Cu']; return $view->render($response, 'home', compact('avisos', 'destacados', 'segmentos', 'resumen', 'indicadores')); } }