Skip to content

Commit

Permalink
Merge pull request #8925 from kenjis/docs-view-cells-typed-property
Browse files Browse the repository at this point in the history
docs: add note for View Cells typed properties
  • Loading branch information
kenjis authored May 31, 2024
2 parents 19e62ac + 4a65e2a commit d987732
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
4 changes: 4 additions & 0 deletions user_guide_src/source/outgoing/view_cells.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ Implementing the AlertMessage from above as a Controlled Cell would look like th

.. literalinclude:: view_cells/010.php

.. note:: If you use typed properties, you must set the initial values:

.. literalinclude:: view_cells/023.php

.. _generating-cell-via-command:

Generating Cell via Command
Expand Down
13 changes: 13 additions & 0 deletions user_guide_src/source/outgoing/view_cells/023.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

// app/Cells/AlertMessageCell.php

namespace App\Cells;

use CodeIgniter\View\Cells\Cell;

class AlertMessageCell extends Cell
{
public string $type = '';
public string $message = '';
}

0 comments on commit d987732

Please sign in to comment.