Creating modules

Introduction

Creating a module is a good way to re-use abstract code and templates across multiple projects. SilverStripe already has certain modules included, for example “sapphire” and “cms”. These three modules are the core functionality and templating for any initial installation. If you're wanting to add generic functionality that isn't specific to your project, like a forum, an ecommerce package or a blog you can do it like this;

  1. Create another directory at the root level (same level as “sapphire” and “cms”)
  2. You must create an _config.php inside your module directory, else SilverStripe will not include it
  3. Inside your module directory, follow our directory structure guidelines

Tips

Try and keep your module as generic as possible - for example if you're making a forum module, your members section shouldn't contain fields like 'Games You Play' or 'Your LiveJournal Name' - if people want to add these fields they can sub-class your class, or decorate the fields on to it.

If you're using Requirements to include generic support files for your project like CSS or Javascript, and want to override these files to be more specific in your project, the following code is an example of how to do so using the init() function on your module controller classes:

class Forum_Controller extends Page_Controller {
 
   function init() {
      if(Director::fileExists(project() . "/css/forum.css")) {
         Requirements::css(project() . "/css/forum.css");
      }else{
         Requirements::css("forum/css/forum.css");
      }
      parent::init();	
   }
 
}

This will use your_project/css/forum.css if it exists, otherwise it falls back to using forum/css/forum.css.

Submitting your module to silverstripe.org/modules

If you wish to submit your module to our public directory, you take responsibility for a certain level of code quality, adherence to conventions, writing documentation, and releasing updates. See module-maintainers.

Reference

How To:

Useful Links:

  • URL Variable Tools - Lists a number of “page options” , “rendering tools” or “special URL variables” that you can use to debug your sapphire applications
 
creating-modules.txt · Last modified: 2010/07/13 04:44 by aram

Please use comments for notes, tips and corrections about the described functionality.
Use the Silverstripe Forum to ask questions.

blog comments powered by Disqus
 
Except where otherwise noted, content on this wiki is licensed under the following license:CC Attribution-Noncommercial-Share Alike 3.0 Unported
Creative Commons LicenseSilverStripe Documentation by SilverStripe is licensed under a Creative Commons Attribution 3.0 New Zealand License.
Based on a work at doc.silverstripe.com
Recent changes RSS feed Driven by DokuWiki