PluginProbe
Polylang / 0.1
Polylang v0.1
3.8.9 3.8.8 3.8.7 3.8.6 3.8.5 3.8.4 3.8.3 2.7 2.7.0.1 2.7.1 2.7.2 2.7.3 2.7.4 2.8 2.8.1 2.8.2 2.8.3 2.8.4 2.9 2.9.1 2.9.2 3.0 3.0.1 3.0.2 3.0.3 All 233 releases
polylang / widget.php

widget.php in Polylang 0.1, at widget.php

20 lines 431 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 class Polylang_Widget extends WP_Widget {
4 function __construct() {
5 $widget_ops = array( 'description' => __( 'Displays a language switcher', 'polylang') );
6 parent::__construct('polylang', __('Language Switcher', 'polylang'), $widget_ops);
7 }
8
9 function widget($args, $instance) {
10 extract( $args );
11
12 echo "$before_widget\n";
13 do_action('the_languages');
14 echo "$after_widget\n";
15 }
16
17 } // Class Polylang_Widget
18
19 ?>
20