Difference between revisions of "Community extensions"

From OpenKM Documentation
Jump to: navigation, search
(Enable macros)
 
(One intermediate revision by one other user not shown)
Line 10: Line 10:
 
<source lang="sql">
 
<source lang="sql">
 
INSERT INTO OKM_EXTENSION (EXT_UUID, EXT_NAME) VALUES ('c60082c2-7d4c-4750-901b-a817f246cfa1', 'Macros');
 
INSERT INTO OKM_EXTENSION (EXT_UUID, EXT_NAME) VALUES ('c60082c2-7d4c-4750-901b-a817f246cfa1', 'Macros');
 +
INSERT INTO OKM_CONFIG (CFG_KEY, CFG_TYPE, CFG_VALUE) values ('macros.actions', 'text', '');
 
</source>
 
</source>
  
Line 23: Line 24:
 
Once the extension has been registered you need to enable it in the desired profile.
 
Once the extension has been registered you need to enable it in the desired profile.
  
== Enable dropbox ==
+
== Enable Dropbox ==
 
Go to '''Administration''' > '''[[Database query]]''' section and execute:
 
Go to '''Administration''' > '''[[Database query]]''' section and execute:
  

Latest revision as of 11:41, 21 February 2015

OpenKM community extensions are:

Enable macros

Go to Administration > Database query section and execute:

INSERT INTO OKM_EXTENSION (EXT_UUID, EXT_NAME) VALUES ('c60082c2-7d4c-4750-901b-a817f246cfa1', 'Macros');
INSERT INTO OKM_CONFIG (CFG_KEY, CFG_TYPE, CFG_VALUE) values ('macros.actions', 'text', '');

Once the extension has been registered you need to enable it in the desired profile.

Enable download buttons

Go to Administration > Database query section and execute:

INSERT INTO OKM_EXTENSION (EXT_UUID, EXT_NAME) VALUES ('df5eb783-fb06-4b4b-bc89-4fdaa244e888', 'Download Buttons');

Once the extension has been registered you need to enable it in the desired profile.

Enable Dropbox

Go to Administration > Database query section and execute:

INSERT INTO OKM_EXTENSION (EXT_UUID, EXT_NAME) VALUES ('101fa1e6-4bf6-4e39-9124-88f44a474268', 'Dropbox');

Once the extension has been registered you need to enable it in the desired profile.