Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #138: Ensure classes do not use dynamic properties #139

Merged
merged 1 commit into from
Mar 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions classes/table/timeslots/timeslots_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@
*/
class timeslots_table extends \table_sql implements \renderable {

/** @var int Display mode for table. */
public $displaymode = 0;

/**
* Constructs the table and defines how the data from the SQL query is displayed
* @param string $uniqueid ID that uniquely identifies this element on the HTML page
Expand Down
7 changes: 7 additions & 0 deletions classes/table/viewpoints/viewpoints_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@
*/
class viewpoints_table extends \table_sql implements \renderable {


/** @var context\system System context. */
protected $context = 0;

/** @var int Display mode for table. */
protected $displaymode = 0;

/**
* Constructs the table and defines how the data from the SQL query is displayed
* @param string $uniqueid ID that uniquely identifies this element on the HTML page
Expand Down
3 changes: 3 additions & 0 deletions classes/table/viewsessions/viewsessions_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@
*/
class viewsessions_table extends \table_sql implements \renderable {

/** @var context\system System context. */
protected $context = 0;

/**
* Constructs the table and defines how the data from the SQL query is displayed
* @param string $uniqueid ID that uniquely identifies this element on the HTML page
Expand Down
Loading