Skip to content

Commit

Permalink
TW20948894 - Adding class variables (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
JayChurchward authored Oct 14, 2024
1 parent 16a8a2a commit fae55c4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions classes/tables/board_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,24 @@
*/
class board_table extends flexible_table {

/** @var int The board id. */
protected $boardid;

/** @var int The group id. */
protected $groupid;

/** @var int The owner id. */
protected $ownerid;

/** @var bool Include deleted notes. */
protected $includedeleted;

/** @var bool Is board rating enabled. */
protected $hasrating;

/** @var array Holds additional prefernces of the board. */
protected $prefs;

/**
* Constructor
* @param int $cmid The course module id.
Expand Down

0 comments on commit fae55c4

Please sign in to comment.