Esempio n. 1
0
                        $tplCategorias .= "<a href='?action=delcat&id=" . $cat['id_categoria'] . "' class='tooltip' title='Excluir'><img src='images/delete.png' /></a>";
                    }
                    $tplCategorias .= "</td></tr>";
                    $i++;
                }
                echo $tplCategorias;
            } else {
                echo "Nenhuma Categoria Cadastrada";
            }
            break;
            #RETORNA TODOS OS PONTOS DO GRÁFICO GERAL
        #RETORNA TODOS OS PONTOS DO GRÁFICO GERAL
        case 'getPontosGeral':
            $j = 0;
            for ($i = 7; $i <= 19; $i++) {
                $pontos .= $j . "@" . $relatorio->GetMediaAberturaPorHoraGeral($i) . "#";
                $j++;
            }
            echo substr($pontos, 0, -1);
            break;
            #RETORNA TODOS OS PONTOS DO GRÁFICO CATEGORIA
            /*case 'getPontosCategoria':
            		$j=0;
            		for($i=7;$i<=19;$i++){
            			$pontos.=  $j . "@" . $relatorio->GetMediaAberturaPorHoraCategoria($i) . "#";
            			$j++;
            		}
            			echo substr($pontos,0,-1);
            		break;*/
    }
}