Beispiel #1
0
<li><?php 
echo $lang->g('LabelMultiDownloadStep2');
?>
</li>
<li><?php 
echo $lang->g('LabelMultiDownloadStep3');
?>
</li>
</ol>

<div class="FormRow">
<label style="width:auto;" for="chkSubfolders"><?php 
echo $lang->g('LabelMultiDownloadUseSubfolders');
?>
</label>&nbsp;<input type="checkbox" id="chkSubfolders" name="chkSubfolders"<?php 
echo HTMLstuff::CheckedStr($UseSubfoldersInDownload);
?>
 />
</div>

<div class="Clear Separator"></div>

<div class="FormRow">
<input type="submit" class="FormButton" value="<?php 
echo $ButtonText;
?>
" />
<input type="button" class="FormButton" value="<?php 
echo $lang->g('ButtonReset');
?>
" onclick="window.location='download_multi.php';" />
Beispiel #2
0
	<input type="text" id="txtSmtpPort" name="txtSmtpPort" maxlength="5" value="<?php 
echo $SmtpPort;
?>
"<?php 
echo HTMLstuff::DisabledStr($DisableControls);
?>
 />
	</div>
	
	<div class="FormRow">
	<label for="chkSmtpAuth"><?php 
echo $lang->g('LabelSMTPAuth');
?>
: <em>*</em></label>
	<input type="checkbox" id="chkSmtpAuth" name="chkSmtpAuth"<?php 
echo HTMLstuff::CheckedStr($SmtpAuth);
echo HTMLstuff::DisabledStr($DisableControls);
?>
 />
	</div>
	
	<?php 
/* ?>

	<div class="FormRow">
	<label for="txtEmailTemplate1" style="width:90px;">Template 1: <em>*</em></label>
	<textarea id="txtEmailTemplate1" name="txtEmailTemplate1" rows="12" cols="36"><?php echo $MailTemplateResetPassword ?>
	</textarea>
	</div>

	<?php */
Beispiel #3
0
?>
</option>
</select>

<label for="radASC"><?php 
echo $lang->g('LabelSortingASC');
?>
<input type="radio" id="radASC" name="radSORT" value="ASC"<?php 
echo HTMLstuff::CheckedStr($OrderMode == 'ASC');
?>
 /></label>
<label for="radDESC"><?php 
echo $lang->g('LabelSortingDESC');
?>
<input type="radio" id="radDESC" name="radSORT" value="DESC"<?php 
echo HTMLstuff::CheckedStr($OrderMode == 'DESC');
?>
 /></label>

<input type="submit" id="btnSearch" name="btnSearch" value="<?php 
echo $lang->g('ButtonSearch');
?>
" />

<input type="button" id="btnSlideshow" name="btnSlideshow" value="<?php 
echo $lang->g('ButtonIndexSlideshow');
?>
" onclick="OpenSlideColorBox();" />

</fieldset>
</form>
Beispiel #4
0
?>
" />
<br />
<label for="chkFilterSPECIAL">NO-SPECIALS</label>
<input type="checkbox" id="chkFilterSPECIAL" name="chkFilterSPECIAL"<?php 
echo HTMLstuff::CheckedStr($FilterSPECIAL);
?>
 />
<label for="chkFilterPIC">NO-PICS</label>
<input type="checkbox" id="chkFilterPIC" name="chkFilterPIC"<?php 
echo HTMLstuff::CheckedStr($FilterPIC);
?>
 />
<label for="chkFilterVID">NO-VIDS</label>
<input type="checkbox" id="chkFilterVID" name="chkFilterVID"<?php 
echo HTMLstuff::CheckedStr($FilterVID);
?>
 />

<input type="submit" id="btnSearch" name="btnSearch" value="<?php 
echo $lang->g('ButtonSearch');
?>
" />

</fieldset>
</form>

<h2><?php 
echo sprintf('<a href="index.php">%1$s</a> - %2$s', $lang->g('NavigationHome'), $lang->g('NavigationDirtySets'));
?>
</h2>
Beispiel #5
0
            $e = new SyntaxError(SYNTAX_ERR_EMAILADDRESS);
            Error::AddError($e);
        }
    } else {
        $e = new LoginError(LOGIN_ERR_PASSWORDSNOTIDENTICAL);
        Error::AddError($e);
    }
}
foreach (i18n::$SupportedLanguages as $l) {
    $LanguageOptions .= sprintf("\n\t\t<option value=\"%1\$s\"%2\$s>%3\$s%4\$s</option>", $l, HTMLstuff::SelectedStr($User->getLanguage() == $l), $lang->g('LabelLanguage_' . $l), $l == 'en' ? $lang->g('LabelSuffixDefault') : NULL);
}
foreach ($DateStyleArray as $index => $format) {
    $DateFormatOptions .= sprintf("\n\t\t<option value=\"%1\$d\"%2\$s>%3\$s%4\$s</option>", $index, HTMLstuff::SelectedStr($User->getDateDisplayOptions() == $index), date($format), $index == 0 ? $lang->g('LabelSuffixDefault') : NULL);
}
foreach (Rights::getDefinedRights() as $k => $v) {
    $RightsCheckboxes .= sprintf("<li>\n\t\t<label for=\"chk%1\$s\" class=\"Radio\">\n\t\t\t<input type=\"checkbox\" id=\"chk%1\$s\" name=\"chk%1\$s\"%3\$s%4\$s />\n\t\t\t&nbsp;%2\$s\n\t\t</label></li>", $k, $lang->g('Label' . $k), HTMLstuff::CheckedStr($User->hasPermission($v)), HTMLstuff::DisabledStr($DisableRights));
}
echo HTMLstuff::HtmlHeader($User->GetFullName(), $CurrentUser);
?>

<script type="text/javascript">
//<![CDATA[

function ToggleBoxes(){
	$('input[id^=chkRIGHT_]').each(function(i, a){
		$(a).attr('checked', !$(a).attr('checked')); 
	});
	return true;
}

//]]>