implicit class ResultWithLang extends AnyRef

Adds convenient methods to handle the client-side language.

This class exists only for backward compatibility.

Source
Results.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ResultWithLang
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ResultWithLang(result: Result)(implicit messagesApi: MessagesApi)

Value Members

  1. def withLang(lang: Lang): Result

    Sets the user's language permanently for future requests by storing it in a cookie.

    Sets the user's language permanently for future requests by storing it in a cookie.

    For example:

    implicit val lang = Lang("fr-FR")
    Ok(Messages("hello.world")).withLang(lang)
    lang

    the language to store for the user

    returns

    the new result

  2. def withoutLang: Result

    Reset the user's language by discarding the language cookie set by withLang

    Reset the user's language by discarding the language cookie set by withLang

    For example:

    Ok(Messages("hello.world")).withoutLang
    returns

    the new result

Deprecated Value Members

  1. def clearingLang: Result
    Annotations
    @deprecated
    Deprecated

    (Since version 2.9.0) Use withoutLang