3,035
edits
No edit summary |
|||
| Line 47: | Line 47: | ||
In the service itself, there are variables that need to be defined in order to add a new plugin. These are: | In the service itself, there are variables that need to be defined in order to add a new plugin. These are: | ||
$name = ''; // Name of the plugin, used in UI. | $name = ' '; // Name of the plugin, used in UI. | ||
$guid = '-1'; // GUID to uniquely identify this plugin. | $guid = '-1'; // GUID to uniquely identify this plugin. | ||
$version = ''; // Version string. | $version = ' '; // Version string. | ||
$iconUrl = ''; // URL of the icon for this plugin, used in UI. | $iconUrl = ' '; // URL of the icon for this plugin, used in UI. | ||
$installerLocation = ''; // Location of the external binary installer, should be SSL or rely on installerHash. | $installerLocation = ' '; // Location of the external binary installer, should be SSL or rely on installerHash. | ||
$installerHash = ''; // Installer hash value, used to verify installer. | $installerHash = ' '; // Installer hash value, used to verify installer. | ||
$XPILocation = ''; // Location of the XPI the browser should install. | $XPILocation = ' '; // Location of the XPI the browser should install. | ||
$installerShowsUI = 'true'; // Does the installer show a UI? If no, chrome is used. | $installerShowsUI = 'true'; // Does the installer show a UI? If no, chrome is used. | ||
$manualInstallationURL = ''; // URL to go to if auto-install fails. | $manualInstallationURL = ' '; // URL to go to if auto-install fails. | ||
$licenseURL = ''; // License information, if needed. | $licenseURL = ' '; // License information, if needed. | ||
$needsRestart = 'false'; // Does it require a browser restart? | $needsRestart = 'false'; // Does it require a browser restart? | ||
edits