C.4. 用户界面插件部署示例
在登录到 Red Hat Virtualization Manager 管理门户时,创建运行
Hello World!
程序的用户界面插件。
过程 C.2. 部署 Hello World!
插件
- 通过在位于
/usr/share/ovirt-engine/ui-plugins/helloWorld.json
的 Manager 中创建以下文件来创建插件描述符:{ "name": "HelloWorld", "url": "/ovirt-engine/webadmin/plugin/HelloWorld/start.html", "resourcePath": "hello-files" }
- 通过在位于
/usr/share/ovirt-engine/ui-plugins/hello-files/start.html
的 Manager 中创建以下文件来创建插件主机页面:<!DOCTYPE html><html><head> <script> var api = parent.pluginApi('HelloWorld'); api.register({ UiInit: function() { window.alert('Hello world'); } }); api.ready(); </script> </head><body></body></html>
如果您成功实施了
Hello World!
插件,当您登录管理门户时,您将看到此屏幕:
图 C.1. 成功实施 Hello World!
插件