<?php
/********************************************************
 * VO groups will be shown on the 'VO groups' page if 	*
 * $vogroups array is not empty.			*
 *							*
 * Array elements has the following format:		*
 *	"group name" => array (				*
 * 		"vo1 name",				*
 * 		"vo2 name",				*
 * 		...					*
 * 		"voN name",				*
 *	)						*
 *							*
 * If $vogroups_default variable is defined, it should	*
 * contains the name of default group. All served VOs	*
 * that does not belong to any defined groups will be 	*
 * listed under the default group.			*
 * If there is no variable defined - default group will	*
 * not be listed					*
 *							*
 ********************************************************/

/*
	$vogroups = array (
		"Certified VOs" => array (
			"testbed.vo1",
			"testbed.vo2"
		)
	);

	$vogroups_default = "Uncertified VOs";

	$vogroups_l10n = array (
		"Certified VOs" => array (
			"uk" => "Сертифіковані ВО",
			"ru" => "Сертифицированные ВО"
		),
		"Uncertified VOs" => array (
			"uk" => "Несертифіковані ВО",
			"ru" => "Несертифицированные ВО"
		)
	);
*/

?>
