. */ require_once("./include/include.php"); require_once("./include/SendMailPage.php"); page_header(); echoln("

Welcome at the '".$setup['EventSubject']."' applications website

"); echoln("On this website you can apply, edit your application, accept the members of your local (for boards) and find the list of accepted participants."); echoln("

Information about the event

"); echoln("This ".$setup['SetupEventType']." is organized by ".$setup['EventOrganizer']." in cooperation with "); echoln("AEGEE-Europe. It will take place between ".$setup['EventDateStart']." and "); echoln($setup['EventDateEnd'].". The application opens on ".$setup['EventDateAppStart']." and will close on ".$setup['EventDateAppEndVisa']." for visa applications and on "); echoln($setup['EventDateAppEnd']." for non-visa applications. "); if( $setup['SetupWSNumber']>0 ) echoln("You can change your workshop choices until ".$setup['EventDateWorkshopFix'].". "); if( $setup['SetupBoardApproval']=="yes" ) echoln("Local boards have until ".$setup['EventDatePartTypeFix']." to approve the applications of their members and assign a participant type. "); echoln("
If you have any questions about the event, please contact the application responsible of ".$setup['EventOrganizer'].": "); echoln(SendMailPage::getLink("applresp", $setup['EventAppResponsible']).". "); echoln("For technical questions about the application, please contact the webmaster: "); echoln(SendMailPage::getLink("webmaster", $setup['WebmasterName'])."."); $queryBuilder = new QueryBuilder($GLOBALS['DB'], "info"); $queryBuilder->addField(array("id", "subject", "access", "dateadd", "datemodify")); $queryBuilder->addWhereIn("access", array("public", "aegee")); $queryBuilder->addOrderDesc("dateadd"); $queryBuilder->setLimit(3); if( $GLOBALS['DB']->select($queryBuilder->toQuery()) > 0 ) { echoln("

Chair news (latest items)

"); echoln(""); echoln(" "); echoln(" "); echoln(" "); echoln(" "); echoln(" "); echoln(" "); $i = 1; while( $row = $GLOBALS['DB']->fetchAssoc() ) { $i++; if( ($i%2)==1 ) echoln(" "); else echoln(" "); if( $row['access']=="aegee" ) echoln(" "); elseif( $row['access']=="public" ) echoln(" "); echoln(" "); echoln(" "); echoln(" "); echoln(" "); } echoln("
 SubjectDate createdDate modified
\"AEGEE\"Public".$row['subject']."".get_date($row['dateadd'])."".get_date($row['datemodify'])."
"); } echoln("

Privacy statement

"); echoln("View the current Privacy statement (v".$setup['PrivacyVersion'].")."); echoln("

How to ...

"); echoln(""); page_footer(); ?>