blob: 47bd7b0d8d3646707a9ad3f653df0c996d92fd5e [file] [log] [blame]
<?php
$dropPrefix = array();
$dropPrefix[]="R";
$dropPrefix[]="S";
$dropPrefix[]="I";
$dropPrefix[]="M";
$dropPrefix[]="N";
// patch builds not expected in equinox
// $dropPrefix[]="P";
$dropType = array();
$dropType[]="Latest Release";
$dropType[]="Neon Stable Builds";
$dropType[]="Neon Integration Builds";
$dropType[]="Mars Maintenance Builds";
$dropType[]="Neon Nightly Builds";
// patch builds not expected in equinox
// $dropType[]="Patch Builds";
// the "prefix" array and dropType array must be of same size, defined in right order
for ($i = 0; $i < count($dropType); $i++) {
$typeToPrefix[$dropType[$i]] = $dropPrefix[$i];
}
// intentionally left unclosed, since 'included' in PHP section