/**
* The about page
*
- * @desc Display the about informations
+ * Display the about informations
*
* @param Request $request The request instance
* @return Response The rendered view
/**
* The contact page
*
- * @desc Send a contact mail to configured contact
+ * Send a contact mail to configured contact
*
* @param Request $request The request instance
*
//Create the form according to the FormType created previously.
//And give the proper parameters
$form = $this->factory->create('Rapsys\AirBundle\Form\ContactType', $data, [
- 'action' => $this->generateUrl('rapsys_air_contact'),
+ 'action' => $this->generateUrl('rapsysair_contact'),
+ 'captcha' => true,
'method' => 'POST'
]);
/**
* The organizer regulation page
*
- * @desc Display the organizer regulation policy
+ * Display the organizer regulation policy
*
* @param Request $request The request instance
* @return Response The rendered view
/**
* The terms of service page
*
- * @desc Display the terms of service policy
+ * Display the terms of service policy
*
* @param Request $request The request instance
* @return Response The rendered view
/**
* The frequently asked questions page
*
- * @desc Display the frequently asked questions
+ * Display the frequently asked questions
*
* @param Request $request The request instance
* @return Response The rendered view
/**
* List all users
*
- * @desc Display all user with a group listed as users
+ * Display all user with a group listed as users
*
* @param Request $request The request instance
*
$this->context['title']['page'] = $this->translator->trans('Libre Air user list');
//Set section
- $this->context['title']['section'] = $this->translator->trans('Users');
+ $this->context['title']['section'] = $this->translator->trans('User');
//Set description
$this->context['description'] = $this->translator->trans('Lists Libre air users');
$this->context['title']['page'] = $this->translator->trans('Libre Air organizer list');
//Set section
- $this->context['title']['section'] = $this->translator->trans('Organizers');
+ $this->context['title']['section'] = $this->translator->trans('Organizer');
//Set description
$this->context['description'] = $this->translator->trans('Lists Libre air organizers');
/**
* List all sessions for the user
*
- * @desc Display all sessions for the user with an application or login form
+ * Display all sessions for the user with an application or login form
*
* @param Request $request The request instance
* @param int $id The user id
//With invalid user slug
if ($this->context['user']['slug'] !== $user) {
//Redirect to cleaned url
- return $this->redirectToRoute('rapsys_air_user_view', ['id' => $id, 'user' => $this->context['user']['slug']]);
+ return $this->redirectToRoute('rapsysair_user_view', ['id' => $id, 'user' => $this->context['user']['slug']]);
}
//Fetch calendar
$this->context['title']['page'] = $this->translator->trans('%pseudonym% organizer', ['%pseudonym%' => $this->context['user']['pseudonym']]);
//Set section
- $this->context['title']['section'] = $this->translator->trans('Users');
+ $this->context['title']['section'] = $this->translator->trans('User');
//With locations
if (!empty($locations)) {
//Without existing snippet
} else {
//Init snippet
- $current = new Snippet();
-
- //Set default locale
- $current->setLocale($this->locale);
-
- //Set default user
- $current->setUser($user);
-
- //Set default location
- $current->setLocation($this->doctrine->getRepository(Location::class)->findOneById($location['id']));
+ $current = new Snippet($this->locale, $this->doctrine->getRepository(Location::class)->findOneById($location['id']), $user);
}
//Create SnippetType form
$this->addFlash('notice', $this->translator->trans('Snippet for %user% %location% updated', ['%location%' => $location['at'], '%user%' => $this->context['user']['pseudonym']]));
//Redirect to cleaned url
- return $this->redirectToRoute('rapsys_air_user_view', ['id' => $id, 'user' => $this->context['user']['slug']]);
+ return $this->redirectToRoute('rapsysair_user_view', ['id' => $id, 'user' => $this->context['user']['slug']]);
}
//Add form to context
$this->addFlash('notice', $this->translator->trans('Image for %user% %location% deleted', ['%location%' => $location['at'], '%user%' => $this->context['user']['pseudonym']]));
//Redirect to cleaned url
- return $this->redirectToRoute('rapsys_air_user_view', ['id' => $id, 'user' => $this->context['user']['slug']]);
+ return $this->redirectToRoute('rapsysair_user_view', ['id' => $id, 'user' => $this->context['user']['slug']]);
}
}
$this->addFlash('notice', $this->translator->trans('Image for %user% %location% updated', ['%location%' => $location['at'], '%user%' => $this->context['user']['pseudonym']]));
//Redirect to cleaned url
- return $this->redirectToRoute('rapsys_air_user_view', ['id' => $id, 'user' => $this->context['user']['slug']]);
+ return $this->redirectToRoute('rapsysair_user_view', ['id' => $id, 'user' => $this->context['user']['slug']]);
}
}