xref: /webtrees/app/Module/UserWelcomeModule.php (revision 4eb71cfaf9604652cd62536a0b3b56c6dfd715ad)
1<?php
2/**
3 * webtrees: online genealogy
4 * Copyright (C) 2016 webtrees development team
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16namespace Fisharebest\Webtrees\Module;
17
18use Fisharebest\Webtrees\Auth;
19use Fisharebest\Webtrees\I18N;
20use Fisharebest\Webtrees\Module;
21use Fisharebest\Webtrees\Theme;
22
23/**
24 * Class UserWelcomeModule
25 */
26class UserWelcomeModule extends AbstractModule implements ModuleBlockInterface {
27	/** {@inheritdoc} */
28	public function getTitle() {
29		return /* I18N: Name of a module */ I18N::translate('My page');
30	}
31
32	/** {@inheritdoc} */
33	public function getDescription() {
34		return /* I18N: Description of the “My page” module */ I18N::translate('A greeting message and useful links for a user.');
35	}
36
37	/**
38	 * Generate the HTML content of this block.
39	 *
40	 * @param int      $block_id
41	 * @param bool     $template
42	 * @param string[] $cfg
43	 *
44	 * @return string
45	 */
46	public function getBlock($block_id, $template = true, $cfg = array()) {
47		global $WT_TREE;
48
49		$id      = $this->getName() . $block_id;
50		$class   = $this->getName() . '_block';
51		$title   = '<span dir="auto">' . /* I18N: A greeting; %s is the user’s name */ I18N::translate('Welcome %s', Auth::user()->getRealNameHtml()) . '</span>';
52		$content = '<table><tr>';
53		$content .= '<td><a href="edituser.php"><i class="icon-mypage"></i><br>' . I18N::translate('My account') . '</a></td>';
54
55		$gedcomid = $WT_TREE->getUserPreference(Auth::user(), 'gedcomid');
56		if ($gedcomid && Module::isActiveChart($WT_TREE, 'pedigree_chart')) {
57			$content .= '<td><a href="pedigree.php?rootid=' . $gedcomid . '&amp;ged=' . $WT_TREE->getNameUrl() . '"><i class="icon-pedigree"></i><br>' . I18N::translate('My pedigree') . '</a></td>';
58			$content .= '<td><a href="individual.php?pid=' . $gedcomid . '&amp;ged=' . $WT_TREE->getNameUrl() . '"><i class="icon-indis"></i><br>' . I18N::translate('My individual record') . '</a></td>';
59		}
60		$content .= '</tr></table>';
61
62		if ($template) {
63			return Theme::theme()->formatBlock($id, $title, $class, $content);
64		} else {
65			return $content;
66		}
67	}
68
69	/** {@inheritdoc} */
70	public function loadAjax() {
71		return false;
72	}
73
74	/** {@inheritdoc} */
75	public function isUserBlock() {
76		return true;
77	}
78
79	/** {@inheritdoc} */
80	public function isGedcomBlock() {
81		return false;
82	}
83
84	/**
85	 * An HTML form to edit block settings
86	 *
87	 * @param int $block_id
88	 */
89	public function configureBlock($block_id) {
90	}
91}
92