isPluginEnabled('no')) { header('Location: feature_disabled.php'); exit(); } $form = new Form('notificationsForm'); if ($request->isPost()) { if ($request->getParameter('btn_add')) { // The Add button clicked. Redirect to notification_add.php page. header('Location: notification_add.php'); exit(); } } else { $form->addInput(array('type'=>'submit','name'=>'btn_add','value'=>$i18n->get('button.add'))); $notifications = ttTeamHelper::getNotifications($user->team_id); } $smarty->assign('forms', array($form->getName()=>$form->toArray())); $smarty->assign('notifications', $notifications); $smarty->assign('title', $i18n->get('title.notifications')); $smarty->assign('content_page_name', 'notifications.tpl'); $smarty->display('index.tpl');