Changes between Version 12 and Version 13 of Doc_Plugins


Ignore:
Timestamp:
Jan 21, 2010 4:52:46 PM (3 years ago)
Author:
trisk
Comment:

Update plugin install instructions and plugin repository info, and move to top of page

Legend:

Unmodified
Added
Removed
Modified
  • Doc_Plugins

    v12 v13  
    33= Plugin Resources = 
    44 
    5 Plugins are tools to extend the functionality of RoundCube. 
    6 They are not part of the application core but can be installed and activated individually. 
    7  
    8 == How to write a plugin == 
     5Plugins extend the functionality of RoundCube. 
     6They are not part of the core application but can be installed and activated individually. 
     7!RoundCube comes with a number of plugins, and more third-party plugins are available for download. 
     8 
     9== Installing Plugins and Activating Plugins == 
     10 
     11After downloading and unpacking a plugin in !RoundCube's {{{plugin}}} directory, you have to activate it by adding its directory name as an array element, to the config option {{{plugins}}}. This is done by editing your local {{{config/main.inc.php}}} file. Only plugins listed in the array will be enabled. 
     12 
     13For example, to enable plugins named {{{additional_message_headers}}} and {{{archive}}}, {{{config/main.inc.php}}} should contain this line: 
     14 
     15{{{ 
     16$rcmail_config['plugins'] = array('additional_message_headers', 'archive'); 
     17}}} 
     18 
     19=== Community Plugin Repository === 
     20 
     21Many plugins have been written by community members. 
     22 
     23[wiki:Plugin_Repository] has a list of plugins available for download. 
     24 
     25 
     26== How to Write a Plugin == 
    927 
    1028=== Names, Files and Locations === 
     
    272290 
    273291 
    274 == Installing and activating Plugins == 
    275  
    276 After downloading and unpacking a plugin in !RoundCube's plugin directory you have to activate it by adding its unix-name to the array of the config option {{{plugins}}} in your local {{{config/main.inc.php}}} file. Only plugins enabled by config will be loaded and executed. 
    277  
    278 === Public Plugin Repository === 
    279  
    280 Here's a temporary list of available plugins: [wiki:Plugin_Repository][[BR]] 
    281 All plugins are currently available for the 0.3-beta version of RoundCube. 
    282