moodle/blocks
2004-09-20 22:37:40 +00:00
..
activity_modules closed some image tags 2004-09-12 21:55:34 +00:00
admin closed some image tags 2004-09-12 21:55:34 +00:00
calendar_month Merging fix for bug 1957 from MOODLE_14_STABLE. 2004-09-19 22:25:21 +00:00
calendar_upcoming Merging fix for bug 1957 from MOODLE_14_STABLE. 2004-09-19 22:25:21 +00:00
course_list closed some input tags 2004-09-12 22:23:51 +00:00
course_summary XHTML compliance 2004-09-16 17:13:57 +00:00
db Merged block upgrade fix from stable 2004-08-30 16:26:00 +00:00
login Fix for bug 1662: 2004-08-22 16:54:48 +00:00
news_items Fix for bug 1662: 2004-08-22 16:54:48 +00:00
online_users Small code sanitization 2004-09-20 22:37:40 +00:00
participants closed some image tags 2004-09-12 21:55:34 +00:00
recent_activity FIxed some notices when installing Moodle fresh 2004-08-11 09:00:53 +00:00
search_forums FIxed some notices when installing Moodle fresh 2004-08-11 09:00:53 +00:00
section_links XHTML compliance 2004-09-16 17:13:57 +00:00
site_main_menu XHTML compliance 2004-09-16 17:13:57 +00:00
social_activities XHTML compliance 2004-09-16 17:13:57 +00:00
moodleblock.class.php XHTML compliance 2004-09-16 17:13:57 +00:00
README.txt Fixed/added some things so that the instructions are mostly correct. 2004-04-19 07:39:43 +00:00
version.php Merging the changes from 1.4 dev branch (site index blocks + various bugfixes) 2004-05-28 10:53:54 +00:00

-------------------------------------------------------------------------------
CREATING NEW BLOCKS
-------------------------------------------------------------------------------

-------------------------------------------------------------------------------
WARNING - PRELIMINARY DOCUMENTATION
This is designed to point new block developers in the right direction. At times
it may NOT be fully up-to-date with the source, or it may even contain some
tiny bit of misinformation that has slipped our notice. If you encounter such a
case, please:
    1. Use the existing block code as reference
    2. Come to the moodle.org forums and tell the world! :) We 'll help you!
-------------------------------------------------------------------------------

You have to derive a class that extends MoodleBlock.

The derived class MUST:

    * Implement a constructor that:
        1. Sets $this->content_type (BLOCK_TYPE_LIST or BLOCK_TYPE_TEXT)
        3. Sets $this->title
        4. Sets $this->version
        5. Sets $this->course equal to its only argument

The derived class MAY:

    * Declare that the block has a configuration interface.
      To do so:

        1. Define a method has_config() {return true;}
        2. Define a method print_config() that prints whatever
           configuration interface you want to have.
        3. Define a method handle_config($data) that does what
           is needed. $data comes straight from data_submitted().

    * Limit the course formats it can be displayed in.
      To do so:

        1. Define a method applicable_formats() which returns a bitwise
           OR of one or more COURSE_FORMAT_XXX defined constants. These
           are defined in lib/blocklib.php.

    * Select a "preferred" width which the course format will try to honor.
      To do so:

        1. Define a method preferred_width() which returns an integer.
           This is the block's preferred width in pixels.

    * Declare that the block is going to hide its header. This will result
      in a more lightweight appearance. Ideal for announcements/notices.
      To do so:

        1. Define a method hide_header() {return true;}