]> git.mxchange.org Git - friendica-addons.git/blob - impressum/config/impressum.config.php
Merge pull request 'Bluesky/Tumblr: Set "received" to "created" if fetched after...
[friendica-addons.git] / impressum / config / impressum.config.php
1 <?php
2
3 // Warning: Don't change this file! It only holds the default config values for this addon.
4 // Instead, copy this file to config/impressum.config.php in your Friendica directory and set the correct values there
5
6 return [
7         'impressum' => [
8                 // owner (String)
9                 // This is the Name of the Operator
10                 'owner' => '',
11
12                 // ownerprofile (String)
13                 // This is an optional Friendica account where the above owner name will link to
14                 'ownerprofile' => '',
15
16                 // email (String)
17                 // A contact email address (optional)
18                 // Will be displayed slightly obfuscated as name(at)example(dot)com
19                 'email' => '',
20
21                 // postal (String)
22                 // Should contain a postal address where you can be reached at (optional)
23                 'postal' => '',
24
25                 // notes (String)
26                 // Additional informations that should be displayed in the Impressum block
27                 'notes' => '',
28
29                 // footer_text (String)
30                 // Text that will be displayed at the bottom of the pages.
31                 'footer_text' => '',
32         ],
33 ];