X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mod%2Fnewmember.php;h=c2ffe6464ed3fd2c96ba0c079c69774953ca3d80;hb=895b3abf320a28ecf0f797f4f4900e6baf429308;hp=60ca49757d9fb6041ca900bbe2eaef2b4cf17c45;hpb=8aa25523721303b6883e1a793f20997f8a33ec0a;p=friendica.git diff --git a/mod/newmember.php b/mod/newmember.php old mode 100755 new mode 100644 index 60ca49757d..c2ffe6464e --- a/mod/newmember.php +++ b/mod/newmember.php @@ -1,45 +1,61 @@ ' . t('Welcome to Friendica') . ''; - - $o .= '

' . t('New Member Checklist') . '

'; - +/** + * @file mod/newmember.php + */ +use Friendica\App; +use Friendica\Core\Config; +use Friendica\Core\L10n; + +function newmember_content(App $a) +{ + $o = '
'; + $o .= '

' . L10n::t('Welcome to Friendica') . '

'; + $o .= '

' . L10n::t('New Member Checklist') . '

'; $o .= '
'; - - $o .= t('We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page.'); - + $o .= L10n::t('We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear.'); + $o .= '

' . L10n::t('Getting Started') . '

'; + $o .= ''; + $o .= '

' . L10n::t('Settings') . '

'; + $o .= ''; + $o .= '

' . L10n::t('Profile') . '

'; + $o .= ''; + $o .= '

' . L10n::t('Connecting') . '

'; $o .= ''; + $o .= '

' . L10n::t('Groups') . '

'; + $o .= ''; + $o .= '

' . L10n::t('Getting Help') . '

'; + $o .= ''; + $o .= '
'; $o .= '
'; return $o; -} \ No newline at end of file +}