Initialer Commit in GIT
This commit is contained in:
35
templates/aeo_default_no_js.html5
Normal file
35
templates/aeo_default_no_js.html5
Normal file
@ -0,0 +1,35 @@
|
||||
<div class="<?php echo $this->class; ?> block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>
|
||||
<?php if ($this->headline): ?>
|
||||
|
||||
<<?php echo $this->hl; ?>><?php echo $this->headline; ?></<?php echo $this->hl; ?>>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->isHuman): ?>
|
||||
<div class="mod_aeo success">
|
||||
<p><?php echo $this->success; ?></p>
|
||||
<p><a href="<?php echo $this->backLink; ?>"><?php echo $this->backLabel; ?></a></p>
|
||||
</div>
|
||||
<?php else: ?>
|
||||
<div class="mod_aeo question">
|
||||
<form class="<?php echo $this->formId; ?>" action="<?php echo $this->action; ?>" method="post">
|
||||
<input type="hidden" name="FORM_SUBMIT" value="<?php echo $this->formId; ?>">
|
||||
<input type="hidden" name="REQUEST_TOKEN" value="{{request_token}}">
|
||||
<input type="hidden" name="n" value="<?php echo $this->n; ?>">
|
||||
<input type="hidden" name="d" value="<?php echo $this->d; ?>">
|
||||
<input type="hidden" name="t" value="<?php echo $this->t; ?>">
|
||||
<input type="hidden" name="p" value="<?php echo $this->p; ?>">
|
||||
<fieldset>
|
||||
<legend><?php echo $this->captchaDetails; ?></legend>
|
||||
<?php echo $this->captcha->generateWithError(); ?> <label for="ctrl_captcha"><?php echo $this->captcha->generateQuestion(); ?><span class="mandatory">*</span></label>
|
||||
<div class="submit_container">
|
||||
<input type="submit" class="submit" value="<?php echo $this->buttonLabel; ?>">
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
<?php if (strlen($this->info) > 0): ?>
|
||||
<div class="mod_aeo info">
|
||||
<?php echo $this->info; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
35
templates/aeo_default_no_js.xhtml
Normal file
35
templates/aeo_default_no_js.xhtml
Normal file
@ -0,0 +1,35 @@
|
||||
<div class="<?php echo $this->class; ?> block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>
|
||||
<?php if ($this->headline): ?>
|
||||
|
||||
<<?php echo $this->hl; ?>><?php echo $this->headline; ?></<?php echo $this->hl; ?>>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->isHuman): ?>
|
||||
<div class="mod_aeo success">
|
||||
<p><?php echo $this->success; ?></p>
|
||||
<p><a href="<?php echo $this->backLink; ?>"><?php echo $this->backLabel; ?></a></p>
|
||||
</div>
|
||||
<?php else: ?>
|
||||
<div class="mod_aeo question">
|
||||
<form class="<?php echo $this->formId; ?>" action="<?php echo $this->action; ?>" method="post">
|
||||
<input type="hidden" name="FORM_SUBMIT" value="<?php echo $this->formId; ?>"></input>
|
||||
<input type="hidden" name="REQUEST_TOKEN" value="{{request_token}}"></input>
|
||||
<input type="hidden" name="n" value="<?php echo $this->n; ?>"></input>
|
||||
<input type="hidden" name="d" value="<?php echo $this->d; ?>"></input>
|
||||
<input type="hidden" name="t" value="<?php echo $this->t; ?>"></input>
|
||||
<input type="hidden" name="p" value="<?php echo $this->p; ?>"></input>
|
||||
<fieldset>
|
||||
<legend><?php echo $this->captchaDetails; ?></legend>
|
||||
<?php echo $this->captcha->generateWithError(); ?> <label for="ctrl_captcha"><?php echo $this->captcha->generateQuestion(); ?><span class="mandatory">*</span></label>
|
||||
<div class="submit_container">
|
||||
<input type="submit" class="submit" value="<?php echo $this->buttonLabel; ?>"></input>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
<?php if (strlen($this->info) > 0): ?>
|
||||
<div class="mod_aeo info">
|
||||
<?php echo $this->info; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
23
templates/js_aeo_deobfuscate.html5
Normal file
23
templates/js_aeo_deobfuscate.html5
Normal file
@ -0,0 +1,23 @@
|
||||
function aeo_link_decode(href) {
|
||||
var address = href.replace(/.*<?php echo ((strstr($this->folder, '\\\\') ? stripslashes($this->folder) : $this->folder));?>\/aeo\/([a-z0-9._%-]+)\+([a-z0-9._%-]+)\+([a-z.]+)\+[0-9]+\+{0,1}([^\.]*)\..*/i, '$1' + '@' + '$2' + '.' + '$3' + '|' + '$4');
|
||||
var i = strpos(address, '|', 0);
|
||||
var params = '';
|
||||
if (i) {
|
||||
var params = address.substr(i + 1);
|
||||
address = address.substr(0, i);
|
||||
|
||||
if (params.length > 0) {
|
||||
params = base64_decode(params);
|
||||
}
|
||||
}
|
||||
|
||||
address = rot13 ? str_rot13(address) : address;
|
||||
if (params.length > 0) {
|
||||
address = address + html_entity_decode(params);
|
||||
}
|
||||
|
||||
window.location.replace('mailto:' + address);
|
||||
}
|
||||
|
||||
var rot13 = <?php echo ($this->rot13 ? 'true' : 'false');?>;
|
||||
var tooltip_js_on = '<?php echo (stripslashes($this->tooltip_js_on));?>';
|
23
templates/js_aeo_deobfuscate.xhtml
Normal file
23
templates/js_aeo_deobfuscate.xhtml
Normal file
@ -0,0 +1,23 @@
|
||||
function aeo_link_decode(href) {
|
||||
var address = href.replace(/.*<?php echo ((strstr($this->folder, '\\\\') ? stripslashes($this->folder) : $this->folder));?>\/aeo\/([a-z0-9._%-]+)\+([a-z0-9._%-]+)\+([a-z.]+)\+[0-9]+\+{0,1}([^\.]*)\..*/i, '$1' + '@' + '$2' + '.' + '$3' + '|' + '$4');
|
||||
var i = strpos(address, '|', 0);
|
||||
var params = '';
|
||||
if (i) {
|
||||
var params = address.substr(i + 1);
|
||||
address = address.substr(0, i);
|
||||
|
||||
if (params.length > 0) {
|
||||
params = base64_decode(params);
|
||||
}
|
||||
}
|
||||
|
||||
address = rot13 ? str_rot13(address) : address;
|
||||
if (params.length > 0) {
|
||||
address = address + html_entity_decode(params);
|
||||
}
|
||||
|
||||
window.location.replace('mailto:' + address);
|
||||
}
|
||||
|
||||
var rot13 = <?php echo ($this->rot13 ? 'true' : 'false');?>;
|
||||
var tooltip_js_on = '<?php echo (stripslashes($this->tooltip_js_on));?>';
|
Reference in New Issue
Block a user