Interface IConstants
Direct known implementers
MvcCore\IViewinteger |
RENDER_WITH_OB_FROM_ACTION_TO_LAYOUT
Default rendering mode. Render action view first into output buffer, then render layout view wrapped around rendered action view string also into output buffer. Then set up rendered content from output buffer into response object and then send HTTP headers and content after all. |
#
0b01
|
integer |
RENDER_WITHOUT_OB_CONTINUOUSLY
Special rendering mode to continuously sent larger data to client. Render layout view and render action view together inside it without output buffering. There is not used reponse object body property for this rendering mode. Http headers are sent before view rendering. |
#
0b10
|
string |
DOCTYPE_HTML4
View output document type HTML4. |
#
'HTML4'
|
string |
DOCTYPE_XHTML
View output document type XHTML. |
#
'XHTML'
|
string |
DOCTYPE_HTML5
View output document type HTML5. |
#
'HTML5'
|
string |
DOCTYPE_XML
View output document type for any XML file. |
#
'XML'
|
string |
HELPERS_INTERFACE_CLASS_NAME
MvcCore extension class name for view helpers. Helpers view implementing this interface could have better setup. |
#
'MvcCore\\Ext\\Views\\Helpers\\IHelper'
|