Difference between revisions of "Enable example extensions"
From OpenKM Documentation
Line 1: | Line 1: | ||
− | In order enable OpenKM extension go to administrator tab and select query view. Then select | + | In order enable OpenKM extension go to administrator tab and select query view. Then select JDBC and register the extensions in your DBMS. |
'''ToolBarButtonExample''' | '''ToolBarButtonExample''' | ||
Line 20: | Line 20: | ||
INSERT INTO OKM_EXTENSION (EXT_UUID,EXT_NAME) VALUES('d9dab640-d098-11df-bd3b-0800200c9a66','Hello world example'); | INSERT INTO OKM_EXTENSION (EXT_UUID,EXT_NAME) VALUES('d9dab640-d098-11df-bd3b-0800200c9a66','Hello world example'); | ||
</source> | </source> | ||
+ | |||
+ | After that, you also need to enable the proper extensions in Administration > User Profile. | ||
[[Category: Extension Guide]] | [[Category: Extension Guide]] |
Revision as of 09:59, 24 August 2011
In order enable OpenKM extension go to administrator tab and select query view. Then select JDBC and register the extensions in your DBMS.
ToolBarButtonExample
INSERT INTO OKM_EXTENSION (EXT_UUID,EXT_NAME) VALUES('9f84b330-d096-11df-bd3b-0800200c9a66','Toolbar button example');
TabWorkspaceExample
INSERT INTO OKM_EXTENSION (EXT_UUID,EXT_NAME) VALUES('44f94470-d097-11df-bd3b-0800200c9a66','Tab workspace example');
TabFolderExample
INSERT INTO OKM_EXTENSION (EXT_UUID,EXT_NAME) VALUES('d95e01a0-d097-11df-bd3b-0800200c9a66','Tab folder example');
HelloWorld
INSERT INTO OKM_EXTENSION (EXT_UUID,EXT_NAME) VALUES('d9dab640-d098-11df-bd3b-0800200c9a66','Hello world example');
After that, you also need to enable the proper extensions in Administration > User Profile.