} // end of else (there are currently no valid install files ?> </td></tr> <!-- The first td of this row is the box in the top row, far left. --> <tr><td width="22%" valign="top" class="vncellreq"><?php echo _THEBRIG_CUSTOM_TB; ?> </td> <!-- The next td is the larger box to the right, which contains the text box and info --> <td width="78%" class="vtable"> <?php // This obtains a list of files that match the criteria (named anything *, excluding FreeBSD) // within the /work folder. $file_list = thebrig_tarball_list("*", array("FreeBSD")); // This filelist is then used to generate html code with checkboxes $installLib = thebrig_checkbox_list($file_list); if ($installLib) { // If the array exists and has a size, then display that html code echo $installLib; } else { // the array does not exist or has no size, so inform user there are no tarballs found. echo sprintf(_THEBRIG_NO_CUST_TB); } // end of else (there are currently no valid install files ?> </td></tr> <!-- This is the Delete button --> <tr><td width="22%" valign="top"> </td> <td width="78%">
echo "\n"; } } //========================================================================================================================================================= // nearly the end of the borrowed bits //========================================================================================================================================================= ?> </head> <body> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <?php // This obtains a list of files that match the criteria (named anything *, excluding FreeBSD) // within the /work folder. $file_list = thebrig_tarball_list("FreeBSD*partial*"); // This filelist is then used to generate html code with checkboxes $DLfiles = thebrig_dl_list($file_list); if ($DLfiles) { // If the array exists and has a size, then display that html code echo $DLfiles; } else { // the array does not exist or has no size, so inform user there are no tarballs found. echo '<tr><td width="100%" class="tabcont">'; echo sprintf(_THEBRIG_NO_PART_TB); echo '</td></tr>'; } // end of else (there are currently no valid install files ?> </table> </body>