]> git.mxchange.org Git - friendica-addons.git/commitdiff
[various] Remove config/addon.config.php in favor of per-addon configuration file
authorHypolite Petovan <hypolite@mrpetovan.com>
Sun, 20 Nov 2022 16:43:42 +0000 (11:43 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sun, 20 Nov 2022 16:43:42 +0000 (11:43 -0500)
29 files changed:
geonames/README.md
geonames/config/geonames.config.php
gravatar/README.md
gravatar/config/gravatar.config.php
impressum/README.md
impressum/config/impressum.config.php
ldapauth/README.md
ldapauth/config/ldapauth.config.php
ldapauth/ldapauth.php
leistungsschutzrecht/README.md
libravatar/README.md
libravatar/config/libravatar.config.php
mathjax/README.md
openstreetmap/README.md
openstreetmap/config/openstreetmap.config.php
phpmailer/README.md
phpmailer/config/phpmailer.config.php
piwik/README.md
piwik/config/piwik.config.php
piwik/piwik.php
public_server/README.md
public_server/config/public_server.config.php
pumpio/README.md
pumpio/config/pumpio.config.php
testdrive/README.md
testdrive/config/testdrive.config.php
twitter/README.md
twitter/config/twitter.config.php
twitter/twitter.php

index 16b85b371c90665d57a0c4a7c67e1479ff120121..7673840d36673aefb414d76c839f5657c5345a1d 100644 (file)
@@ -7,10 +7,12 @@ Use [Geonames service](https://www.geonames.org) to resolve nearest populated lo
 
 ## Installation
 
-Pre-requisite: Register a username at https://www.geonames.org/login and set it in `config/addon.config.php`
+Pre-requisite: Register a username at https://www.geonames.org/login and set it in `config/geonames.config.php`:
 
-    'geonames' => [
-        'username' => 'your_username'
-    ],
+       return [
+               'geonames' => [
+                       'username' => 'your_username'
+               ],
+       ];
 
 Also visit https://geonames.org/manageaccount and enable access to the free web services.
index 6af3634e09544081ffccef719677d2cece836cd1..179fb56c009b43a543d0a09eb92b1ff3b75c5193 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 // Warning: Don't change this file! It only holds the default config values for this addon.
-// Instead overwrite these config values in config/addon.config.php in your Friendica directory
+// Instead, copy this file to config/geonames.config.php in your Friendica directory and set the correct values there
 
 return [
        'geonames' => [
index 02b9bfd26aab7e2786223790fad31965548c934d..1a71a4d34a41be9e1aeabb8064913d790aaf156c 100644 (file)
@@ -38,11 +38,13 @@ Open the `config/local.config.php` file and add "gravatar" to the list of activa
                ...
        ]
 
-You can add two configuration variables for the addon to the `config/addon.config.php` file:
-
-    'gravatar' => [
-        'default_avatar' => 'identicon',
-        'rating' => 'g',
-    ],
+You can add two configuration variables for the addon to the `config/gravatar.config.php` file:
+
+       return [
+               'gravatar' => [
+                       'default_avatar' => 'identicon',
+                       'rating' => 'g',
+               ],
+       ];
 
 [1]: http://www.gravatar.com/site/implement/images/ "See documentation at Gravatar for more information"
index 75bab4fc4c23eca902f75a113f6672d99d095c85..2a399d9384421d2f81239cc82b0deee34bd52829 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 // Warning: Don't change this file! It only holds the default config values for this addon.
-// Instead overwrite these config values in config/addon.config.php in your Friendica directory
+// Instead, copy this file to config/gravatar.config.php in your Friendica directory and set the correct values there
 
 return [
        'gravatar' => [
index ca78d9a0ad67fc76ef97ba2eb5ec67bf2129ac0e..520340080e9c0435d827a5c8a0478430a3766102 100644 (file)
@@ -16,14 +16,16 @@ Simply fill in the fields in the impressium settings page in the addons area of
 
 Manual Configuration
 --------------------
-If you for any reason you prefer to use a configuration file instead, you can set the following variables in the `config/addon.config.php` file
+If you for any reason you prefer to use a configuration file instead, you can set the following variables in the `config/impressum.config.php` file
 
-       'impressum' => [
-        'owner' => '',           This is the Name of the Operator
-        'ownerprofile' => '',    This is an optional Friendica account where the above owner name will link to
-        'email' => '',           A contact email address (optional)
-                                 Will be displayed slightly obfuscated as name(at)example(dot)com
-        'postal' => '',          Should contain a postal address where you can be reached at (optional)
-        'notes' => '',           Additional informations that should be displayed in the Impressum block
-        'footer_text' => '',     Text that will be displayed at the bottom of the pages.
-    ],
+       return [
+               'impressum' => [
+                       'owner' => '',           // This is the Name of the Operator
+                       'ownerprofile' => '',    // This is an optional Friendica account where the above owner name will link to
+                       'email' => '',           // A contact email address (optional)
+                                                                        // Will be displayed slightly obfuscated as name(at)example(dot)com
+                       'postal' => '',          // Should contain a postal address where you can be reached at (optional)
+                       'notes' => '',           // Additional informations that should be displayed in the Impressum block
+                       'footer_text' => '',     // Text that will be displayed at the bottom of the pages.
+               ],
+       ];
index 9fe672fcd5bc342c472bf315d648e3ac896015db..b4de4f37d823529309f2651bdbb4ac281464f184 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 // Warning: Don't change this file! It only holds the default config values for this addon.
-// Instead overwrite these config values in config/addon.config.php in your Friendica directory
+// Instead, copy this file to config/impressum.config.php in your Friendica directory and set the correct values there
 
 return [
        'impressum' => [
index f37bb9d508580468f86a9030fc90100f0bd5a4a0..dc0b49c7cee2a88db996da78f1178f679dce5e94 100644 (file)
@@ -12,38 +12,4 @@ However, it's possible with an option to automate the creation of a Friendica ba
 Note when using with Windows Active Directory: you may need to set TLS_CACERT in your site
 ldap.conf file to the signing cert for your LDAP server.
 
-The configuration options for this module may be set in the `config/addon.config.php` file
-e.g.:
-
-       'ldapauth' => [
-        // ldap hostname server - required
-        'ldap_server' => '',
-
-        // admin dn - optional - only if ldap server dont have anonymous access
-        'ldap_binddn' => '',
-
-        // admin password - optional - only if ldap server dont have anonymous access
-        'ldap_bindpw' => '',
-
-        // dn to search users - required
-        'ldap_searchdn' => '',
-
-        // attribute to find username - required
-        'ldap_userattr' => '',
-
-        // DN of the group whose member can auth on Friendica - optional
-        'ldap_group' => '',
-
-        // To create Friendica account if user exists in ldap
-        // Requires an email and a simple (beautiful) nickname on user ldap object
-        // active account creation - optional - default true
-        'ldap_autocreateaccount' => true,
-
-        // attribute to get email - optional - default : 'mail'
-        'ldap_autocreateaccount_emailattribute' => 'mail',
-
-        // attribute to get nickname - optional - default : 'givenName'
-        'ldap_autocreateaccount_nameattribute' => 'givenName',
-    ],
-
-...etc.
+The configuration options for this module are described in the `config/ldapauth.config.php` file.
index e89a2b55ed0eb56ef9b0a57ac82623e82a241e5e..2a79b34c10a4a184de02f499b60052f9dcee63b6 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 // Warning: Don't change this file! It only holds the default config values for this addon.
-// Instead overwrite these config values in config/addon.config.php in your Friendica directory
+// Instead, copy this file to config/ldapauth.config.php in your Friendica directory and set the correct values there
 
 return [
        'ldapauth' => [
index 72e140e7acf508e55d2c51c5b2f4d2b15d2fdf33..2935c74aaf8e54b765690b16535b170e269aaec4 100644 (file)
  * Note when using with Windows Active Directory: you may need to set TLS_CACERT in your site
  * ldap.conf file to the signing cert for your LDAP server.
  *
- * The configuration options for this module may be set in the config/addon.config.php file
- * e.g.:
- *
- * [ldapauth]
- * ; ldap hostname server - required
- * ldap_server = host.example.com
- * ; dn to search users - required
- * ldap_searchdn = ou=users,dc=example,dc=com
- * ; attribute to find username - required
- * ldap_userattr = uid
- *
- * ; admin dn - optional - only if ldap server dont have anonymous access
- * ldap_binddn = cn=admin,dc=example,dc=com
- * ; admin password - optional - only if ldap server dont have anonymous access
- * ldap_bindpw = password
- *
- * ; for create Friendica account if user exist in ldap
- * ;     required an email and a simple (beautiful) nickname on user ldap object
- * ;   active account creation - optional - default none
- * ldap_autocreateaccount = true
- * ;   attribute to get email - optional - default : 'mail'
- * ldap_autocreateaccount_emailattribute = mail
- * ;   attribute to get nickname - optional - default : 'givenName'
- * ldap_autocreateaccount_nameattribute = cn
- *
- * ...etc.
+ * The configuration options for this module are described in the config/ldapauth.config.php file
  */
 
 use Friendica\App;
index 7026af53ad3e4cafe088fb87c46b984ae9f7a1bd..18bc9c4ffd6ef2915b25c9582f47bf9e9a67594c 100644 (file)
@@ -1,16 +1,17 @@
 Leistungsschutzrecht Addon
 ==========================
 
-Main author Michael Vogel
+Main author: Michael Vogel
 
 This addon handles legal problems with the German link tax, named "Leistungsschutzrecht" by shortening preview texts.
-Additionally it is possibly to suppress preview pictures completely to avoid any legal problems.
+Additionally, it is possibly to suppress preview pictures completely to avoid any legal problems.
 
-## configuration
+## Configuration
 
-If you want to suppress pictures in previews, add this to your global `config/addon.config.php`:
-
-       'leistungsschutzrecht' => [
-               'suppress_photos' => true,
-       ],
+If you want to suppress pictures in previews, add this to your global `config/leistungsschutzrecht.config.php`:
 
+       return [
+               'leistungsschutzrecht' => [
+                       'suppress_photos' => true,
+               ],
+       ];
index bcc0f8243570c73ac1ed427d53f1850908edbf97..fc06feabc54d56d99e47ebcd35aa77e9d856ccc0 100644 (file)
@@ -31,10 +31,12 @@ Open the `config/local.config.php` file and add "libravatar" to the list of acti
         ...
     ]
 
-You can add one configuration variables for the addon to the `config/addon.config.php` file:
+You can add one configuration variables for the addon to the `config/libravatar.config.php` file:
 
-    'libravatar' => [
-        'default_avatar' => 'identicon',
-    ],
+       return [
+               'libravatar' => [
+                       'default_avatar' => 'identicon',
+               ],
+       ];
 
 [1]: http://wiki.libravatar.org/api/ "See API documentation at Libravatar for more information"
index 7f4f50f643b57fb3d1a407fab704bd18196e9691..a59a74ec35f395d9b29c5ed9a68e1b02210f29a1 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 // Warning: Don't change this file! It only holds the default config values for this addon.
-// Instead overwrite these config values in config/addon.config.php in your Friendica directory
+// Instead, copy this file to config/libravatar.config.php in your Friendica directory and set the correct values there
 
 return [
        'libravatar' => [
index f5a0388fe89362fbefdbd135a8894a2f8ec2bd08..e907fadfcd3c8c0953f5c424279ec5ebcaabadad 100644 (file)
@@ -29,11 +29,13 @@ the addon by adding _mathjax_ to the list in your `config/local.config.php` file
         ...
     ]
 
-and then providing the base URL after that in the `config/addon.config.php` file
+and then providing the base URL after that in the `config/mathjax.config.php` file
 
-       'mathjax' => [
-               'baseurl' => '[the URL to your MathJax installation]',
-       ],
+       return [
+               'mathjax' => [
+                       'baseurl' => '[the URL to your MathJax installation]',
+               ],
+       ];
 
 Usage
 =====
index d8709a181ba76d6ae830e8007de45fc8c0c498e1..78c748004c589f0d7b6e724f25599cda1ce593e1 100644 (file)
@@ -42,18 +42,20 @@ Open the `config/local.config.php` file and add "openstreetmap" to the list of a
          ...
      ]
 
-You can set configuration variables for the addon in the `config/addon.config.php` file:
+You can set configuration variables for the addon in the `config/openstreetmap.config.php` file:
 
-       'openstreetmap' => [
-               'tmsserver' => 'https://www.openstreetmap.org',
-               'nomserver' => 'https://nominatim.openstreetmap.org/search.php',
-               'zoom' => 16,
-               'marker' => 0,
-       ],
+       return [
+               'openstreetmap' => [
+                       'tmsserver' => 'https://www.openstreetmap.org',
+                       'nomserver' => 'https://nominatim.openstreetmap.org/search.php',
+                       'zoom' => 16,
+                       'marker' => 0,
+               ],
+       ];
 
 The *tmsserver* points to the tile server you want to use. Use the full URL,
 with protocol (http/s) and trailing slash. You can configure the default zoom
 level on the map with *zoom*. 1 will show the whole world and 18 is the highest
 zoom level available.
 
-Please see provided `config/openstreetmap.php` file for explanation on the additional configuration keys.
\ No newline at end of file
+Please see provided `config/openstreetmap.php` file for explanation on the additional configuration keys.
index e9252ca58317d8f37eaf3159f40ec232415d882e..c649da5f35bb4096212dea2b9a806edeb6dbd047 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 // Warning: Don't change this file! It only holds the default config values for this addon.
-// Instead overwrite these config values in config/addon.config.php in your Friendica directory
+// Instead, copy this file to config/openstreetmap.config.php in your Friendica directory and set the correct values there
 
 return [
        'openstreetmap' => [
index c51405f48c40e83447515df197c85e79611165d8..23ce75c07d8f61d462f5ee73ce55c3f13a44853e 100644 (file)
@@ -8,45 +8,7 @@ This addon replaces the default `mail()` function by the `PHPMailer` library, al
 Configuration
 -------------
 
-You can override the default value of the following config keys in your base Friendica install `config/addon.config.php` file:
-
-       'phpmailer' => [
-        // smtp (Boolean)
-        // Enables SMTP relaying for outbound emails
-        'smtp' => false,
-
-        // smtp_server (String)
-        // SMTP server host name
-        'smtp_server' => 'smtp.example.com',
-
-        // smtp_port (Integer)
-        // SMTP server port number
-        'smtp_port' => 25,
-
-        // smtp_secure (String)
-        // What kind of encryption to use on the SMTP connection.
-        // Options: '', 'ssl' or 'tls'.
-        'smtp_secure' => '',
-
-        // smtp_port_s (Integer)
-        // Secure SMTP server port number
-        'smtp_port_s' => 465,
-
-        // smtp_username (String)
-        // SMTP server authentication user name
-        // Empty string disables authentication
-        'smtp_username' => '',
-
-        // smtp_password (String)
-        // SMTP server authentication password
-        // Empty string disables authentication
-        'smtp_password' => '',
-
-        // smtp_from (String)
-        // From address used when using the SMTP server
-        // Example: no-reply@example.com
-        'smtp_from' => '',
-    ],
+The configuration options for this module are described in the `config/phpmailer.config.php` file.
 
 License
 =======
index b2916471af37f6fec12198886321e70330d55f7b..4b084da78afe71153a090de0198fdfa58177f436 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 // Warning: Don't change this file! It only holds the default config values for this addon.
-// Instead overwrite these config values in config/addon.config.php in your Friendica directory
+// Instead, copy this file to config/phpmailer.config.php in your Friendica directory and set the correct values there
 
 return [
        'phpmailer' => [
index 0878394edda4dfa4a68eb576775691593ad7ea0f..c336fc79c9675be175d8f5054a410423180f2d8d 100644 (file)
@@ -30,14 +30,16 @@ Open the `config/local.config.php` file and add "piwik" to the list of activated
         ...
     ]
 
-You can change 4 more configuration variables for the addon in the `config/addon.config.php` file:
-
-       'piwik' => [
-        'baseurl' => 'example.com/piwik/',
-        'sideid' => 1,
-        'optout' => true,
-        'async' => false,
-    ],
+You can change 4 more configuration variables for the addon in the `config/piwik.config.php` file:
+
+       return [
+               'piwik' => [
+                       'baseurl' => 'example.com/piwik/',
+                       'sideid' => 1,
+                       'optout' => true,
+                       'async' => false,
+               ],
+       ];
 
 Configuration fields
 ---------------------
index 7543097c68042e86d22ca3d8298ba35a468468d6..ba59b63d5e500615fb274ffe72f64bd623769911 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 // Warning: Don't change this file! It only holds the default config values for this addon.
-// Instead overwrite these config values in config/addon.config.php in your Friendica directory
+// Instead, copy this file to config/piwik.config.php in your Friendica directory and set the correct values there
 
 return [
        'piwik' => [
index a73ee96b82c938260a137976a87d29971090c529..047e41a3975e91477fc2ab9f7d17135621cd8245 100644 (file)
  *
  *   Configuration:
  *     Use the administration panel to configure the Piwik tracking addon, or
- *     in case you don't use this add the following lines to your config/addon.config.php
+ *     in case you don't use this, add the following lines to your config/piwik.config.php
  *     file:
  *
- *     [piwik]
- *     baseurl = example.com/piwik/
- *     sideid = 1
- *     optout = true ;set to false to disable
- *     async = false ;set to true to enable
+ *      return [
+ *          'piwik' => [
+ *              'baseurl' => '',
+ *              'sideid' => '',
+ *              'optout' => true,
+ *              'async' => false,
+ *          ],
+ *      ];
  *
  *     Change the siteid to the ID that the Piwik tracker for your Friendica
  *     installation has. Alter the baseurl to fit your needs, don't care
@@ -60,7 +63,7 @@ function piwik_analytics(App $a, string &$b)
        DI::page()['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . DI::baseUrl()->get() . '/addon/piwik/piwik.css' . '" media="all" />';
 
        /*
-        *   Get the configuration variables from the config/addon.config.php file.
+        *   Get the configuration values.
         */
        $baseurl = DI::config()->get('piwik', 'baseurl');
        $siteid  = DI::config()->get('piwik', 'siteid');
index fecc38ba89d17dfa284fe40072f3551459bd82ca..082379c3347597a970c0a60e6bd5db85ecd3416e 100644 (file)
@@ -6,21 +6,23 @@ Public Server is a Friendica addon which implements automatic account & post exp
 
 This is a modified version of the testdrive addon, DO NOT ACTIVATE AT THE SAME TIME AS THE TESTDRIVE ADDON.
 
-    'public_server' => [
-        // When an account is created on the site, it is given a hard expiration date of. 0 to disable.
-        'expiredays' => 0,
-        // Set the default days for posts to expire here. 0 to disable.
-        'expireposts' => 0,
-        // Remove users who have never logged in after nologin days. 0 to disable.
-        'nologin' => 0,
-        // Remove users who last logged in over flagusers days ago. 0 to disable.
-        'flagusers' => 0,
-        // For users who last logged in over flagposts days ago set post expiry days to flagpostsexpire. 0 to disable.
-        'flagposts' => 0,
-        'flagpostsexpire' => 0,
-    ],
+       return [
+               'public_server' => [
+                       // When an account is created on the site, it is given a hard expiration date of. 0 to disable.
+                       'expiredays' => 0,
+                       // Set the default days for posts to expire here. 0 to disable.
+                       'expireposts' => 0,
+                       // Remove users who have never logged in after nologin days. 0 to disable.
+                       'nologin' => 0,
+                       // Remove users who last logged in over flagusers days ago. 0 to disable.
+                       'flagusers' => 0,
+                       // For users who last logged in over flagposts days ago set post expiry days to flagpostsexpire. 0 to disable.
+                       'flagposts' => 0,
+                       'flagpostsexpire' => 0,
+               ],
+       ];
 
-Set these in your `config/addon.config.php` file. By default nothing is defined in case the addon is activated accidentally.
+Set these in your `config/public_server.config.php` file. By default, nothing is defined in case the addon is activated accidentally.
 They can be ommitted or set to 0 to disable each option.
 The default values are those used by friendica.eu, change these as desired.
 
index 47ad4107aed6f7c7f8ff98be92d1d5af15dba467..6315cc93d64efcaaa3468a9cd9aa286aba00b00b 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 // Warning: Don't change this file! It only holds the default config values for this addon.
-// Instead overwrite these config values in config/addon.config.php in your Friendica directory
+// Instead, copy this file to config/public_server.config.php in your Friendica directory and set the correct values there
 
 return [
        'public_server' => [
index 33137984c15c13aea57723fbaaf21d40c99edb9b..ab53a3001d8660df789fcab3a63a73abd0560edb 100644 (file)
@@ -1,11 +1,13 @@
-To let the connector work properly you should define an application name in `config/addon.config.php`:
+To let the connector work properly you should define an application name in `config/pumpio.config.php`:
 
-       'pumpio' => [
-               'application_name' => '',
-               // Displays forwarded posts like "wall-to-wall" posts.
-               'wall-to-wall_share' => false,
-               // Given in minutes
-               'poll_interval' => 5,
-       ],
+       return [
+               'pumpio' => [
+                       'application_name' => '',
+                       // Displays forwarded posts like "wall-to-wall" posts.
+                       'wall-to-wall_share' => false,
+                       // Given in minutes
+                       'poll_interval' => 5,
+               ],
+       ];
 
 This name appears at pump.io and is important for not mirroring back posts that came from Friendica.
index 4f3dc460d2ce2013c8cc9e61e18fd4d989ce307f..e2c5b72613b2702ffc2d05ab9f75ae1d29085d2f 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 // Warning: Don't change this file! It only holds the default config values for this addon.
-// Instead overwrite these config values in config/addon.config.php in your Friendica directory
+// Instead, copy this file to config/pumpio.config.php in your Friendica directory and set the correct values there
 
 return [
        'pumpio' => [
index 59512aefd057a85714d9cd277c68a4b49313c66c..675f64e29dc6280e0b0ac06a895380c582a633b0 100644 (file)
@@ -6,12 +6,14 @@ Testdrive is a Friendica addon which implements automatic account expiration so
 
 When an account is created on the site, it is given a hard expiration date of
 
-       'testdrive' => [
-               'expiredays' => 30,
-       ],
+       return [
+               'testdrive' => [
+                       'expiredays' => 30,
+               ],
+       ];
 
-Set this in your `config/addon.config.php` file to allow a 30 day test drive period.
-By default no expiration period is defined in case the addon is activated accidentally.
+Set this in your `config/testdrive.config.php` file to allow a 30-day test drive period.
+By default, no expiration period is defined in case the addon is activated accidentally.
 
 There is no opportunity to extend an expired account using this addon.
 Expiration is final.
index c10acf825a1fc5f13fb5c540d13f7a72caa393cb..f4b1dc0f95d675b67ad3ccc462e8547d203d6674 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 // Warning: Don't change this file! It only holds the default config values for this addon.
-// Instead overwrite these config values in config/addon.config.php in your Friendica directory
+// Instead, copy this file to config/testdrive.config.php in your Friendica directory and set the correct values there
 
 return [
        'testdrive' => [
index f1f875415229330cc0a575737f403b217f6d1dc7..2efdddcadc4f06af0845915a87a3787b092a0774 100644 (file)
@@ -24,12 +24,14 @@ Open the `config/local.config.php` file and add "twitter" to the list of activat
         ...
     ]
 
-Add your key pair to your global `config/addon.config.php`.
-
-       'twitter' => [
-               'consumerkey' => 'your consumer_key here',
-               'consumersecret' => 'your consumer_secret here',
-       ],
+Add your key pair to your `config/twitter.config.php` file.
+
+       return [
+               'twitter' => [
+                       'consumerkey' => 'your consumer_key here',
+                       'consumersecret' => 'your consumer_secret here',
+               ],
+       ];
 
 After this, users can configure their Twitter account settings from "Settings -> Addon Settings".
 
index e39de2f9af5fa7634969eca034d009fddda8ebb8..8895814d3ccdc14d3a0e99d2bdf559081e3ce2c3 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 // Warning: Don't change this file! It only holds the default config values for this addon.
-// Instead overwrite these config values in config/addon.config.php in your Friendica directory
+// Instead, copy this file to config/twitter.config.php in your Friendica directory and set the correct values there
 
 return [
        'twitter' => [
index 80ac14a6d7f47a47d2a1049370aee7e90e9ae496..99985d97a142e922a7300b08bec0558a15c49da4 100644 (file)
  *     we do not need "Twitter as login". When you've registered the app you get the
  *     OAuth Consumer key and secret pair for your application/site.
  *
- *     Add this key pair to your global config/addon.config.php or use the admin panel.
+ *     Add this key pair to your config/twitter.config.php file or use the admin panel.
  *
- *             'twitter' => [
- *                 'consumerkey' => '',
- *             'consumersecret' => '',
- *      ],
+ *             return [
+ *          'twitter' => [
+ *                     'consumerkey' => '',
+ *                 'consumersecret' => '',
+ *          ],
+ *      ];
  *
  *     To activate the addon itself add it to the system.addon
  *     setting. After this, your user can configure their Twitter account settings