. */ include("./include/include.php"); include("./include/Help.php"); admin_header(); if( !in_array("help_view", $_SESSION['sess_functions']) ) { echoln("You are not authorized to see this page."); }else { // Read the files from ./admin/*.help.php and add them to $fields; $help = array(); $helpfields = array(); $dir = dirname($_SERVER["SCRIPT_FILENAME"])."/help/*.php"; if( is_dir(dirname($dir)) ) { foreach( glob($dir) as $file ) { if( is_file($file) ) { include("./help/".basename($file)); $name = basename($file, ".php"); $class = "Help".$name; $help[ $name ] = new $class(); $helpsort[ $name ] = $help[ $name ]->get_title(); } } asort($helpsort); $helpfields = array_keys($helpsort); }else { debug(dirname($dir)." does not exist, failed loading application form fields"); } echoln("

Help

"); echoln("

Index

"); echoln(""); echoln("Top"); for( $i=0; $iget_name()."\">

".$help[ $helpfields[$i] ]->get_title()."

"); $help[ $helpfields[$i] ]->get_help(); echoln("

Top"); } } echo "


"; echo " Important for the participants, the url to apply:\n"; echo "

http://".$FULL_URL."\n"; echo "

Direct link for the application form (please don't use it, since in this way people will\n"; echo " not see the login for editing applications and assigning participant types):\n"; echo "

https://".$FULL_URL."apply.php?login\n"; echo "

The application form is supposed to be self explaining. Some comments:\n"; echo "

\n"; echo "

Another public page is the list with accepted people:\n"; echo "

http://".$FULL_URL."participants.php\n"; echo "

As long as you don't put the status of an application to \"Accepted\" or \"Arrived\",\n"; echo " people will not show in this list (so no \"cancelled\", \"not accepted\" and \"no status\"\n"; echo " applications in this list). The list is directly generated from the database, so changes\n"; echo " made in admin part will immediately show on this page.\n"; echo "

Ok, maybe more interesting part for you is the admin part, at the following url:\n"; echo "

https://".$FULL_URL."admin/\n"; echo "

You'll have to log in to get to this page. You have different access level (secretary has\n"; echo " 'chair' access, local organizers have 'local organizer' access). In case you want more\n"; echo " people to have access, just write add them (local organizers cannot add chair or admin, chair cannot add admin). It is possible to give people\n"; echo " read-only access (they will not be able to change anything).\n"; echo "

After logging in, you'll see the menu at the left side. Logout button is at the top,\n"; echo " please do not forget to use it when you are finished.\n"; echo "

Please also note that some functions might not be available for you due to the access\n"; echo " rights. So don't worry if a described function is not there, that just means you don't\n"; echo " have access here. In case you think you should have access here, please let me know.\n"; echo "

Select (click to (de)select)\n"; echo "
Here you can see which participants are shown in most view (\"Participant list\" and\n"; echo " \"Registration list\" are exceptions). Click on the \"Green\n"; echo " to change it in \"Red.\n"; echo "

View function\n"; echo "
This section handles the different view of applications\n"; echo "

\n"; echo "

Administrator functions\n"; echo "
This part is about administration of everything.\n"; echo "

\n"; echo "

Totals\n"; echo "
This is kind like statistical data, should be self explaining. Only few remarks:\n"; echo "

\n"; echo "

Further remarks:\n"; echo "

\n"; admin_footer(); ?>