AppSuite:Extension points for core: Difference between revisions
From Open-Xchange
mNo edit summary |
mNo edit summary |
||
Line 9: | Line 9: | ||
==io.ox/core/apps/store== | ==io.ox/core/apps/store== | ||
==io.ox/core/desktop== | ==io.ox/core/desktop== | ||
==io.ox/core/http/mappings== | |||
* used to adjust specified columns | |||
'''example: adjust fields used if msisdn support is enabled''' | |||
<pre class="text">ext.point('io.ox/core/http/mappings').extend({ | |||
id: 'keywords', | |||
customize: function (mapping) { | |||
keywordMapping.contacts.msisdn = ['551', '552']; //cellular telephone numbers only | |||
} | |||
}); | |||
</pre> | |||
==io.ox/core/notifications/due-tasks/header== | ==io.ox/core/notifications/due-tasks/header== | ||
==io.ox/core/notifications/due-tasks/item== | ==io.ox/core/notifications/due-tasks/item== |
Revision as of 10:07, 23 May 2013
API status: In Development
Extension points for appsuite core
Abstract: This describes extension points for the appsuite core, allowing you to add functions.
io.ox/core/apps/category
io.ox/core/apps/installed
io.ox/core/apps/manage
io.ox/core/apps/store
io.ox/core/desktop
io.ox/core/http/mappings
- used to adjust specified columns
example: adjust fields used if msisdn support is enabled
ext.point('io.ox/core/http/mappings').extend({ id: 'keywords', customize: function (mapping) { keywordMapping.contacts.msisdn = ['551', '552']; //cellular telephone numbers only } });