Difference between revisions of "Enable example extensions"
From OpenKM Documentation
Line 3: | Line 3: | ||
'''ToolBarButtonExample''' | '''ToolBarButtonExample''' | ||
<source lang="sql"> | <source lang="sql"> | ||
− | INSERT INTO OKM_EXTENSION ( | + | INSERT INTO OKM_EXTENSION (EXT_UUID,EXT_NAME) VALUES('9f84b330-d096-11df-bd3b-0800200c9a66','Toolbar button example'); |
</source> | </source> | ||
'''TabWorkspaceExample''' | '''TabWorkspaceExample''' | ||
<source lang="sql"> | <source lang="sql"> | ||
− | INSERT INTO OKM_EXTENSION ( | + | INSERT INTO OKM_EXTENSION (EXT_UUID,EXT_NAME) VALUES('44f94470-d097-11df-bd3b-0800200c9a66','Tab workspace example'); |
</source> | </source> | ||
'''TabFolderExample''' | '''TabFolderExample''' | ||
<source lang="sql"> | <source lang="sql"> | ||
− | INSERT INTO OKM_EXTENSION ( | + | INSERT INTO OKM_EXTENSION (EXT_UUID,EXT_NAME) VALUES('d95e01a0-d097-11df-bd3b-0800200c9a66','Tab folder example'); |
</source> | </source> | ||
'''HelloWorld''' | '''HelloWorld''' | ||
<source lang="sql"> | <source lang="sql"> | ||
− | INSERT INTO OKM_EXTENSION ( | + | INSERT INTO OKM_EXTENSION (EXT_UUID,EXT_NAME) VALUES('d9dab640-d098-11df-bd3b-0800200c9a66','Hello world example'); |
</source> | </source> | ||
[[Category: Extension Guide]] | [[Category: Extension Guide]] |
Revision as of 09:57, 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');