| 1 |
<?php
|
| 2 |
// $Id: uts.help.inc,v 1.9 2008/10/13 01:27:35 boombatower Exp $
|
| 3 |
/**
|
| 4 |
* @file
|
| 5 |
* Provide help text for Usability Testing Suite.
|
| 6 |
*
|
| 7 |
* Copyright 2008 by Jimmy Berry ("boombatower", http://drupal.org/user/214218)
|
| 8 |
*/
|
| 9 |
|
| 10 |
/**
|
| 11 |
* Implementation of hook_help().
|
| 12 |
*/
|
| 13 |
function uts_help($path, $arg) {
|
| 14 |
switch ($path) {
|
| 15 |
case 'admin/help#uts':
|
| 16 |
return t('<p>
|
| 17 |
For step-by-step instructions on how to setup a usability study see
|
| 18 |
<a href="@uts_admin">usability testing suite admin</a> page. If you plan on collaborating in
|
| 19 |
creating a study definition make sure you give permission to all the user that will be involved.
|
| 20 |
</p>
|
| 21 |
<p>
|
| 22 |
All plug-ins that you want to use on a study must be enabled to show up in the list when creating/editting
|
| 23 |
a study. Plug-ins are displayed on the <a href="@modules">modules</a> page under the group heading
|
| 24 |
<i>Usability testing suite - plugins</i>.
|
| 25 |
</p>
|
| 26 |
<p>
|
| 27 |
Any bugs, questions, or concerns should be placed in the
|
| 28 |
<a href="http://drupal.org/project/issues/uts">Usability Testing Suite issue queue</a>.
|
| 29 |
</p>', array('@uts_admin' => url('admin/uts'),
|
| 30 |
'@modules' => url('admin/build/modules')));
|
| 31 |
case 'admin/uts/analyze':
|
| 32 |
return t('<p>
|
| 33 |
Studies that are marked as <em>active</em> or <em>closed</em> and have completed sessions will be displayed below.
|
| 34 |
After selecting a study to analyze you will be presented with the analysis display.
|
| 35 |
</p>');
|
| 36 |
case 'admin/uts/environments':
|
| 37 |
return t('<p>
|
| 38 |
Environments are used as the basis for the environment a participant will start with when beginning a study.
|
| 39 |
You can setup the environment how it bests fits the study. Once you have created an environment you can
|
| 40 |
<i>open</i> the environment and login as the super user using the username and password specified on the
|
| 41 |
<a href="@configuration">configuration</a> page
|
| 42 |
</p>',
|
| 43 |
array('@configuration' => url('admin/uts/configuration')));
|
| 44 |
case 'admin/uts/invite':
|
| 45 |
return t('<p>
|
| 46 |
The message to be sent can be modified on the <a href="@configuration">configuration</a> page.
|
| 47 |
</p>',
|
| 48 |
array('@configuration' => url('admin/uts/configuration')));
|
| 49 |
}
|
| 50 |
}
|