]> git.mxchange.org Git - friendica-addons.git/blob - newmemberwidget/README.md
Remove references to include/bbcode.php
[friendica-addons.git] / newmemberwidget / README.md
1 New Member Widget
2 =================
3
4 With this addon you can enable a widget for the sidebar of the network tab,
5 which will be displayed for new members. It contains a linkt to friendicas
6 introduction pages at /newmember and optionally
7
8  * a link to the global support forum
9  * a link to an eventually existing local support forum
10  * a welcome message you might want to send to your new members.
11
12 There is no extra styling added for this added, so it should work with any
13 theme you have selected, or your user selects. But it was only tested with
14 duepuntozero,quattro and clean.
15
16 Testing it
17 ----------
18 You want to test it, but you don't want to create a new account? Take your fav
19 text editor (yeah emacs will do as well) and edit the newmemberwidget.php file.
20 In line 21 you will find a if clause, just add a ! infront of the
21
22         x(!_SESSION 
23
24 that will negate the requirement of being a new member, so don't forget the
25 remove that ! again after testing ;-)
26
27 Translations
28 ------------
29 If you want to translate this addon, please grab a copy of lang/C/message.po
30 and copy it to lang/XX/message.po where XX is the language you want to
31 translate for (i.e. de, fr, nb-no). After you translated the content go to the
32 root of your friendica directory and run
33
34         php util/po2php.php addon/newmember/lang/XX/message.po
35
36 to translate the message.po file into the strings.php file needed by friendica
37 to catch your translations.
38
39 With the translated files, either do a pull request at github, or send me the
40 two files (message.po and strings.php) you just worked with as attachment to an
41 email.
42
43 Author
44 ------
45  * Tobias Diekershoff <tobias.diekershoff(at)gmx.net>
46
47 History
48 -------
49  * **Version 1** (2014-06-01): Initial Release
50
51 License
52 -------
53 This addon is licensed under the [MIT License](http://opensource.org/licenses/MIT).
54
55 > Copyright (c) 2014 Tobias Diekershoff
56
57 > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
58
59 > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
60
61 > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.