Skip to content

Commit

Permalink
Move flavours table into class subfolder
Browse files Browse the repository at this point in the history
  • Loading branch information
abias committed Sep 17, 2023
1 parent 3f2c7a7 commit 127013e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

namespace theme_boost_union;
namespace theme_boost_union\table;

defined('MOODLE_INTERNAL') || die();

Expand All @@ -40,7 +40,7 @@
* @copyright based on code by bdecent gmbh <https://bdecent.de> in format_kickstart.
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class flavours_overview_table extends \table_sql {
class flavours_overview extends \table_sql {

/**
* Setup table.
Expand Down
2 changes: 1 addition & 1 deletion flavours/overview.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
$PAGE->set_heading(theme_boost_union_get_externaladminpage_heading());

// Build flavours table.
$table = new \theme_boost_union\flavours_overview_table();
$table = new \theme_boost_union\table\flavours_overview();
$table->define_baseurl($PAGE->url);

// Start page output.
Expand Down

0 comments on commit 127013e

Please sign in to comment.