Subversion Repository Public Repository

wpbsav

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<?php // encoding: utf-8

/*  Copyright 2014
	modified by Papa Salvatore Mirko (email : mirko@primapagina.it)
	originally created by Qian Qin (email : mail@qianqin.de)

	This program is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation; either version 2 of the License, or
	(at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with this program; if not, write to the Free Software
	Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/

/* qTranslate Widget */

class ppqTranslateWidget extends WP_Widget {
	function ppqTranslateWidget() {
		$widget_ops = array('classname' => 'widget_qtranslate', 'description' => __('Allows your visitors to choose a Language.','qtranslate') );
		$this->WP_Widget('qtranslate', __('qTranslate Language Chooser','qtranslate'), $widget_ops);
	}

	function widget($args, $instance) {
		extract($args);

		echo $before_widget;
		$title = empty($instance['title']) ? __('Language', 'qtranslate') : apply_filters('widget_title', $instance['title']);
		$hide_title = empty($instance['hide-title']) ? false : 'on';
		$type = $instance['type'];
		if($type!='text'&&$type!='image'&&$type!='both'&&$type!='dropdown') $type='text';

		if($hide_title!='on') { echo $before_title . $title . $after_title; };
		ppqtrans_generateLanguageSelectCode($type, $this->id);
		echo $after_widget;
	}

	function update($new_instance, $old_instance) {
		$instance = $old_instance;
		$instance['title'] = $new_instance['title'];
		if(isset($new_instance['hide-title'])) $instance['hide-title'] = $new_instance['hide-title'];
		$instance['type'] = $new_instance['type'];

		return $instance;
	}

	function form($instance) {
		$instance = wp_parse_args( (array) $instance, array( 'title' => '', 'hide-title' => false, 'type' => 'text' ) );
		$title = $instance['title'];
		$hide_title = $instance['hide-title'];
		$type = $instance['type'];
?>
		<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'qtranslate'); ?> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></label></p>
		<p><label for="<?php echo $this->get_field_id('hide-title'); ?>"><?php _e('Hide Title:', 'qtranslate'); ?> <input type="checkbox" id="<?php echo $this->get_field_id('hide-title'); ?>" name="<?php echo $this->get_field_name('hide-title'); ?>" <?php echo ($hide_title=='on')?'checked="checked"':''; ?>/></label></p>
		<p><?php _e('Display:', 'qtranslate'); ?></p>
		<p><label for="<?php echo $this->get_field_id('type'); ?>1"><input type="radio" name="<?php echo $this->get_field_name('type'); ?>" id="<?php echo $this->get_field_id('type'); ?>1" value="text"<?php echo ($type=='text')?' checked="checked"':'' ?>/> <?php _e('Text only', 'qtranslate'); ?></label></p>
		<p><label for="<?php echo $this->get_field_id('type'); ?>2"><input type="radio" name="<?php echo $this->get_field_name('type'); ?>" id="<?php echo $this->get_field_id('type'); ?>2" value="image"<?php echo ($type=='image')?' checked="checked"':'' ?>/> <?php _e('Image only', 'qtranslate'); ?></label></p>
		<p><label for="<?php echo $this->get_field_id('type'); ?>3"><input type="radio" name="<?php echo $this->get_field_name('type'); ?>" id="<?php echo $this->get_field_id('type'); ?>3" value="both"<?php echo ($type=='both')?' checked="checked"':'' ?>/> <?php _e('Text and Image', 'qtranslate'); ?></label></p>
		<p><label for="<?php echo $this->get_field_id('type'); ?>4"><input type="radio" name="<?php echo $this->get_field_name('type'); ?>" id="<?php echo $this->get_field_id('type'); ?>4" value="dropdown"<?php echo ($type=='dropdown')?' checked="checked"':'' ?>/> <?php _e('Dropdown Box', 'qtranslate'); ?></label></p>
<?php
	}
}

// Language Select Code for non-Widget users
function ppqtrans_generateLanguageSelectCode($style='', $id='') {
	global $q_config;
	if($style=='') $style='text';
	if(is_bool($style)&&$style) $style='image';
	if(is_404()) $url = get_option('home'); else $url = '';
	if($id=='') $id = 'qtranslate';
	$id .= '-chooser';
	switch($style) {
		case 'image':
		case 'text':
		case 'dropdown':
			echo '<li class="ppqtrans_language_chooser menu-item menu-item-has-children dropdown" id="'.$id.'">';
			echo '<a href="#" class="dropdown-toggle" data-toggle="toggle">'.strtoupper($q_config['language']).'<b class="caret"></b></a>';
			echo '<ul class="dropdown-menu">';
			foreach(ppqtrans_getSortedLanguages() as $language) {
				$classes = array('lang-'.$language);
				if($language == $q_config['language'])
					$classes[] = 'active';
				echo '<li class="menu-item"><a href="'.ppqtrans_convertURL($url, $language).'"';
				// set hreflang
				echo 'class="'. implode(' ', $classes) . '" hreflang="'.$language.'" title="'.$q_config['language_name'][$language].'"';
				if($style=='image')
					echo ' class="ppqtrans_flag ppqtrans_flag_'.$language.'"';
				echo '>';
				if($style=='image')
					echo ' style="display:none"';
				echo $q_config['language_name'][$language].'</a></li>';
			}
			echo "</ul></li>";
			if($style=='dropdown') {
				echo "<script type=\"text/javascript\">\n// <![CDATA[\r\n";
				echo "var lc = document.getElementById('".$id."');\n";
				echo "var s = document.createElement('select');\n";
				echo "s.id = 'ppqtrans_select_".$id."';\n";
				echo "lc.parentNode.insertBefore(s,lc);";
				// create dropdown fields for each language
				foreach(ppqtrans_getSortedLanguages() as $language) {
					echo ppqtrans_insertDropDownElement($language, ppqtrans_convertURL($url, $language), $id);
				}
				// hide html language chooser text
				echo "s.onchange = function() { document.location.href = this.value;}\n";
				echo "lc.style.display='none';\n";
				echo "// ]]>\n</script>\n";
			}
			break;
		case 'both':
			echo '<ul class="ppqtrans_language_chooser" id="'.$id.'">';
			foreach(ppqtrans_getSortedLanguages() as $language) {
				echo '<li';
				if($language == $q_config['language'])
					echo ' class="active"';
				echo '><a href="'.ppqtrans_convertURL($url, $language).'"';
				echo ' class="ppqtrans_flag_'.$language.' ppqtrans_flag_and_text" title="'.$q_config['language_name'][$language].'"';
				echo '><span>'.$q_config['language_name'][$language].'</span></a></li>';
			}
			echo "</ul><div class=\"ppqtrans_widget_end\"></div>";
			break;
	}
}

function ppqtrans_generateLanguageSelectCodeBoot($style='', $id='') {
	global $q_config;
	$html = '';
	if($style=='') $style='text';
	if(is_bool($style)&&$style) $style='image';
	if(is_404()) $url = get_option('home'); else $url = '';
	if($id=='') $id = 'qtranslate';
	$id .= '-chooser';
	switch($style) {
		case 'image':
		case 'text':
		case 'dropdown':
			$html .= '<li class="ppqtrans_language_chooser menu-item menu-item-has-children dropdown" id="'.$id.'">';
			$html .= '<a href="#" class="dropdown-toggle" data-toggle="dropdown">'.strtoupper(substr($q_config['language_name'][$q_config['language']],0,3)).' <i class="fa fa-angle-down"></i></a>';
			$html .= '<ul class="dropdown-menu">';
			foreach(ppqtrans_getSortedLanguages() as $language) {
				$classes = array('lang-'.$language);
				if($language == $q_config['language'])
					$classes[] = 'active';
				$html .= '<li class="menu-item"><a href="'.ppqtrans_convertURL($url, $language).'"';
				// set hreflang
				$html .= 'class="'. implode(' ', $classes) . '" hreflang="'.$language.'" title="'.$q_config['language_name'][$language].'"';
				if($style=='image')
					$html .= ' class="ppqtrans_flag ppqtrans_flag_'.$language.'"';
				$html .= '>';
				if($style=='image')
					$html .= ' style="display:none"';
				$html .= $q_config['language_name'][$language].'</a></li>';
			}
			$html .= "</ul></li>";			
			if($style=='dropdown') {
				echo "<script type=\"text/javascript\">\n// <![CDATA[\r\n";
				echo "var lc = document.getElementById('".$id."');\n";
				echo "var s = document.createElement('select');\n";
				echo "s.id = 'ppqtrans_select_".$id."';\n";
				echo "lc.parentNode.insertBefore(s,lc);";
				// create dropdown fields for each language
				foreach(ppqtrans_getSortedLanguages() as $language) {
					echo ppqtrans_insertDropDownElement($language, ppqtrans_convertURL($url, $language), $id);
				}
				// hide html language chooser text
				echo "s.onchange = function() { document.location.href = this.value;}\n";
				echo "lc.style.display='none';\n";
				echo "// ]]>\n</script>\n";
			}
			return $html;
			break;
		case 'both':
			echo '<ul class="ppqtrans_language_chooser" id="'.$id.'">';
			foreach(ppqtrans_getSortedLanguages() as $language) {
				echo '<li';
				if($language == $q_config['language'])
					echo ' class="active"';
				echo '><a href="'.ppqtrans_convertURL($url, $language).'"';
				echo ' class="ppqtrans_flag_'.$language.' ppqtrans_flag_and_text" title="'.$q_config['language_name'][$language].'"';
				echo '><span>'.$q_config['language_name'][$language].'</span></a></li>';
			}
			echo "</ul><div class=\"ppqtrans_widget_end\"></div>";
			break;
	}
}

function ppqtrans_widget_init() {
	register_widget('ppqTranslateWidget');
}

?>

Commits for wpbsav/SagreraWP/wp-content/plugins/qtranslate-xp/ppqtranslate_widget.php

Diff revisions: vs.
Revision Author Commited Message
21 Diff Diff amaraver Thu 23 Apr, 2015 09:42:43 +0000

shortcodes

3 iparra picture iparra Fri 17 Apr, 2015 08:21:47 +0000