aluno.inc

<?
    $action = $context->ShiftAction();
    $navbar->AddOption('Aluno', 'exemplo', 'main:aluno:find');
    switch($action)
    {
        case 'find':
            $MIOLO->InvokeHandler($module, 'aluno/find');
            break;
        case 'new':
            $MIOLO->InvokeHandler($module, 'aluno/new');
            break;
        case 'matricular':
            $MIOLO->InvokeHandler($module, 'aluno/matricular');
            break;
        default:
            $MIOLO->InvokeHandler($module, 'aluno/main');
            break;
    }
?>