18c2e8227SGreg Roach<?php 28c2e8227SGreg Roach/** 38c2e8227SGreg Roach * webtrees: online genealogy 4*1062a142SGreg Roach * Copyright (C) 2018 webtrees development team 58c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify 68c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by 78c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or 88c2e8227SGreg Roach * (at your option) any later version. 98c2e8227SGreg Roach * This program is distributed in the hope that it will be useful, 108c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 118c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 128c2e8227SGreg Roach * GNU General Public License for more details. 138c2e8227SGreg Roach * You should have received a copy of the GNU General Public License 148c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 158c2e8227SGreg Roach */ 1676692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module; 1776692c8bSGreg Roach 180e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth; 19a0ebf380SGreg Roachuse Fisharebest\Webtrees\Html; 200e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N; 21a0ebf380SGreg Roachuse Fisharebest\Webtrees\Individual; 224eb71cfaSGreg Roachuse Fisharebest\Webtrees\Module; 23a0ebf380SGreg Roachuse Fisharebest\Webtrees\View; 248c2e8227SGreg Roach 258c2e8227SGreg Roach/** 268c2e8227SGreg Roach * Class UserWelcomeModule 278c2e8227SGreg Roach */ 28e2a378d3SGreg Roachclass UserWelcomeModule extends AbstractModule implements ModuleBlockInterface { 298c2e8227SGreg Roach /** {@inheritdoc} */ 308c2e8227SGreg Roach public function getTitle() { 31d034ca3bSGreg Roach return /* I18N: Name of a module */ 32d034ca3bSGreg Roach I18N::translate('My page'); 338c2e8227SGreg Roach } 348c2e8227SGreg Roach 358c2e8227SGreg Roach /** {@inheritdoc} */ 368c2e8227SGreg Roach public function getDescription() { 37d034ca3bSGreg Roach return /* I18N: Description of the “My page” module */ 38d034ca3bSGreg Roach I18N::translate('A greeting message and useful links for a user.'); 398c2e8227SGreg Roach } 408c2e8227SGreg Roach 4176692c8bSGreg Roach /** 4276692c8bSGreg Roach * Generate the HTML content of this block. 4376692c8bSGreg Roach * 4476692c8bSGreg Roach * @param int $block_id 4576692c8bSGreg Roach * @param bool $template 46727f238cSGreg Roach * @param string[] $cfg 4776692c8bSGreg Roach * 4876692c8bSGreg Roach * @return string 4976692c8bSGreg Roach */ 50a9430be8SGreg Roach public function getBlock($block_id, $template = true, $cfg = []): string { 514b9ff166SGreg Roach global $WT_TREE; 524b9ff166SGreg Roach 534b9ff166SGreg Roach $gedcomid = $WT_TREE->getUserPreference(Auth::user(), 'gedcomid'); 54a0ebf380SGreg Roach $individual = Individual::getInstance($gedcomid, $WT_TREE); 55a0ebf380SGreg Roach $links = []; 56a0ebf380SGreg Roach 57c2faa3efSGreg Roach if ($individual) { 583f8a84f7SDavid Drury if (Module::isActiveChart($WT_TREE, 'pedigree_chart')) { 59a0ebf380SGreg Roach $links[] = [ 60a0ebf380SGreg Roach 'url' => Html::url('pedigree.php', ['rootid' => $individual->getXref(), 'ged' => $individual->getTree()->getName()]), 61a0ebf380SGreg Roach 'title' => I18N::translate('Default chart'), 62a0ebf380SGreg Roach 'icon' => 'icon-pedigree', 63a0ebf380SGreg Roach ]; 643f8a84f7SDavid Drury } 65a0ebf380SGreg Roach 66a0ebf380SGreg Roach $links[] = [ 67b1f1e4efSGreg Roach 'url' => $individual->url(), 68a0ebf380SGreg Roach 'title' => I18N::translate('My individual record'), 69a0ebf380SGreg Roach 'icon' => 'icon-indis', 70a0ebf380SGreg Roach ]; 718c2e8227SGreg Roach } 72a0ebf380SGreg Roach 73a0ebf380SGreg Roach $links[] = [ 74a0ebf380SGreg Roach 'url' => Html::url('edituser.php', []), 75a0ebf380SGreg Roach 'title' => I18N::translate('My account'), 76a0ebf380SGreg Roach 'icon' => 'icon-mypage', 77a0ebf380SGreg Roach ]; 78a0ebf380SGreg Roach $content = View::make('blocks/welcome', ['links' => $links]); 798c2e8227SGreg Roach 808c2e8227SGreg Roach if ($template) { 81a0ebf380SGreg Roach return View::make('blocks/template', [ 82d034ca3bSGreg Roach 'block' => str_replace('_', '-', $this->getName()), 83d034ca3bSGreg Roach 'id' => $block_id, 841fa06fe3SGreg Roach 'config_url' => '', 85d034ca3bSGreg Roach 'title' => /* I18N: A %s is the user’s name */ I18N::translate('Welcome %s', Auth::user()->getRealName()), 86a0ebf380SGreg Roach 'content' => $content, 87a0ebf380SGreg Roach ]); 888c2e8227SGreg Roach } else { 898c2e8227SGreg Roach return $content; 908c2e8227SGreg Roach } 918c2e8227SGreg Roach } 928c2e8227SGreg Roach 938c2e8227SGreg Roach /** {@inheritdoc} */ 94a9430be8SGreg Roach public function loadAjax(): bool { 958c2e8227SGreg Roach return false; 968c2e8227SGreg Roach } 978c2e8227SGreg Roach 988c2e8227SGreg Roach /** {@inheritdoc} */ 99a9430be8SGreg Roach public function isUserBlock(): bool { 1008c2e8227SGreg Roach return true; 1018c2e8227SGreg Roach } 1028c2e8227SGreg Roach 1038c2e8227SGreg Roach /** {@inheritdoc} */ 104a9430be8SGreg Roach public function isGedcomBlock(): bool { 1058c2e8227SGreg Roach return false; 1068c2e8227SGreg Roach } 1078c2e8227SGreg Roach 10876692c8bSGreg Roach /** 10976692c8bSGreg Roach * An HTML form to edit block settings 11076692c8bSGreg Roach * 11176692c8bSGreg Roach * @param int $block_id 112a9430be8SGreg Roach * 113a9430be8SGreg Roach * @return void 11476692c8bSGreg Roach */ 115be9a728cSGreg Roach public function configureBlock($block_id) { 1168c2e8227SGreg Roach } 1178c2e8227SGreg Roach} 118