lacre webgate - added vars for the menu
This commit is contained in:
parent
b2582a75c9
commit
3be95d1c06
2 changed files with 16 additions and 0 deletions
|
@ -99,6 +99,11 @@ lacre_webgate_email_from: 'gpg-mailgate-web@example.com'
|
|||
lacre_webgate_email_subject_requestpgp: 'Confirm your email address'
|
||||
lacre_webgate_site_url: 'http://example.com/gpgmw'
|
||||
lacre_webgate_site_title: 'PGP key management'
|
||||
lacre_webgate_site_logo: 'img/logo.png'
|
||||
lacre_webgate_site_faqurl: 'https://lacre.io/faq'
|
||||
lacre_webgate_site_howurl: 'https://learn.lacre.io'
|
||||
lacre_webgate_site_contacturl: 'https://lacre.io/contact'
|
||||
|
||||
lacre_webgate_language: 'english'
|
||||
lacre_webgate_debug: 'enable'
|
||||
lacre_webgate_mail_smtp: 'false'
|
||||
|
|
|
@ -37,6 +37,17 @@ $config['email_subject_requestpgp'] = '{{ lacre_webgate_email_subject_requestpgp
|
|||
//site URL, without trailing slash
|
||||
$config['site_url'] = '{{ lacre_webgate_site_url }}';
|
||||
|
||||
//site logo
|
||||
$config['site_logo'] = '{{ lacre_webgate_site_logo }}';
|
||||
|
||||
//link to FAQ page
|
||||
$config['site_faqurl'] = '{{ lacre_webgate_site_faqurl }}';
|
||||
|
||||
//link to tutorial website
|
||||
$config['site_howurl'] = '{{ lacre_webgate_site_howurl }}';
|
||||
|
||||
//link to contact page
|
||||
$config['site_contacturl'] = '{{ lacre_webgate_site_contacturl }}';
|
||||
|
||||
//title of the website (displayed on home page)
|
||||
$config['site_title'] = '{{ lacre_webgate_site_title }}';
|
||||
|
|
Loading…
Reference in a new issue