Support https in blog URLs
[dotclear.git] / widget.copyright.php
CommitLineData
db4de47e
FB
1<?php
2class xorgCopyrightWidget {
3b8da081 3 public static function behavior_initWidgets($w) {
db4de47e
FB
4 $w->create('XorgCopyright', __('Copyright'), array('xorgCopyrightWidget', 'widget'));
5 }
6
3b8da081 7 static public function widget($w) {
db4de47e 8 global $core;
9921376e
RB
9 $copyright = $core->blog->settings->system->get('copyright_notice');
10 $editor = $core->blog->settings->system->get('editor');
db4de47e
FB
11
12 $text = '<div><h2>Mentions légales</h2><ul>';
13 if ($editor) {
14 $text .= '<li>Editeur&nbsp;: ' . $editor . '</li>';
15 }
16 $text .= '<li>Hébergé par <a href="http://xorg.polytechnique.org">Polytechnique.org</a></li>';
17 if ($copyright) {
18 $text .= '<li>' . $copyright . '</li>';
19 }
20 return $text . '</ul></div>';
21 }
22}
23
24?>