Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/option/PhabricatorAccessLogConfigOptions.php
| Show All 31 Lines | public function getOptions() { | ||||
| $http_map = $common_map + array( | $http_map = $common_map + array( | ||||
| 'R' => pht('The HTTP referrer.'), | 'R' => pht('The HTTP referrer.'), | ||||
| 'M' => pht('The HTTP method.'), | 'M' => pht('The HTTP method.'), | ||||
| ); | ); | ||||
| $ssh_map = $common_map + array( | $ssh_map = $common_map + array( | ||||
| 's' => pht('The system user.'), | 's' => pht('The system user.'), | ||||
| 'S' => pht('The system sudo user.'), | 'S' => pht('The system sudo user.'), | ||||
| 'k' => pht('ID of the SSH key used to authenticate the request.'), | |||||
| ); | ); | ||||
| $http_desc = pht( | $http_desc = pht( | ||||
| 'Format for the HTTP access log. Use {{log.access.path}} to set the '. | 'Format for the HTTP access log. Use {{log.access.path}} to set the '. | ||||
| 'path. Available variables are:'); | 'path. Available variables are:'); | ||||
| $http_desc .= "\n\n"; | $http_desc .= "\n\n"; | ||||
| $http_desc .= $this->renderMapHelp($http_map); | $http_desc .= $this->renderMapHelp($http_map); | ||||
| ▲ Show 20 Lines • Show All 78 Lines • Show Last 20 Lines | |||||