|
|
|
0) {
echo _("Please enter your password to change the server preferences:");
}
?>
|
|
\n";
echo " | \n";
echo "" . $message . " | \n";
echo " | \n";
echo "\n";
echo "\n";
echo " | \n";
echo " \n";
}
?>
|
0) {
$profiles = $files;
if (!empty($_COOKIE["lam_default_profile"]) && in_array($_COOKIE["lam_default_profile"], $files)) {
$selectedProfile[] = $_COOKIE["lam_default_profile"];
}
else {
$selectedProfile[] = $conf->default;
}
$profilesExisting = true;
$select = new htmlSelect('filename', $profiles, $selectedProfile);
$select->setIsEnabled($profilesExisting);
$group->addElement($select);
$passwordField = new htmlInputField('passwd');
$passwordField->setIsPassword(true);
$passwordField->setIsEnabled($profilesExisting);
$passwordField->setFieldSize(20);
$group->addElement($passwordField);
$button = new htmlButton('submit', _("Ok"));
$button->setIsEnabled($profilesExisting);
$group->addElement($button);
$group->addElement(new htmlHelpLink('200'));
$tabindex = 1;
parseHtml(null, $group, array(), false, $tabindex, 'user');
}
?>
|
|
|
|
|
|