Book Image

Moodle 3 Administration - Third Edition

By : Alex Büchner
Book Image

Moodle 3 Administration - Third Edition

By: Alex Büchner

Overview of this book

Moodle is the de facto standard for open source learning platforms. However, setting up and managing a learning environment can be a complex task since it covers a wide range of technical, organizational, and pedagogical topics. This ranges from basic user and course management, to configuring plugins and design elements, all the way to system settings, performance optimization, events frameworks, and so on. This book concentrates on basic tasks such as how to set up and configure Moodle and how to perform day-to-day administration activities, and progresses on to more advanced topics that show you how to customize and extend Moodle, manage courses, cohorts, and users, and how to work with roles and capabilities. You’ll learn to configure Moodle plugins and ensure your VLE conforms to pedagogical and technical requirements in your organization. You’ll then learn how to integrate the VLE via web services and network it with other sites, including Mahara, and extend your system via plugins and LTI. By the end of this book, you will be able to set up an efficient, fully fledged, and secure Moodle system.
Table of Contents (24 chapters)
Moodle 3 Administration Third Edition
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Moodle's logging framework


Moodle has a built-in powerful logging framework that is, as expected, fully customizable and extensible. The idea behind the logging mechanism is as follows:

  • A user performs an action that triggers an event. An example of this is a student who posts a reply on a forum.

  • The log manager monitors the event and then decides whether it will be logged or ignored. This is dictated by site-wide log manager settings.

    For example, by default, there is no setting for not storing forum-related information, so data about who posted what in which forum thread is passed on.

  • The log manager sends the data to the log store plugin, which filters or enriches the information.

    The passed on data might be enriched with the IP address and a timestamp.

  • The data is then written to the actual Log Store.

Now, let's take a look at what happens when a user requests a report. An example of this is a report on student participation in course forums. This can be explained as follows:

  • The reporting...