mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 10:52:41 +01:00
a22bea2a74
Summary: Mostly applies a new call spacing rule; also a few things that have slipped through via pull requests and such Test Plan: `find src/ -type f -name '*.php' | xargs -n16 arc lint --output summary --apply-patches` Reviewers: chad Reviewed By: chad CC: aran Differential Revision: https://secure.phabricator.com/D5002
72 lines
2 KiB
PHP
72 lines
2 KiB
PHP
<?php
|
|
|
|
final class PhabricatorSettingsPanelSearchPreferences
|
|
extends PhabricatorSettingsPanel {
|
|
|
|
public function getPanelKey() {
|
|
return 'search';
|
|
}
|
|
|
|
public function getPanelName() {
|
|
return pht('Search Preferences');
|
|
}
|
|
|
|
public function getPanelGroup() {
|
|
return pht('Application Settings');
|
|
}
|
|
|
|
public function processRequest(AphrontRequest $request) {
|
|
$user = $request->getUser();
|
|
$preferences = $user->loadPreferences();
|
|
|
|
$pref_jump = PhabricatorUserPreferences::PREFERENCE_SEARCHBAR_JUMP;
|
|
$pref_shortcut = PhabricatorUserPreferences::PREFERENCE_SEARCH_SHORTCUT;
|
|
|
|
if ($request->isFormPost()) {
|
|
$preferences->setPreference($pref_jump,
|
|
$request->getBool($pref_jump));
|
|
|
|
$preferences->setPreference($pref_shortcut,
|
|
$request->getBool($pref_shortcut));
|
|
|
|
$preferences->save();
|
|
return id(new AphrontRedirectResponse())
|
|
->setURI($this->getPanelURI('?saved=true'));
|
|
}
|
|
|
|
$form = id(new AphrontFormView())
|
|
->setUser($user)
|
|
->appendChild(
|
|
id(new AphrontFormCheckboxControl())
|
|
->addCheckbox($pref_jump,
|
|
1,
|
|
'Enable jump nav functionality in all search boxes.',
|
|
$preferences->getPreference($pref_jump, 1))
|
|
->addCheckbox($pref_shortcut,
|
|
1,
|
|
"Press '/' to focus the search input.",
|
|
$preferences->getPreference($pref_shortcut, 1)))
|
|
->appendChild(
|
|
id(new AphrontFormSubmitControl())
|
|
->setValue('Save'));
|
|
|
|
$panel = new AphrontPanelView();
|
|
$panel->setHeader('Search Preferences');
|
|
$panel->appendChild($form);
|
|
$panel->setNoBackground();
|
|
|
|
$error_view = null;
|
|
if ($request->getStr('saved') === 'true') {
|
|
$error_view = id(new AphrontErrorView())
|
|
->setTitle('Preferences Saved')
|
|
->setSeverity(AphrontErrorView::SEVERITY_NOTICE)
|
|
->setErrors(array('Your preferences have been saved.'));
|
|
}
|
|
|
|
return array(
|
|
$error_view,
|
|
$panel,
|
|
);
|
|
}
|
|
}
|
|
|