Class JsonView
A view class that is used for JSON responses.
It allows you to omit templates if you just need to emit JSON string as response.
In your controller, you could do the following:
$this->set(['posts' => $posts]); $this->set('_serialize', true);
When the view is rendered, the $posts view variable will be serialized into JSON.
You can also set multiple view variables for serialization. This will create a top level object containing all the named view variables:
$this->set(compact('posts', 'users', 'stuff')); $this->set('_serialize', true);
The above would generate a JSON object that looks like:
{"posts": [...], "users": [...]}
You can also set '_serialize' to a string or array to serialize only the specified view variables.
If you don't use the _serialize, you will need a view template. You can use extended views to provide layout-like functionality.
You can also enable JSONP support by setting parameter _jsonp to true or a string to specify custom query string parameter name which will contain the callback function name.
- Cake\View\View implements Cake\Event\EventDispatcherInterface uses Cake\View\CellTrait, Cake\Event\EventDispatcherTrait, Cake\Log\LogTrait, Cake\Routing\RequestActionTrait, Cake\View\ViewVarsTrait
-
Cake\View\SerializedView -
Cake\View\JsonView
Method Detail
_dataToSerializesource protected
_dataToSerialize( array|string|boolean $serialize true )
Returns data to be serialized.
Parameters
- array|string|boolean
$serializeoptional true - The name(s) of the view variable(s) that need(s) to be serialized. If true all available view variables will be used.
Returns
mixedThe data to serialize.
_serializesource protected
_serialize( array|string|boolean $serialize )
Serialize view vars
Special parameters
_jsonOptions You can set custom options for json_encode() this way, e.g. JSON_HEX_TAG | JSON_HEX_APOS.
Parameters
- array|string|boolean
$serialize - The name(s) of the view variable(s) that need(s) to be serialized. If true all available view variables.
Returns
stringThe serialized data
rendersource public
render( string|null $view null , string|null $layout null )
Render a JSON view.
Special parameters
_serialize To convert a set of view variables into a JSON response. Its value can be a string for single variable name or array for multiple names. If true all view variables will be serialized. It unset normal view template will be rendered. _jsonp Enables JSONP support and wraps response in callback function provided in query string. - Setting it to true enables the default query string parameter "callback". - Setting it to a string value, uses the provided query string parameter for finding the JSONP callback name.
Parameters
- string|null
$viewoptional null - The view being rendered.
- string|null
$layoutoptional null - The layout being rendered.
Returns
string|nullThe rendered view.
Throws
Cake\Core\Exception\ExceptionIf there is an error in the view.
Overrides
Cake\View\SerializedView::render() Methods inherited from Cake\View\SerializedView
__constructsource public
__construct( Cake\Network\Request $request null , Cake\Network\Response $response null , Cake\Event\EventManager $eventManager null , array $viewOptions [] )
Constructor
Parameters
-
Cake\Network\Request$requestoptional null - Request instance.
-
Cake\Network\Response$responseoptional null - Response instance.
-
Cake\Event\EventManager$eventManageroptional null - EventManager instance.
- array
$viewOptionsoptional [] - An array of view options
Overrides
Cake\View\View::__construct() loadHelperssource public
loadHelpers( )
Load helpers only if serialization is disabled.
Overrides
Cake\View\View::loadHelpers() Methods inherited from Cake\View\View
__getsource public
__get( string $name )
Magic accessor for helpers.
Parameters
- string
$name - Name of the attribute to get.
Returns
mixedmixed
__setsource public
__set( string $name , mixed $value )
Magic setter for deprecated properties.
Parameters
- string
$name - Name to property.
- mixed
$value - Value for property.
_checkFilePathsource protected
_checkFilePath( string $file , string $path )
Check that a view file path does not go outside of the defined template paths.
Only paths that contain .. will be checked, as they are the ones most likely to have the ability to resolve to files outside of the template paths.
Parameters
- string
$file - The path to the template file.
- string
$path - Base path that $file should be inside of.
Returns
stringThe file path
Throws
InvalidArgumentException\InvalidArgumentException
_elementCachesource protected
_elementCache( string $name , array $data , array $options )
Generate the cache configuration options for an element.
Parameters
- string
$name - Element name
- array
$data - Data
- array
$options - Element options
Returns
arrayElement Cache configuration.
_evaluatesource protected
_evaluate( string $viewFile , array $dataForView )
Sandbox method to evaluate a template / view script in.
Parameters
- string
$viewFile - Filename of the view
- array
$dataForView - Data to include in rendered view. If empty the current View::$viewVars will be used.
Returns
stringRendered output
_getElementFileNamesource protected
_getElementFileName( string $name )
Finds an element filename, returns false on failure.
Parameters
- string
$name - The name of the element to find.
Returns
string|falseEither a string to the element filename or false when one can't be found.
_getLayoutFileNamesource protected
_getLayoutFileName( string|null $name null )
Returns layout filename for this template as a string.
Parameters
- string|null
$nameoptional null - The name of the layout to find.
Returns
stringFilename for layout file (.ctp).
Throws
Cake\View\Exception\MissingLayoutExceptionwhen a layout cannot be located
_getSubPathssource protected
_getSubPaths( string $basePath )
Find all sub templates path, based on $basePath If a prefix is defined in the current request, this method will prepend the prefixed template path to the $basePath, cascading up in case the prefix is nested. This is essentially used to find prefixed template paths for elements and layouts.
Parameters
- string
$basePath - Base path on which to get the prefixed one.
Returns
arrayArray with all the templates paths.
_getViewFileNamesource protected
_getViewFileName( string|null $name null )
Returns filename of given action's template file (.ctp) as a string. CamelCased action names will be under_scored by default. This means that you can have LongActionNames that refer to long_action_names.ctp views. You can change the inflection rule by overriding _inflectViewFileName.
Parameters
- string|null
$nameoptional null - Controller action to find template filename for
Returns
stringTemplate filename
Throws
Cake\View\Exception\MissingTemplateExceptionwhen a view file could not be found.
_inflectViewFileNamesource protected
_inflectViewFileName( string $name )
Change the name of a view template file into underscored format.
Parameters
- string
$name - Name of file which should be inflected.
Returns
stringFile name after conversion
_pathssource protected
_paths( string|null $plugin null , boolean $cached true )
Return all possible paths to find view files in order
Parameters
- string|null
$pluginoptional null - Optional plugin name to scan for view files.
- boolean
$cachedoptional true - Set to false to force a refresh of view paths. Default true.
Returns
arraypaths
_rendersource protected
_render( string $viewFile , array $data [] )
Renders and returns output for given template filename with its array of data. Handles parent/extended templates.
Parameters
- string
$viewFile - Filename of the view
- array
$dataoptional [] - Data to include in rendered view. If empty the current View::$viewVars will be used.
Returns
stringRendered output
Throws
LogicExceptionWhen a block is left open.
Triggers
View.beforeRenderFile $this, [$viewFile]View.afterRenderFile $this, [$viewFile, $content]
_renderElementsource protected
_renderElement( string $file , array $data , array $options )
Renders an element and fires the before and afterRender callbacks for it and writes to the cache if a cache is used
Parameters
- string
$file - Element file path
- array
$data - Data to render
- array
$options - Element options
Returns
stringstring
Triggers
View.beforeRender $this, [$file]View.afterRender $this, [$file, $element]
appendsource public
append( string $name , mixed $value null )
Append to an existing or new block.
Appending to a new block will create the block.
Parameters
- string
$name - Name of the block
- mixed
$valueoptional null - The content for the block.
See
Cake\View\ViewBlock::concat()assignsource public
assign( string $name , mixed $value )
Set the content for a block. This will overwrite any existing content.
Parameters
- string
$name - Name of the block
- mixed
$value - The content for the block.
See
Cake\View\ViewBlock::set()autoLayoutsource public
autoLayout( boolean $autoLayout null )
Turns on or off CakePHP's conventional mode of applying layout files. On by default. Setting to off means that layouts will not be automatically applied to rendered templates.
Parameters
- boolean
$autoLayoutoptional null - Boolean to turn on/off. If null returns current value.
Returns
boolean|nullbool|null
blockssource public
blocks( )
Get the names of all the existing blocks.
Returns
arrayAn array containing the blocks.
See
Cake\View\ViewBlock::keys()cachesource public
cache( callable $block , array $options [] )
Create a cached block of view logic.
This allows you to cache a block of view output into the cache defined in elementCache.
This method will attempt to read the cache first. If the cache is empty, the $block will be run and the output stored.
Parameters
- callable
$block - The block of code that you want to cache the output of.
- array
$optionsoptional [] - The options defining the cache key etc.
Returns
stringThe rendered content.
Throws
RuntimeExceptionWhen $options is lacking a 'key' option.
elementsource public
element( string $name , array $data [] , array $options [] )
Renders a piece of PHP with provided parameters and returns HTML, XML, or any other string.
This realizes the concept of Elements, (or "partial layouts") and the $params array is used to send data to be used in the element. Elements can be cached improving performance by using the cache option.
Parameters
- string
$name - Name of template file in the /src/Template/Element/ folder, or
MyPlugin.templateto use the template element from MyPlugin. If the element is not found in the plugin, the normal view path cascade will be searched. - array
$dataoptional [] - Array of data to be made available to the rendered view (i.e. the Element)
- array
$optionsoptional [] - Array of options. Possible keys are: -
cache- Can either betrue, to enable caching using the config in View::$elementCache. Or an array If an array, the following keys can be used: -config- Used to store the cached element in a custom cache configuration. -key- Used to define the key used in the Cache::write(). It will be prefixed withelement_-callbacks- Set to true to fire beforeRender and afterRender helper callbacks for this element. Defaults to false. -ignoreMissing- Used to allow missing elements. Set to true to not throw exceptions.
Returns
stringRendered Element
Throws
Cake\View\Exception\MissingElementExceptionWhen an element is missing and
ignoreMissing is false.elementExistssource public
elementExists( string $name )
Checks if an element exists
Parameters
- string
$name - Name of template file in the /src/Template/Element/ folder, or
MyPlugin.templateto check the template element from MyPlugin. If the element is not found in the plugin, the normal view path cascade will be searched.
Returns
booleanSuccess
endsource public
end( )
End a capturing block. The compliment to View::start()
See
Cake\View\ViewBlock::end()existssource public
exists( string $name )
Check if a block exists
Parameters
- string
$name - Name of the block
Returns
booleanbool
extendsource public
extend( string $name )
Provides template or element extension/inheritance. Views can extends a parent view and populate blocks in the parent template.
Parameters
- string
$name - The template or element to 'extend' the current one with.
Throws
LogicExceptionwhen you extend a template with itself or make extend loops.
LogicExceptionwhen you extend an element which doesn't exist
fetchsource public
fetch( string $name , string $default '' )
Fetch the content for a block. If a block is empty or undefined '' will be returned.
Parameters
- string
$name - Name of the block
- string
$defaultoptional '' - Default text
Returns
stringdefault The block content or $default if the block does not exist.
See
Cake\View\ViewBlock::get()getsource public
get( string $var , mixed $default null )
Returns the contents of the given View variable.
Parameters
- string
$var - The view var you want the contents of.
- mixed
$defaultoptional null - The default/fallback content of $var.
Returns
mixedThe content of the named var if its set, otherwise $default.
getVarssource public
getVars( )
Returns a list of variables available in the current View context
Returns
arrayArray of the set view variable names.
helperssource public
helpers( )
Get the helper registry in use by this View class.
Returns
Cake\View\HelperRegistry\Cake\View\HelperRegistry
initializesource public
initialize( )
Initialization hook method.
Properties like $helpers etc. cannot be initialized statically in your custom view class as they are overwritten by values from controller in constructor. So this method allows you to manipulate them as required after view instance is constructed.
layoutsource public
layout( string $name null )
Get/set the name of the layout file to render the template inside of. The name specified is the filename of the layout in /src/Template/Layout without the .ctp extension.
Parameters
- string
$nameoptional null - Layout file name to set. If null returns current name.
Returns
string|nullstring|null
layoutPathsource public
layoutPath( string $path null )
Get/set path for layout files.
Parameters
- string
$pathoptional null - Path for layout files. If null returns current path.
Returns
string|nullstring|null
loadHelpersource public
loadHelper( string $name , array $config [] )
Loads a helper. Delegates to the HelperRegistry::load() to load the helper
Parameters
- string
$name - Name of the helper to load.
- array
$configoptional [] - Settings for the helper
Returns
Cake\View\Helpera constructed helper object.
See
Cake\Core\ObjectRegistry::load()pluginSplitsource public
pluginSplit( string $name , boolean $fallback true )
Splits a dot syntax plugin name into its plugin and filename. If $name does not have a dot, then index 0 will be null. It checks if the plugin is loaded, else filename will stay unchanged for filenames containing dot
Parameters
- string
$name - The name you want to plugin split.
- boolean
$fallbackoptional true - If true uses the plugin set in the current Request when parsed plugin is not loaded
Returns
arrayArray with 2 indexes. 0 => plugin name, 1 => filename
prependsource public
prepend( string $name , mixed $value )
Prepend to an existing or new block.
Prepending to a new block will create the block.
Parameters
- string
$name - Name of the block
- mixed
$value - The content for the block.
See
Cake\View\ViewBlock::concat()renderLayoutsource public
renderLayout( string $content , string|null $layout null )
Renders a layout. Returns output from _render(). Returns false on error. Several variables are created for use in layout.
Parameters
- string
$content - Content to render in a template, wrapped by the surrounding layout.
- string|null
$layoutoptional null - Layout name
Returns
mixedRendered output, or false on error
Throws
Cake\Core\Exception\Exceptionif there is an error in the view.
Triggers
View.beforeLayout $this, [$layoutFileName]View.afterLayout $this, [$layoutFileName]
resetsource public
reset( string $name )
Reset the content for a block. This will overwrite any existing content.
Parameters
- string
$name - Name of the block
See
Cake\View\ViewBlock::set()startsource public
start( string $name )
Start capturing output for a 'block'
You can use start on a block multiple times to append or prepend content in a capture mode.
// Append content to an existing block. $this->start('content'); echo $this->fetch('content'); echo 'Some new content'; $this->end(); // Prepend content to an existing block $this->start('content'); echo 'Some new content'; echo $this->fetch('content'); $this->end();
Parameters
- string
$name - The name of the block to capture for.
See
Cake\View\ViewBlock::start()templatesource public
template( string $name null )
Get/set the name of the template file to render. The name specified is the filename in /src/Template/<SubFolder> without the .ctp extension.
Parameters
- string
$nameoptional null - Template file name to set. If null returns current name.
Returns
string|nullstring|null
templatePathsource public
templatePath( string $path null )
Get/set path for templates files.
Parameters
- string
$pathoptional null - Path for template files. If null returns current path.
Returns
string|nullstring|null
themesource public
theme( string $theme null )
The view theme to use.
Parameters
- string
$themeoptional null - Theme name. If null returns current theme.
Returns
string|nullstring|null
uuidsource public
uuid( string $object , string $url )
Generates a unique, non-random DOM ID for an object, based on the object type and the target URL.
Parameters
- string
$object - Type of object, i.e. 'form' or 'link'
- string
$url - The object's target URL
Returns
stringstring
Methods used from Cake\View\CellTrait
_createCellsource protected
_createCell( string $className , string $action , string $plugin , array $options )
Create and configure the cell instance.
Parameters
- string
$className - The cell classname.
- string
$action - The action name.
- string
$plugin - The plugin name.
- array
$options - The constructor options for the cell.
Returns
Cake\View\Cell;\Cake\View\Cell;
cellsource public
cell( string $cell , array $data [] , array $options [] )
Renders the given cell.
Example:
// Taxonomy\View\Cell\TagCloudCell::smallList() $cell = $this->cell('Taxonomy.TagCloud::smallList', ['limit' => 10]); // App\View\Cell\TagCloudCell::smallList() $cell = $this->cell('TagCloud::smallList', ['limit' => 10]);
The display action will be used by default when no action is provided:
// Taxonomy\View\Cell\TagCloudCell::display() $cell = $this->cell('Taxonomy.TagCloud');
Cells are not rendered until they are echoed.
Parameters
- string
$cell - You must indicate cell name, and optionally a cell action. e.g.:
TagCloud::smallListwill invokeView\Cell\TagCloudCell::smallList(),displayaction will be invoked by default when none is provided. - array
$dataoptional [] - Additional arguments for cell method. e.g.:
cell('TagCloud::smallList', ['a1' => 'v1', 'a2' => 'v2'])maps toView\Cell\TagCloud::smallList(v1, v2) - array
$optionsoptional [] - Options for Cell's constructor
Returns
Cake\View\CellThe cell instance
Throws
Cake\View\Exception\MissingCellExceptionIf Cell class was not found.
BadMethodCallExceptionIf Cell class does not specified cell action.
Methods used from Cake\Event\EventDispatcherTrait
dispatchEventsource public
dispatchEvent( string $name , array|null $data null , object|null $subject null )
Wrapper for creating and dispatching events.
Returns a dispatched event.
Parameters
- string
$name - Name of the event.
- array|null
$dataoptional null - Any value you wish to be transported with this event to it can be read by listeners.
- object|null
$subjectoptional null - The object that this event applies to ($this by default).
Returns
Cake\Event\Event\Cake\Event\Event
Implementation of
Cake\Event\EventDispatcherInterface::dispatchEvent() eventManagersource public
eventManager( Cake\Event\EventManager $eventManager null )
Returns the Cake\Event\EventManager manager instance for this object.
You can use this instance to register any new listeners or callbacks to the object events, or create your own events and trigger them at will.
Parameters
-
Cake\Event\EventManager$eventManageroptional null - the eventManager to set
Returns
Cake\Event\EventManager\Cake\Event\EventManager
Implementation of
Cake\Event\EventDispatcherInterface::eventManager() Methods used from Cake\Log\LogTrait
logsource public
log( mixed $msg , integer|string $level LogLevel::ERROR , string|array $context [] )
Convenience method to write a message to Log. See Log::write() for more information on writing to logs.
Parameters
- mixed
$msg - Log message.
- integer|string
$leveloptional LogLevel::ERROR - Error level.
- string|array
$contextoptional [] - Additional log data relevant to this message.
Returns
booleanSuccess of log write.
Methods used from Cake\Routing\RequestActionTrait
requestActionsource public
requestAction( string|array $url , array $extra [] )
Calls a controller's method from any location. Can be used to connect controllers together or tie plugins into a main application. requestAction can be used to return rendered views or fetch the return value from controller actions.
Under the hood this method uses Router::reverse() to convert the $url parameter into a string URL. You should use URL formats that are compatible with Router::reverse()
Examples
A basic example getting the return value of the controller action:
$variables = $this->requestAction('/articles/popular');
A basic example of request action to fetch a rendered page without the layout.
$viewHtml = $this->requestAction('/articles/popular', ['return']);
You can also pass the URL as an array:
$vars = $this->requestAction(['controller' => 'articles', 'action' => 'popular']);
Passing other request data
You can pass POST, GET, COOKIE and other data into the request using the appropriate keys. Cookies can be passed using the cookies key. Get parameters can be set with query and post data can be sent using the post key.
$vars = $this->requestAction('/articles/popular', [ 'query' => ['page' => 1], 'cookies' => ['remember_me' => 1], ]);
Sending environment or header values
By default actions dispatched with this method will use the global $_SERVER and $_ENV values. If you want to override those values for a request action, you can specify the values:
$vars = $this->requestAction('/articles/popular', [ 'environment' => ['CONTENT_TYPE' => 'application/json'] ]);
Transmitting the session
By default actions dispatched with this method will use the standard session object. If you want a particular session instance to be used, you need to specify it.
$vars = $this->requestAction('/articles/popular', [ 'session' => new Session($someSessionConfig) ]);
Parameters
- string|array
$url - String or array-based url. Unlike other url arrays in CakePHP, this url will not automatically handle passed arguments in the $url parameter.
- array
$extraoptional [] - if array includes the key "return" it sets the autoRender to true. Can also be used to submit GET/POST data, and passed arguments.
Returns
mixedBoolean true or false on success/failure, or contents of rendered action if 'return' is set in $extra.
Methods used from Cake\View\ViewVarsTrait
createViewsource public
createView( string|null $viewClass null )
Constructs the view class instance based on the current configuration.
Parameters
- string|null
$viewClassoptional null - Optional namespaced class name of the View class to instantiate.
Returns
Cake\View\View\Cake\View\View
Throws
Cake\View\Exception\MissingViewExceptionIf view class was not found.
setsource public
set( string|array $name , string|array|null|boolean $value null )
Saves a variable or an associative array of variables for use inside a template.
Parameters
- string|array
$name - A string or an array of data.
- string|array|null|boolean
$valueoptional null - Value in case $name is a string (which then works as the key). Unused if $name is an associative array, otherwise serves as the values to $name's keys.
Returns
mixed$this
viewBuildersource public
viewBuilder( )
Get the view builder being used.
Returns
Cake\View\ViewBuilder\Cake\View\ViewBuilder
viewOptionssource public
viewOptions( string|array|null $options null , boolean $merge true )
Get/Set valid view options in the object's _validViewOptions property. The property is created as an empty array if it is not set. If called without any parameters it will return the current list of valid view options. See createView().
Parameters
- string|array|null
$optionsoptional null - string or array of string to be appended to _validViewOptions.
- boolean
$mergeoptional true - Whether to merge with or override existing valid View options. Defaults to
true.
Returns
arrayThe updated view options as an array.
Constants inherited from Cake\View\View
TYPE_ELEMENT, TYPE_LAYOUT, TYPE_TEMPLATE, TYPE_VIEW |
Properties summary
Properties inherited from Cake\View\View
$_currentsource
protected string
The currently rendering view file. Used for resolving parent files.
null $_currentTypesource
protected string
Currently rendering an element. Used for finding parent fragments for elements.
'' $_passedVarssource
protected array
List of variables to collect from the associated controller.
[
'viewVars', 'autoLayout', 'helpers', 'template', 'layout', 'name', 'theme',
'layoutPath', 'templatePath', 'plugin', 'passedArgs'
] $_stacksource
protected array
Content stack, used for nested templates that all use View::extend();
[]
$autoLayoutsource
public boolean
Turns on or off CakePHP's conventional mode of applying layout files. On by default. Setting to off means that layouts will not be automatically applied to rendered templates.
true $elementCachesource
public string
The Cache configuration View will use to store cached elements. Changing this will change the default configuration elements are stored under. You can also choose a cache config per element.
See
Cake\View\View::element()'default' $layoutsource
public string
The name of the layout file to render the template inside of. The name specified is the filename of the layout in /src/Template/Layout without the .ctp extension.
'default' $passedArgssource
public array
Current passed params. Passed to View from the creating Controller for convenience.
Deprecated
3.1.0 Use$this->request->params['pass'] instead.[]
$requestsource
public Cake\Network\Request
An instance of a Cake\Network\Request object that contains information about the current request. This object contains all the information about a request and several methods for reading additional information about the request.
$templatesource
public string
The name of the template file to render. The name specified is the filename in /src/Template/<SubFolder> without the .ctp extension.
null $templatePathsource
public string
The name of the subfolder containing templates for this View.
null Properties used from Cake\Event\EventDispatcherTrait
$_eventManagersource
protected Cake\Event\EventManager
Instance of the Cake\Event\EventManager this object is using to dispatch inner events.
null Properties used from Cake\View\ViewVarsTrait
$viewClasssource
public string
The name of default View class.
Deprecated
3.1.0 Use$this->viewBuilder()->className() instead.null Magic properties inherited from Cake\View\View
$Blockssource
public Cake\View\ViewBlock
$Flashsource
public Cake\View\Helper\FlashHelper
$Formsource
public Cake\View\Helper\FormHelper
$Htmlsource
public Cake\View\Helper\HtmlHelper
$Numbersource
$Paginatorsource
$Rsssource
public Cake\View\Helper\RssHelper
$Sessionsource
$Textsource
public Cake\View\Helper\TextHelper
$Timesource
public Cake\View\Helper\TimeHelper
$Urlsource
public Cake\View\Helper\UrlHelper
© 2005–2016 The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
http://api.cakephp.org/3.1/class-Cake.View.JsonView.html