ContentNegotiator
class ContentNegotiator (View source)
The content negotiator performs "text/html" or "application/xhtml+xml" switching. It does this through the public static function ContentNegotiator::process(). By default, ContentNegotiator will comply to the Accept headers the clients sends along with the HTTP request, which is most likely "application/xhtml+xml" (see "Order of selection" below).
Order of selection between html or xhtml is as follows:
- if PHP has already sent the HTTP headers, default to "html" (we can't send HTTP Content-Type headers any longer)
- if a GET variable ?forceFormat is set, it takes precedence (for testing purposes)
- if the user agent is detected as W3C Validator we always deliver "xhtml"
- if an HTTP Accept header is sent from the client, we respect its order (this is the most common case)
- if none of the above matches, fallback is "html"
ContentNegotiator doesn't enable you to send content as a true XML document through the "text/xml" or "application/xhtml+xml" Content-Type.
Please see http://webkit.org/blog/68/understanding-html-xml-and-xhtml/ for further information.
Traits
A class that can be instantiated or replaced via DI
Provides extensions to this object to integrate it with standard config API methods.
Config options
content_type | string | ||
encoding | string | ||
enabled | bool | ||
default_format | string |
Properties
protected static | bool | $current_enabled |
Methods
An implementation of the factory method, allows you to create an instance of a class
Creates a class instance by the "singleton" design pattern.
Get a configuration accessor for this class. Short hand for Config::inst()->get($this->class, .....).
Gets the uninherited value for the given config option
Returns true if negotiation is enabled for the given response. By default, negotiation is only enabled for pages that have the xml header.
Gets the current enabled status, if it is not set this will fallback to config
Check user defined content type and use it, if it's empty use the strict application/xhtml+xml.
Performs the following replacements:
- Check user defined content type and use it, if it's empty use the text/html.
Details
static Injectable
create(mixed ...$args)
An implementation of the factory method, allows you to create an instance of a class
This method will defer class substitution to the Injector API, which can be customised via the Config API to declare substitution classes.
This can be called in one of two ways - either calling via the class directly, or calling on Object and passing the class name as the first parameter. The following are equivalent: $list = DataList::create(SiteTree::class); $list = SiteTree::get();
static Injectable
singleton(string $class = null)
Creates a class instance by the "singleton" design pattern.
It will always return the same instance for this class, which can be used for performance reasons and as a simple way to access instance methods which don't rely on instance data (e.g. the custom SilverStripe static handling).
static Config_ForClass
config()
Get a configuration accessor for this class. Short hand for Config::inst()->get($this->class, .....).
mixed
stat(string $name)
deprecated
deprecated
Get inherited config value
mixed
uninherited(string $name)
Gets the uninherited value for the given config option
$this
set_stat(string $name, mixed $value)
deprecated
deprecated
Update the config value for a given property
static bool
enabled_for(HTTPResponse $response)
Returns true if negotiation is enabled for the given response. By default, negotiation is only enabled for pages that have the xml header.
static bool
getEnabled()
Gets the current enabled status, if it is not set this will fallback to config
static
setEnabled(bool $enabled)
Sets the current enabled status
static
process(HTTPResponse $response)
No description
xhtml(HTTPResponse $response)
Check user defined content type and use it, if it's empty use the strict application/xhtml+xml.
Replaces a few common tags and entities with their XHTML representations (
, ,
, checked, selected).
html(HTTPResponse $response)
Performs the following replacements:
- Check user defined content type and use it, if it's empty use the text/html.
- If find a XML header replaces it and existing doctypes with HTML4.01 Strict.
- Replaces self-closing tags like with unclosed solitary tags like .
- Replaces all occurrences of "application/xhtml+xml" with "text/html" in the template.
- Removes "xmlns" attributes and any <?xml> Pragmas.