Brian Federle a065aabda7 UI plugins: Add more metadata
Add more metadata to plugin config.js:

- externalLink: Link to plugin/author's web site
- authorName: Author's full name
- authorEmail: Author's contact e-mail
2013-01-29 14:34:42 -08:00

9 lines
278 B
JavaScript

(function (cloudStack) {
cloudStack.plugins.testPlugin.config = {
title: 'Test Plugin',
desc: 'Sample plugin',
externalLink: 'http://www.cloudstack.org/',
authorName: 'Test Plugin Developer',
authorEmail: 'plugin.developer@example.com'
};
}(cloudStack));