Example #1
0
 public static function index()
 {
     $texto = new Texto();
     $texto->selecionarPorId(1);
     $noticia = new Noticia();
     $noticias = $noticia->listar("destacado = 1", 'id DESC');
     $expositor = new Expositor();
     $expositores = $expositor->listar(null, 'posicao');
     self::$topo = "topo-principal";
     self::$corpo = "index";
     self::$variaveis = array('texto' => $texto, 'noticias' => $noticias, 'expositores' => $expositores);
     self::renderizar(self::$viewController);
 }