X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mod%2Fnewmember.php;h=b3bf310d5bb8515f938bbd0a39771513d82a83d4;hb=8a1581caddd6dc902ab26a69726f5d661c335a3f;hp=683463ecb87dd2aabe9b52557f010084693025b8;hpb=7127626f55f0ae5843d38145bf80022b98e4a8d8;p=friendica.git diff --git a/mod/newmember.php b/mod/newmember.php old mode 100755 new mode 100644 index 683463ecb8..b3bf310d5b --- a/mod/newmember.php +++ b/mod/newmember.php @@ -1,51 +1,59 @@ ' . 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 = '

' . 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. 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('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 .= '
'; return $o; -} \ No newline at end of file +}