Board

Course formats ::: format_board
Maintained by Rodrigo Brandão
"Board" (Grids and Blocks) is a course format in grid for Moodle 2.8 or later with full flexibility between sections and columns. You can choose quantity and width of columns and quantity of sections in each column.
Latest release:
827 sites
70 downloads
64 fans
Current versions available: 1
"Board (Grids and Blocks)" is a course format in grid for Moodle 2.8 or later with full flexibility between sections and columns. You can choose quantity and width of columns and quantity of sections in each column.

Discuss this plugin on the Moodle forums.

Screenshots

Screenshot #0
Screenshot #1
Screenshot #2
Screenshot #3
Screenshot #4
Screenshot #5
Screenshot #6

Contributors

Rodrigo Brandão (Lead maintainer)
Please login to view contributors details and/or to contact them

Comments RSS

Erakutsi iruzkinak
  • John Provasnik at Moodle Moot US
    or., 2016(e)ko abe.ren 16(e)an, 05:11(e)tan
    Understand it now... each "Group" is a just a vertical column (not a row). So Group 1 @ 50% for column 1 with x topics in the column, then Group 2 @ 50% for column 2 with x topics in the column.
  • Rodrigo Brandão
    ar., 2016(e)ko abe.ren 20(e)an, 22:03(e)tan
    John, I will find out the problem... and fix the issue in the next week release! irribarrea
  • John Provasnik at Moodle Moot US
    og., 2017(e)ko urt.ren 5(e)an, 02:39(e)tan
    Turns out I was not using 2016111600. I downloaded and all is working perfectly!
  • John Carvajal
    az., 2017(e)ko urt.ren 25(e)an, 19:32(e)tan
    Hello, the format presents error when performing a backup in Moodle "error / setting_invalid_ui_label". How to solve the error?
  • John Provasnik at Moodle Moot US
    az., 2017(e)ko urt.ren 25(e)an, 20:35(e)tan
    @ John - are you using the latest version of this plug in? Because that solved the same issue for me on Moodle 3.0
  • John Provasnik at Moodle Moot US
    al., 2017(e)ko api.ren 10(e)an, 20:46(e)tan
    Rodrigo - on 3.0 using either the clean or Blocks layout, the General section still does not get outlined. Is there a code snippet I can add to get this outlined? When I try to add something to my custom CSS I can get the outline back but then all the parts below bump back into to a vertical column instead of side by side like I had set them up.
  • Jacques LeCavalier
    ar., 2017(e)ko abu.ren 1(e)an, 19:51(e)tan
    Hi, Rodrigo. Thanks for building this simple yet very useful course format! Can you tell me if it might somehow be possible to combine the Onetopic TABS approach with the Board format's grid approach?

    What I would love is to have course modules be selected via Tabs at the top of the page, and then have a grid of sections for each Module page.

    thanks!
    Jacques
  • Gabriel JALAM
    ar., 2017(e)ko abe.ren 12(e)an, 23:33(e)tan
    Hello
    I am the admin of a Moodle platform (version 3.3+). My version of php is 7.1
    In any course, if I use the Board course format, when I turne editing on, if I want to change the title of a topic with the "Edit topic name" function I get this error message:

    """"""""""""""
    Error calling update processor
    File:
    /lib/external/externallib.php
    Line:
    467
    Stack trace:
    Error code: inplaceeditableerror
    * line 467 of /lib/external/externallib.php: moodle_exception thrown
    * line 228 of /lib/externallib.php: call to core_external::update_inplace_editable()
    * line 59 of /lib/ajax/service.php: call to external_api::call_external_function()
    """"""""""""""

    Changing the title of this section through the Edit topic Menu, I do not get this error message.
    This error only appears with the Board course format, it does not appear with other course formats.
    Do you know how to fix this problem?
    Thank you.
  • Adam Welle
    az., 2019(e)ko ots.ren 20(e)an, 01:40(e)tan
    To fix the inplace_editable error, you can copy the last function out of "course/format/topics/lib.php" into "course/format/board/lib.php" and update it for the "board" plugin rather than the "topics" plugin. You will be implementing the missing called as a function named "format_board_inplace_editable".
  • Ricardo Caiado
    az., 2019(e)ko mai.ren 22(e)an, 18:23(e)tan
    Olá,

    Alguma previsão de atualização para este plugin?

    Ricardo
  • Gabriel JALAM
    al., 2019(e)ko uzt.ren 15(e)an, 21:58(e)tan
    Thank you Adam. It works now! I add this in the end of "course/format/board/lib.php" file:


    /**
    * Implements callback inplace_editable() allowing to edit values in-place
    *
    * @param string $itemtype
    * @param int $itemid
    * @param mixed $newvalue
    * @return \core\output\inplace_editable
    */
    function format_board_inplace_editable($itemtype, $itemid, $newvalue) {
    global $DB, $CFG;
    require_once($CFG->dirroot . '/course/lib.php');
    if ($itemtype === 'sectionname' || $itemtype === 'sectionnamenl') {
    $section = $DB->get_record_sql(
    'SELECT s.* FROM {course_sections} s JOIN {course} c ON s.course = c.id WHERE s.id = ? AND c.format = ?',
    array($itemid, 'board'), MUST_EXIST);
    return course_get_format($section->course)->inplace_editable_update_section_name($section, $itemtype, $newvalue);
    }
    }
  • Sarolta Godnic Vicic
    ig., 2019(e)ko abu.ren 25(e)an, 21:43(e)tan
    Hello, I was wondering if you will be updating the plugin for Moodle 3.7? I really like this plugin and would appreciate its update. Thanks.
    Sarolta
  • Ricardo Caiado
    ar., 2020(e)ko abu.ren 18(e)an, 04:37(e)tan
    Is it compatible with 3.9+ version of Moodle?
  • Tomek Szopa
    or., 2022(e)ko ira.ren 23(e)an, 05:21(e)tan
    Our platform uses a lot of the Board Format. It is really good looking. Any hope it will be updated??? It has been already 5 years and we are now in Moodle 4.0...
  • Ricardo Caiado
    ar., 2023(e)ko ira.ren 19(e)an, 22:01(e)tan
    Is it compatible with 4.1+ version of Moodle?
1 2
Please login to post comments