Skip to content

Instantly share code, notes, and snippets.

@dklawren
Created August 10, 2017 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dklawren/a4d616858e7578387126e7618ff094ce to your computer and use it in GitHub Desktop.
Save dklawren/a4d616858e7578387126e7618ff094ce to your computer and use it in GitHub Desktop.
Bugzilla Configuration
<?php
final class PhabricatorBugzillaConfigOptions
extends PhabricatorApplicationConfigOptions {
public function getName() {
return pht('Bugzilla');
}
public function getDescription() {
return pht('Configure Bugzilla Settings.');
}
public function getIcon() {
return 'fa-cog';
}
public function getGroup() {
return 'apps';
}
public function getOptions() {
return array(
$this->newOption(
'bugzilla.url',
'string',
'https://bugzilla.mozilla.org')
->setDescription(pht('Full URL for the Bugzilla server.')),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment