Subversion Repositories wpShopGermany4

Rev

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

Rev Author Line No. Line
5450 daniel 1
<?php
2
 
3
	/**
4
	 * Template für die Texte innerhalb der Produktverwaltung
5
	 */
6
 
7
?>
8
 
5532 daniel 9
<?php echo wpsg_drawForm_AdminboxStart(__('Kurztext', 'wpsg')); ?>
5450 daniel 10
<?php
11
 
12
	function wpsg_ShowTinyMCE()
13
	{
14
 
15
		wp_print_scripts('editor');
16
		wp_print_scripts('media-upload');
17
		if (function_exists('wp_tiny_mce')) wp_tiny_mce();
18
		wp_admin_css();
19
 
20
		do_action("admin_print_styles-post-php");
21
		do_action('admin_print_styles');
22
 
23
	}
24
 
25
	function wpsg_formatTinyMCE($in)
26
	{
27
 
28
		if (isset($in['theme_advanced_buttons1'])) $in['theme_advanced_buttons1'] = str_replace(",wpsg", "", $in['theme_advanced_buttons1']);
29
 
30
		return $in;
31
 
32
	}
33
 
5534 daniel 34
	// Damit die qTranslate Interne Editor Übersetzung nicht aufgerufen wird
35
	//remove_filter('the_editor', 'qtrans_modifyRichEditor');
36
 
5450 daniel 37
	add_filter('tiny_mce_before_init', 'wpsg_formatTinyMCE');
5532 daniel 38
	add_filter('admin_head', 'wpsg_ShowTinyMCE');
5450 daniel 39
	wp_editor(@$this->view['data']['beschreibung'], 'beschreibung');
40
 
41
?>
5532 daniel 42
<?php echo wpsg_drawForm_AdminboxEnd(); ?>
43
 
8367 daniel 44
<?php $this->callMods('product_addedit_before_longtext'); ?>
5532 daniel 45
<?php echo wpsg_drawForm_AdminboxStart(__('Langtext', 'wpsg')); ?>
46
<?php
47
 
48
	// Damit die qTranslate Interne Editor Übersetzung nicht aufgerufen wird
49
	//remove_filter('the_editor', 'qtrans_modifyRichEditor');
50
 
51
	add_filter('tiny_mce_before_init', 'wpsg_formatTinyMCE');
52
	add_filter('admin_head', 'wpsg_ShowTinyMCE');
53
	wp_editor(@$this->view['data']['longdescription'], 'longdescription');
54
 
55
?>
6539 daniel 56
<?php echo wpsg_drawForm_AdminboxEnd(); ?>
57
 
8292 karl 58
<?php echo wpsg_drawForm_AdminboxStart(__('Langtext (Zusatz)', 'wpsg')); ?>
59
<?php
60
 
61
	// Damit die qTranslate Interne Editor Übersetzung nicht aufgerufen wird
62
	//remove_filter('the_editor', 'qtrans_modifyRichEditor');
63
 
64
	add_filter('tiny_mce_before_init', 'wpsg_formatTinyMCE');
65
	add_filter('admin_head', 'wpsg_ShowTinyMCE');
66
	wp_editor(@$this->view['data']['longdescription_addon'], 'longdescription_addon');
67
 
68
?>
69
<?php echo wpsg_drawForm_AdminboxEnd(); ?>
70
 
8274 karl 71
<?php echo wpsg_drawForm_AdminboxStart(__('Produktfeatures', 'wpsg')); ?>
72
<?php
73
 
74
	// Damit die qTranslate Interne Editor Übersetzung nicht aufgerufen wird
75
	//remove_filter('the_editor', 'qtrans_modifyRichEditor');
76
 
77
	add_filter('tiny_mce_before_init', 'wpsg_formatTinyMCE');
78
	add_filter('admin_head', 'wpsg_ShowTinyMCE');
79
	wp_editor(@$this->view['data']['productfeatures'], 'productfeatures');
80
 
81
?>
82
<?php echo wpsg_drawForm_AdminboxEnd(); ?>
83
 
6539 daniel 84
<?php echo wpsg_drawForm_AdminboxStart(__('Zusätzliche Informationen', 'wpsg')); ?>
85
<?php
86
 
87
	// Damit die qTranslate Interne Editor Übersetzung nicht aufgerufen wird
88
	//remove_filter('the_editor', 'qtrans_modifyRichEditor');
89
 
90
	add_filter('tiny_mce_before_init', 'wpsg_formatTinyMCE');
91
	add_filter('admin_head', 'wpsg_ShowTinyMCE');
92
	wp_editor(@$this->view['data']['moreinfos'], 'moreinfos');
93
 
94
?>
95
<?php echo wpsg_drawForm_AdminboxEnd(); ?>
7397 thomas 96
 
97
<?php echo wpsg_drawForm_AdminboxStart(__('Lieferumfang', 'wpsg')); ?>
98
<?php
99
 
100
	// Damit die qTranslate Interne Editor Übersetzung nicht aufgerufen wird
101
	//remove_filter('the_editor', 'qtrans_modifyRichEditor');
102
 
103
	add_filter('tiny_mce_before_init', 'wpsg_formatTinyMCE');
104
	add_filter('admin_head', 'wpsg_ShowTinyMCE');
105
	wp_editor(@$this->view['data']['moreinfos2'], 'moreinfos2');
106
 
107
?>
108
<?php echo wpsg_drawForm_AdminboxEnd(); ?>