On this page
Trait CellTrait
Provides cell() method for usage in Controller and View classes.
Direct Known Users
Cake\View\ViewIndirect Known Users
Cake\View\AjaxView, Cake\View\JsonView, Cake\View\SerializedView, Cake\View\XmlViewMethod Detail
_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.
© 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.CellTrait.html