'; $background = '

' . t('Background') . '

'; $background .= t('The idea for "User Details" started as a request from an end-user, to have a centreal place for quick links to important locations on the website.') . '
'; $background .= t('For Drupal 6 this was just some custom code you could add to a custom block.') . '
'; $background .= t('For Drupal 7 the "User Details" module has expanded to its own module, which allows non-coders to alter and customize to thier liking.'); $background .= '

'; $overview = '

' . t('Overview') . '

'; $overview .= t('The "User Details" module is a basic collection of user data (or variables) and commonly used links in a block. In no way is this a required part of any website, only for the ease of naviagtion.') . '
'; $overview .= t('Below is a list of all the stats and links that can be turned on as part of the "User Details" blocks.'); $overview .= t('The links come with some default images, but you can change these by uploading an image to your web server and typing in the location for each image.'); $overview .= '

'; $overview_loggedin = '
'; $overview_loggedin .= '

' . t('User Details: loggedin user') . '

'; $overview_loggedin .= ''; $overview_loggedin .= '
'; $overview_authored = '
'; $overview_authored .= '

' . t('User Details: authored user') . '

'; $overview_authored .= ''; $overview_authored .= '
'; $closing = '
'; $closing .= '

'; $closing .= t('NOTE:') . '
'; $closing .= t('*All users will be able to see: stats, user links content list.') . '
'; $closing .= t('*All admin will be able to see: stats, user links, content list and admin links.') . '
'; $closing .= t('*The custom links have a dropdown menu to determine which type of user will be able to view them.'); $closing .= '

'; $closing .= t('This module is under active development. Any feature request, bug report or issue you might find, please make a new issue in the ') . '' . t('"User Details" issue queue') . '.'; $closing .= '
'; $hr = '
'; $form['intro']['markup'] = array( '#markup' => $intro, ); $form['background']['markup'] = array( '#markup' => $background, ); $form['overview']['markup'] = array( '#markup' => $overview, ); $form['overview_loggedin']['markup'] = array( '#markup' => $overview_loggedin, ); $form['overview_authored']['markup'] = array( '#markup' => $overview_authored, ); $form['closing']['markup'] = array( '#markup' => $closing, ); $form['hr']['markup'] = array( '#markup' => $hr, ); return $form; } ?>