Go to file
2016-03-09 06:40:14 +01:00
conf completed, prettyfied template 2016-02-05 14:48:02 +01:00
controllers fix syntax error 2016-02-18 20:34:16 +01:00
develop - added tools to check translations 2010-12-14 16:07:56 +00:00
doc add more documentation 2016-02-16 07:05:45 +01:00
ext/example add file with translations for example extension 2013-09-05 08:54:22 +02:00
inc Merge branch 'seeddms-4.3.x' into seeddms-5.0.x 2016-03-08 10:42:21 +01:00
install Merge branch 'seeddms-4.3.x' into seeddms-5.0.x 2016-02-02 09:48:18 +01:00
js use post request for checking password strength 2013-09-03 08:20:25 +02:00
languages add various new phrases 2016-03-08 10:37:36 +01:00
op Merge branch 'seeddms-4.3.x' into seeddms-5.0.x 2016-03-09 06:40:14 +01:00
out Merge branch 'seeddms-4.3.x' into seeddms-5.0.x 2016-03-09 06:40:14 +01:00
restapi fix some bugs in changeFolderAccess. 2016-02-15 17:03:13 +01:00
SeedDMS_Core Merge branch 'seeddms-4.3.x' into seeddms-5.0.x 2016-03-09 06:40:14 +01:00
SeedDMS_Lucene new version 1.1.7 2016-02-01 09:15:41 +01:00
SeedDMS_Preview new version 1.1.6 2016-03-08 18:38:57 +01:00
SeedDMS_SQLiteFTS new version 1.0.3 2016-02-01 09:15:48 +01:00
styles Merge branch 'seeddms-4.3.x' into seeddms-5.0.x 2016-03-09 06:40:14 +01:00
themes - move all sources into trunk 2010-10-29 13:19:51 +00:00
utils Merge branch 'seeddms-4.3.x' into seeddms-5.0.x 2016-02-26 08:17:50 +01:00
views Merge branch 'seeddms-4.3.x' into seeddms-5.0.x 2016-03-09 06:40:14 +01:00
webdav better error checking when setting a custom attribute 2016-02-03 14:47:50 +01:00
CHANGELOG Merge branch 'seeddms-4.3.x' into seeddms-5.0.x 2016-03-09 06:40:14 +01:00
drop-tables-innodb.sql - updated for version 3.4.x 2012-10-09 12:33:39 +00:00
index.php major name change from letodms to seeddms 2013-02-14 12:10:53 +01:00
LICENSE - move all sources into trunk 2010-10-29 13:19:51 +00:00
Makefile Merge branch 'seeddms-4.3.x' into seeddms-5.0.x 2016-02-16 11:21:40 +01:00
README.Extensions some more information on how extensions work 2014-12-08 14:31:07 +01:00
TODO clean up 2013-02-15 20:30:11 +01:00

Extensions in SeedDMS
====================

Since verson 5.0.0 SeedDMS can be extended by extensions. Extensions
can hook up functions into certain operations, e.g.
uploading, removing or displaying a document. They can also be
used to modify some of the internal variables like the list of
translations and they can even replace classes in the core of
seeddms and hook up functions into certain operations in the core.

All extensions are located in the folder 'ext'. Each extension
has its own folder named by the name of the extension. The central
configuration of an extension is stored in conf.php.
The configuration sets the file and classname which is loaded
during initialization of the extension. The class has to have
a method init() which is called with any page request. The
configuration itself is cached and must be updated within
the extension manager if it was changed.

The integration into SeedDMS is done by hooks, class and file
overloading. SeedDMS manages
a globally available array of hooks ($GLOBALS['SEEDDMS_HOOKS']).
This array has the elements 'view' and 'controller'. All entries
in those array elements contain instances of self defined classes
containing the hook methods. For setting up the hooks in the view
'viewFolder' the following code is needed.

$GLOBALS['SEEDDMS_HOOKS']['view']['viewFolder'][] = new SeedDMS_ExtExample_ViewFolder;

class SeedDMS_ExtExample_ViewFolder {
  ...
};

The same approach is implemented for hooks called from the controller
logic (the op/op.*.php files).

$GLOBALS['SEEDDMS_HOOKS']['controller']['removeFolder'][] = new SeedDMS_ExtExample_RemoveFolder;

class SeedDMS_ExtExample_RemoveFolder {
  ...
};

Based on these two variants of adding hooks to the seeddms application code,
the seeddms core can be extended by implementing the controller hook 'initDMS'
which is called right after the class SeedDMS_Core_DMS has been initiated.

Beside hooks and callbacks another way of modifying seeddms is given
by overloading the files in the directory 'views' and 'controllers'. Both
directories contain class files with a single class for either running
controller or view code. If an extension provides those file in its
own extension dir, they will be used instead of the files shipped with
seeddms.