$displayManager->OutputSettingsJsArray($recentSettings->recentSettings); ?> </span> <div style="font-size:18px; font-weight: bold; text-align: left;">Recent Settings</div> <div style="border: 1px solid #CCCCCC; width: 100%; margin-top: 15px;" id="settingsDiv"> <div id="recentSettingsDiv"> <?php $displayManager->OutputRecentSettings($recentSettings->recentSettings); ?> </div> </div> </td> </tr> </table> </div> <div id="resultsTab" style=" display: none;"> </div> <?php EndContentArea(true, $formName, ""); ?> <!-- End of Contents Area --> <!-- This form is used to export the profiling results as .csv file --> <!-- If we put the form inside the innerHTML and inside another form, the Chrome and safari will ignore this form--> <form id="getCSVFileForm" action="performanceReport_Export.php" method="post" > </form> </tr> </table> </body> </html>
</tr> <?php } ?> </table> <!-- Hidden flag to say whether or not Delete is permitted --> <input type="hidden" name="<?php echo $okToDeleteID; ?> " value="<?php echo $initOkToDeleteVal; ?> " > <?php DisplayPaginationControl($currPage, $numUsers, $pageSize, 'usermanagement.php', $sortColumn, $sortDirection); ?> <?php EndContentArea(true, $formName, NULL); ?> <!-- End of Contents Area --> </tr> </table> </body> </html>
$control->col3Vals = array(); foreach ($groupsSelected as $selectedGroup) { if ($selectedGroup == MgGroup::Everyone) { $control->col3List[] = $everyoneGroupSelectorLabel; $control->col3Vals[] = MgGroup::Everyone; } else { $control->col3List[] = $selectedGroup; $control->col3Vals[] = $selectedGroup; } } $control->col3OnChange = "DisableOption( '" . $groupsSelectedID . "[]', '" . MgGroup::Everyone . "', 'The Everyone group is built-in. Membership in this group cannot be removed.');"; } else { $control->col3List = $groupsSelected; } DisplayAddRemoveControl($control); ?> <?php DisplaySaveCancelBar(); EndContentArea(true, $formName, $userNameID); ?> <!-- End of Contents Area --> </tr> </table> </body> </html>
DisplayResourceServicePropVals($pageEnabled, $resourceServiceProps); } DisplayFeatureServicePropVals($pageEnabled, $featureServiceProps); DisplayTileServicePropVals($pageEnabled, $tileServiceProps); ?> <br> <?php DisplaySaveCancelBar(); ?> <?php $initialFocus = ""; if ($serverRec->poweredUp) { if ($bSiteServer) { $initialFocus = SITE_SERVICE_SESSION_TIMEOUT_ID; } else { $initialFocus = FEATURE_SERVICE_CONN_POOL_ENABLED_ID; } } EndContentArea(true, $formName, $initialFocus); ?> <!-- End of Contents Area --> </tr> </table> </body> </html>
echo $mappingNameID; ?> " type="text" value="<?php echo $mappingName; ?> " size="60"></td> </tr> <tr> <td class="editUserInputLabel">Path to External Folder:</td> <td class="inputFormValue"><input class="inputFormValue" name="<?php echo $locationID; ?> " type="text" value="<?php echo $location; ?> " size="60"></td> </tr> </table> <?php DisplaySaveCancelBar(); EndContentArea(true, $formName, $mappingNameID); ?> <!-- End of Contents Area --> </tr> </table> </body> </html>
</tr> <tr> <?php DisplayLefthandSash($menuItem); ?> <!-- Contents Area --> <?php BeginContentArea($formName); DeclareHiddenVars($pageName); DisplayTitleBar($pageTitle, $helpPage); DisplaySaveCancelBar(); DisplayConfirmationMsg($confirmationMsg); DisplayErrorMsg($errorMsg); // Input Area DisplayWFSServicePropVals($WFSProps); DisplayWFSServiceContactPropVals($WFSProps); echo "<br>\n"; DisplaySaveCancelBar(); EndContentArea(true, $formName, WFS_SERVICE_TITLE_ID); ?> <!-- End of Contents Area --> </tr> </table> </body> </html>
<!-- User Area --> <?php $control = new AddRemoveControlRecord(); $control->leadInStr = 'Members'; $control->col1Name = $usersNotSelectedID . '[]'; $control->col3Name = $usersSelectedID . '[]'; $control->col1Heading = 'Available users'; $control->col3Heading = 'Users in this group'; $control->col1List = $usersNotSelected; $control->col3List = $usersSelected; $control->enabled = true; $control->size = 10; DisplayAddRemoveControl($control); ?> <?php DisplaySaveCancelBar(); EndContentArea(true, $formName, $descriptionID); ?> <!-- End of Contents Area --> </tr> </table> </body> </html>
</tr> <tr class="logDisplayTable"> <!-- Contents Area --> <?php BeginContentArea(null); DisplayTitleBar($pageTitle, NULL); DisplayConfirmationMsg($confirmationMsg); DisplayErrorMsg($errorMsg); ?> <table class="logDisplayTable" align="center" > <tr> <td class="logDisplayTable"><textarea class="logDisplayTable"><?php echo $logContents; ?> </textarea></td> </tr> </table> <?php EndContentArea(true, null, ""); ?> <!-- End of Contents Area --> </tr> </table> </body> </html>
"></td> </tr> <tr> <td class="loginInputLabel">Password:</td> <td class="loginInputFormValue"><input class="loginInputFormValue" name="<?php echo $adminPasswordID; ?> " type="password" class="TableCell" size="50" value=""></td> </tr> </table> <!-- Login Bar --> <br> <table class="saveCancel" border="0" cellspacing="0" cellpadding="4"> <tr> <td class="resizableButton"><input class="resizableButton" name="Login" type="submit" value="Login"></td> </tr> </table> <?php EndContentArea(true, $formName, $adminIDID); ?> <!-- End of Contents Area --> </tr> </table> </body> </html>
<?php $control = new AddRemoveControlRecord(); $control->leadInStr = 'Members'; $control->col1Name = $usersNotSelectedID . '[]'; $control->col3Name = $usersSelectedID . '[]'; $control->col1Heading = 'Available users'; $control->col3Heading = 'Users in this group'; $control->col1List = $usersNotSelected; $control->col3List = $usersSelected; $control->enabled = true; $control->size = 10; DisplayAddRemoveControl($control); ?> <?php DisplaySaveCancelBar(); ?> <?php EndContentArea(true, $formName, $groupNameID); ?> <!-- End of Contents Area --> </tr> </table> </body> </html>
function RegisterPopup($pageName, $registerSelf, $valuesToPersist) { $popupForm = 'popupRegistrationForm'; $popupName = $registerSelf ? 'window.name' : 'parent.name'; echo '<body onLoad="SetElementValue(' . "'" . POPUP_NAME_ID . "', " . $popupName . " );SubmitForm('" . $popupForm . "');" . '">' . "\n"; BeginContentArea($popupForm); DeclareHiddenVars($pageName); if ($valuesToPersist != NULL) { foreach ($valuesToPersist as $id => $val) { echo '<input type="hidden" name="' . $id . '" value="' . $val . '">', "\n"; } } EndContentArea(true, $popupForm, NULL); echo '</body>' . "\n"; exit; }