Book Image

Moodle 1.9 Extension Development

Book Image

Moodle 1.9 Extension Development

Overview of this book

Moodle gives you the power to create and customize feature-rich plug-ins. If you can write Moodle plug-ins, you can make it do just about anything. From making the site easier to administer, to new features, to completely changing the way it looks; plug-ins are the method Moodle offers to customize and extend its functionality. This book will show you how to build all sorts of Moodle plug-ins: admin plug-ins, Blocks, Activities, Grading components, Reports, Fliters that change the way your site works and looks. You will develop standard Moodle plug-ins such as Activities, Filters, and Blocks by creating functioning code that you can execute in your own Moodle installation. Writing modular plug-ins for Moodle will be a large focus of this book.This book will take you inside Moodle and provide you with the ability to develop code the “Moodle way”.This book will expose you to all of the core code functions in Moodle, in a progressive, understandable way. You will learn what libraries are available, what the API calls are, how it is structured and how it can be expanded beyond the plug-in system.You will begin by getting an understanding of the basic architecture that Moodle uses to operate in. Next you will build your first plug-in; a block. You will carry on building other Moodle plug-ins, gaining knowledge of the “Moodle way” of coding, before plunging deeper into the API and inner libraries. Lastly, you will learn how to integrate Moodle with other systems using a variety of methods.When you have completed, you will have a solid understanding of Moodle programming and knowledge of how to extend its functionality in whatever way you want.
Table of Contents (19 chapters)
Moodle 1.9 Extension Development
Credits
About the Authors
About the Reviewer
Preface

Resource types


A resource is a Moodle module designed to present non-interactive information. The format of information is dependent upon the type of resource selected when it is added to a course.

Resource types include text pages, web pages, links to websites or files, directory listings, and IMS content packages.

What is a resource type?

Resource types are pluggable components in Moodle. They define the format and display of static information.

Similar to activity types, these are selected directly from an Add a resource… drop-down menu (as shown in the following screenshot). The options available in this menu are defined by the resource type plugins loaded in your Moodle system:

All resource types use the same base class and data table. Each resource type is responsible for what they display and how they display it. These are created by extending the base resource class in a new file.

Identifying resource types

Resource types are contained in a subdirectory of the /mod/resource/type/ directory...