Page MenuHomePhorge

PhabricatorPhurlConfigOptions.php
No OneTemporary

Size
789 B
Referenced Files
None
Subscribers
None

PhabricatorPhurlConfigOptions.php

<?php
final class PhabricatorPhurlConfigOptions
extends PhabricatorApplicationConfigOptions {
public function getName() {
return pht('Phurl');
}
public function getDescription() {
return pht('Options for Phurl.');
}
public function getIcon() {
return 'fa-link';
}
public function getGroup() {
return 'apps';
}
public function getOptions() {
return array(
$this->newOption('phurl.short-uri', 'string', null)
->setLocked(true)
->setSummary(pht('URI that Phurl will use to shorten URLs.'))
->setDescription(
pht(
'Set the URI that Phurl will use to share shortened URLs.'))
->addExample(
'https://some-very-short-domain.museum/',
pht('Valid Setting')),
);
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, May 12, 1:58 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
109116
Default Alt Text
PhabricatorPhurlConfigOptions.php (789 B)

Event Timeline