/webtrees/app/Services/ |
H A D | CaptchaService.php | 23 use Fisharebest\Webtrees\Session; alias 51 Session::put('captcha-t', Registry::timeFactory()->now()); 52 Session::put('captcha-x', $x); 53 Session::put('captcha-y', $y); 54 Session::put('captcha-z', $z); 72 $t = Session::pull('captcha-t'); 73 $x = Session::pull('captcha-x'); 74 $y = Session::pull('captcha-y'); 75 $z = Session::pull('captcha-z');
|
H A D | ClipboardService.php | 24 use Fisharebest\Webtrees\Session; alias 46 $clipboard = Session::get('clipboard'); 59 Session::put('clipboard', $clipboard); 72 $clipboard = Session::get('clipboard'); 92 Session::put('clipboard', []); 104 $clipboard = Session::get('clipboard'); 123 $clipboard = Session::get('clipboard');
|
/webtrees/app/Module/ |
H A D | ClippingsCartModule.php | 49 use Fisharebest\Webtrees\Session; alias 137 $cart = Session::get('cart'); 190 $cart = Session::get('cart'); 237 $cart = Session::get('cart'); 298 $cart = Session::get('cart'); 302 Session::put('cart', $cart); 317 $cart = Session::get('cart'); 321 Session::put('cart', $cart); 349 $cart = Session::get('cart'); 767 $cart = Session::get('cart'); [all …]
|
H A D | HitCountFooterModule.php | 33 use Fisharebest\Webtrees\Session; alias 165 Session::get('last_page_name') === $page && 166 Session::get('last_page_parameter') === $parameter && 167 Session::get('last_gedcom_id') === $tree->id() 169 return (int) Session::get('last_count'); 188 Session::put('last_gedcom_id', $tree->id()); 189 Session::put('last_page_name', $page); 190 Session::put('last_page_parameter', $parameter); 191 Session::put('last_count', $count);
|
H A D | ColorsTheme.php | 25 use Fisharebest\Webtrees\Session; alias 95 Session::put('palette', $palette); 198 $palette = Session::get('palette');
|
H A D | AbstractIndividualListModule.php | 30 use Fisharebest\Webtrees\Session; alias 268 <?php if (Session::has('initiated')) : ?> 277 <?php if ($show !== 'none' && Session::has('initiated')) : ?> 403 if (Session::has('initiated')) {
|
/webtrees/app/Http/RequestHandlers/ |
H A D | RegisterAction.php | 36 use Fisharebest\Webtrees\Session; alias 107 Session::forget('register_comments'); 108 Session::forget('register_email'); 109 Session::forget('register_realname'); 110 Session::forget('register_username'); 114 Session::put('register_comments', $comments); 115 Session::put('register_email', $email); 116 Session::put('register_realname', $realname); 117 Session::put('register_username', $username);
|
H A D | RegisterPage.php | 26 use Fisharebest\Webtrees\Session; alias 63 $comments = Session::get('register_comments'); 66 $email = Session::get('register_email'); 69 $realname = Session::get('register_realname'); 72 $username = Session::get('register_username');
|
H A D | LoginAction.php | 30 use Fisharebest\Webtrees\Session; alias 137 Session::put('language', Auth::user()->getPreference(UserInterface::PREF_LANGUAGE)); 138 Session::put('theme', Auth::user()->getPreference(UserInterface::PREF_THEME));
|
H A D | SelectTheme.php | 23 use Fisharebest\Webtrees\Session; alias 50 Session::put('theme', $theme);
|
H A D | SelectLanguage.php | 23 use Fisharebest\Webtrees\Session; alias 50 Session::put('language', $language);
|
H A D | Masquerade.php | 26 use Fisharebest\Webtrees\Session; alias 66 Session::put('masquerade', '1');
|
H A D | SetupWizard.php | 38 use Fisharebest\Webtrees\Session; alias 428 Session::start($request); 430 Session::put('language', $data['lang']);
|
H A D | AccountUpdate.php | 26 use Fisharebest\Webtrees\Session; alias 109 Session::put('language', $language);
|
/webtrees/app/Http/Middleware/ |
H A D | UseSession.php | 25 use Fisharebest\Webtrees\Session; alias 61 Session::start($request); 66 if (Session::get('masquerade') === null) { 81 Session::save();
|
H A D | UseTheme.php | 26 use Fisharebest\Webtrees\Session; alias 61 Session::put('theme', $theme->name()); 80 …->first(static fn (ModuleThemeInterface $module): bool => $module->name() === Session::get('theme'…
|
H A D | UseLanguage.php | 28 use Fisharebest\Webtrees\Session; alias 64 Session::put('language', $language->locale()->languageTag()); 86 …LanguageInterface $module): bool => $module->locale()->languageTag() === Session::get('language'));
|
H A D | CheckCsrf.php | 28 use Fisharebest\Webtrees\Session; alias 62 $session_token = Session::get('CSRF_TOKEN');
|
/webtrees/app/ |
H A D | FlashMessages.php | 42 $messages = Session::get(self::FLASH_KEY); 50 Session::put(self::FLASH_KEY, $messages); 60 $messages = Session::pull(self::FLASH_KEY);
|
H A D | Auth.php | 159 $wt_user = Session::get('wt_user'); 185 Session::regenerate(); 186 Session::put('wt_user', $user->id()); 196 Session::regenerate(true);
|
H A D | GuestUser.php | 93 $preference = Session::get('_GUEST_' . $setting_name); 106 Session::put('_GUEST_' . $setting_name, $setting_value);
|
/webtrees/tests/app/Http/RequestHandlers/ |
H A D | MasqueradeTest.php | 26 use Fisharebest\Webtrees\Session; alias 56 self::assertSame('1', Session::get('masquerade')); 75 self::assertNull(Session::get('masquerade'));
|
/webtrees/tests/app/Module/ |
H A D | FixDuplicateLinksTest.php | 27 use Fisharebest\Webtrees\Session; alias 71 Session::forget('wt_user');
|
/webtrees/tests/app/ |
H A D | SessionTest.php | 30 self::assertTrue(class_exists(Session::class));
|
/webtrees/app/Helpers/ |
H A D | functions.php | 22 use Fisharebest\Webtrees\Session as WebtreesSession;
|