Exemplo n.º 1
0
}
if ($op == 'action_show') {
    /**
     * display action
     */
    require_once NOALYSS_INCLUDE . '/class_follow_up.php';
    $gestion = new Follow_Up($cn);
    $array = $gestion->get_last(25);
    $len_array = count($array);
    require_once NOALYSS_INCLUDE . '/template/action_show.php';
    return;
}
if ($op == 'action_add') {
    require_once NOALYSS_INCLUDE . '/class_follow_up.php';
    $gestion = new Follow_Up($cn);
    $gestion->display_short();
    return;
}
if ($op == 'action_save') {
    require_once NOALYSS_INCLUDE . '/class_follow_up.php';
    /**
     * save info from the get
     */
    $date_event = HtmlInput::default_value_get("date_event", -1);
    $dest = HtmlInput::default_value_get("dest", "");
    $event_group = HtmlInput::default_value_get("event_group", 0);
    $event_priority = HtmlInput::default_value_get("event_priority", 0);
    $title = HtmlInput::default_value_get("title_event", NULL);
    $summary = HtmlInput::default_value_get("summary", "");
    $type_event = HtmlInput::default_value_get('type_event', -1);
    /*