X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=notification_add.php;h=05b6ce0c3ccc7e517891aa916eee2c2bc7bc4d10;hb=60d2288b7fca6caf0f5d9d3eee972f040eb24fb0;hp=4d1b457c497662997856594c942fbe74007e1656;hpb=098a79f0819ebb89b7d48df4a6b154af4560f68e;p=timetracker.git diff --git a/notification_add.php b/notification_add.php index 4d1b457c..05b6ce0c 100644 --- a/notification_add.php +++ b/notification_add.php @@ -34,14 +34,14 @@ import('ttFavReportHelper'); import('ttNotificationHelper'); // Access check. -if (!ttAccessCheck(right_manage_team)) { +if (!ttAccessCheck(right_manage_team) || !$user->isPluginEnabled('no')) { header('Location: access_denied.php'); exit(); } $fav_reports = ttFavReportHelper::getReports($user->id); -if ($request->getMethod() == 'POST') { +if ($request->isPost()) { $cl_fav_report = trim($request->getParameter('fav_report')); $cl_cron_spec = trim($request->getParameter('cron_spec')); $cl_email = trim($request->getParameter('email')); @@ -62,16 +62,16 @@ $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'cron_spec','sty $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'email','style'=>'width: 250px;','value'=>$cl_email)); $form->addInput(array('type'=>'submit','name'=>'btn_add','value'=>$i18n->getKey('button.add'))); -if ($request->getMethod() == 'POST') { +if ($request->isPost()) { // Validate user input. - if (!$cl_fav_report) $errors->add($i18n->getKey('error.report')); - if (!ttValidCronSpec($cl_cron_spec)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.cron_schedule')); - if (!ttValidEmail($cl_email)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.email')); + if (!$cl_fav_report) $err->add($i18n->getKey('error.report')); + if (!ttValidCronSpec($cl_cron_spec)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.cron_schedule')); + if (!ttValidEmail($cl_email)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.email')); + + if ($err->no()) { + // Calculate next execution time. + $next = tdCron::getNextOccurrence($cl_cron_spec, mktime()); - if ($errors->isEmpty()) { - // Calculate next execution time. - $next = tdCron::getNextOccurrence($cl_cron_spec, mktime()); - if (ttNotificationHelper::insert(array( 'team_id' => $user->team_id, 'cron_spec' => $cl_cron_spec, @@ -82,13 +82,11 @@ if ($request->getMethod() == 'POST') { header('Location: notifications.php'); exit(); } else - $errors->add($i18n->getKey('error.db')); + $err->add($i18n->getKey('error.db')); } -} // post +} // isPost $smarty->assign('forms', array($form->getName()=>$form->toArray())); -// $smarty->assign('onload', 'onLoad="document.clientForm.name.focus()"'); $smarty->assign('title', $i18n->getKey('title.add_notification')); $smarty->assign('content_page_name', 'notification_add.tpl'); $smarty->display('index.tpl'); -?> \ No newline at end of file