Initialer Commit in GIT

This commit is contained in:
2014-10-01 07:31:51 +02:00
parent 4e95f399da
commit edb41e47b2
32 changed files with 3156 additions and 0 deletions

View 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>

View 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>

View 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));?>';

View 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));?>';