Subversion Repositories wpShopGermany4

Rev

Rev 5791 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2843 daniel 1
<?php
2
 
3
	/**
4009 thomas 4
	 * Template für die Integration des Händlerbund-Formulars in das Rechtstextmodul
2843 daniel 5
	 */
6
 
7
?>
8
 
9
<style type="text/css">
10
 
8331 karl 11
	.wphb_form_field {
12
		width: 100%;
13
		display: flex;
14
		flex-direction: row;
15
		justify-content: flex-start;
16
		align-items: center;
17
	}
18
	.wphb_form_field input {
19
		width: 100%;
20
	}
21
	.wphb_form_left {
22
		width: 50% !important;
23
		flex-grow: 0;
24
		flex-shrink: 0;
25
	}
26
	.wphb_form_right {
27
		width: 50% !important;
28
		flex-grow: 0;
29
		flex-shrink: 0;
30
	}
31
 
32
	.wphb_table {
33
		width: 100%;
34
		border-spacing: 0px;
35
		border-collapse: collapse;
36
	}
37
	.wphb_table input {
38
		min-height: unset !important;
39
	}
40
	.wphb_table select {
41
		width: 100%;
42
	}
43
	.col0 {
44
		width: 50%;
45
	}
46
	.col1 {
47
		width: 50%;
48
	}
49
 
2843 daniel 50
</style>
51
 
5791 daniel 52
<?php if ($this->view['wpsg_mod_legaltexts']['form'] == false) { ?>
2843 daniel 53
 
2927 daniel 54
	<p><?php echo __('wpShopGermany bietet eine Schnittstelle zum <a href="https://partner.haendlerbund.de/partnerdoor.php?partnerid=partner_wp&bannerid=18" target="_blank">Händlerbund</a> an.', 'wpsg'); ?></p>
2843 daniel 55
	<p><?php echo __('Händlerbund bietet Schutzpakete im Abo ("AGB-Rechtstext-Flatrate") für Onlineshop Betreiber an. Mit dem wpShopGermany-Händlerbund Plugin (ab Version 1.0), werden die angebotenen Rechtstexte auf die zugeordneten Blog-Seiten mittels Mausklick automatisch übernommen und aktualisiert.', 'wpsg'); ?></p>
56
 
57
	<?php if (file_exists(WP_PLUGIN_DIR."/wpshopgermany-haendlerbund/wpshopgermany-haendlerbund.php")) { ?>
58
		<p style="color:red;"><?php echo __('Das Plugin wurde bereits gefunden aber noch nicht aktiviert. Bitte aktivieren sie das Plugin in der <a href="plugins.php">Pluginverwaltung</a>.', 'wpsg'); ?></p>
59
	<?php } ?>
60
 
61
<?php } else { ?>
62
 
63
	<?php echo $this->view['wpsg_mod_legaltexts']['form']; ?>
64
 
65
	<input type="hidden" name="wpsg_mod_legaltexts_submitform" value="1" />
66
 
67
<?php } ?>