mirror of
https://github.com/YunoHost-Apps/webtrees_ynh.git
synced 2024-09-03 18:26:37 +02:00
337 lines
13 KiB
PHP
337 lines
13 KiB
PHP
<?php
|
||
/**
|
||
* webtrees: online genealogy
|
||
* Copyright (C) 2016 webtrees development team
|
||
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
||
*/
|
||
namespace Fisharebest\Webtrees\Module;
|
||
|
||
use Fisharebest\Webtrees\Auth;
|
||
use Fisharebest\Webtrees\Filter;
|
||
use Fisharebest\Webtrees\Functions\FunctionsDate;
|
||
use Fisharebest\Webtrees\Functions\FunctionsEdit;
|
||
use Fisharebest\Webtrees\GedcomTag;
|
||
use Fisharebest\Webtrees\I18N;
|
||
use Fisharebest\Webtrees\Module;
|
||
use Fisharebest\Webtrees\Site;
|
||
use Fisharebest\Webtrees\Stats;
|
||
use Fisharebest\Webtrees\Theme;
|
||
use Fisharebest\Webtrees\Tree;
|
||
|
||
/**
|
||
* Class HtmlBlockModule
|
||
*/
|
||
class HtmlBlockModule extends AbstractModule implements ModuleBlockInterface {
|
||
/** {@inheritdoc} */
|
||
public function getTitle() {
|
||
return /* I18N: Name of a module */ I18N::translate('HTML');
|
||
}
|
||
|
||
/** {@inheritdoc} */
|
||
public function getDescription() {
|
||
return /* I18N: Description of the “HTML” module */ I18N::translate('Add your own text and graphics.');
|
||
}
|
||
|
||
/**
|
||
* Generate the HTML content of this block.
|
||
*
|
||
* @param int $block_id
|
||
* @param bool $template
|
||
* @param string[] $cfg
|
||
*
|
||
* @return string
|
||
*/
|
||
public function getBlock($block_id, $template = true, $cfg = array()) {
|
||
global $ctype, $WT_TREE;
|
||
|
||
$title = $this->getBlockSetting($block_id, 'title');
|
||
$html = $this->getBlockSetting($block_id, 'html');
|
||
$gedcom = $this->getBlockSetting($block_id, 'gedcom');
|
||
$show_timestamp = $this->getBlockSetting($block_id, 'show_timestamp', '0');
|
||
$languages = $this->getBlockSetting($block_id, 'languages');
|
||
|
||
// Only show this block for certain languages
|
||
if ($languages && !in_array(WT_LOCALE, explode(',', $languages))) {
|
||
return '';
|
||
}
|
||
|
||
/*
|
||
* Select GEDCOM
|
||
*/
|
||
switch ($gedcom) {
|
||
case '__current__':
|
||
$stats = new Stats($WT_TREE);
|
||
break;
|
||
case '__default__':
|
||
$tree = Tree::findByName(Site::getPreference('DEFAULT_GEDCOM'));
|
||
if ($tree) {
|
||
$stats = new Stats($tree);
|
||
} else {
|
||
$stats = new Stats($WT_TREE);
|
||
}
|
||
break;
|
||
default:
|
||
$tree = Tree::findByName($gedcom);
|
||
if ($tree) {
|
||
$stats = new Stats($tree);
|
||
} else {
|
||
$stats = new Stats($WT_TREE);
|
||
}
|
||
break;
|
||
}
|
||
|
||
/*
|
||
* Retrieve text, process embedded variables
|
||
*/
|
||
if (strpos($title, '#') !== false || strpos($html, '#') !== false) {
|
||
$title = $stats->embedTags($title);
|
||
$html = $stats->embedTags($html);
|
||
}
|
||
|
||
/*
|
||
* Start Of Output
|
||
*/
|
||
$id = $this->getName() . $block_id;
|
||
$class = $this->getName() . '_block';
|
||
if ($ctype === 'gedcom' && Auth::isManager($WT_TREE) || $ctype === 'user' && Auth::check()) {
|
||
$title = '<a class="icon-admin" title="' . I18N::translate('Preferences') . '" href="block_edit.php?block_id=' . $block_id . '&ged=' . $WT_TREE->getNameHtml() . '&ctype=' . $ctype . '"></a>' . $title;
|
||
}
|
||
|
||
$content = $html;
|
||
|
||
if ($show_timestamp) {
|
||
$content .= '<br>' . FunctionsDate::formatTimestamp($this->getBlockSetting($block_id, 'timestamp', WT_TIMESTAMP) + WT_TIMESTAMP_OFFSET);
|
||
}
|
||
|
||
if ($template) {
|
||
return Theme::theme()->formatBlock($id, $title, $class, $content);
|
||
} else {
|
||
return $content;
|
||
}
|
||
}
|
||
|
||
/** {@inheritdoc} */
|
||
public function loadAjax() {
|
||
return false;
|
||
}
|
||
|
||
/** {@inheritdoc} */
|
||
public function isUserBlock() {
|
||
return true;
|
||
}
|
||
|
||
/** {@inheritdoc} */
|
||
public function isGedcomBlock() {
|
||
return true;
|
||
}
|
||
|
||
/**
|
||
* An HTML form to edit block settings
|
||
*
|
||
* @param int $block_id
|
||
*/
|
||
public function configureBlock($block_id) {
|
||
global $WT_TREE;
|
||
|
||
if (Filter::postBool('save') && Filter::checkCsrf()) {
|
||
$languages = Filter::postArray('lang');
|
||
$this->setBlockSetting($block_id, 'gedcom', Filter::post('gedcom'));
|
||
$this->setBlockSetting($block_id, 'title', Filter::post('title'));
|
||
$this->setBlockSetting($block_id, 'html', Filter::post('html'));
|
||
$this->setBlockSetting($block_id, 'show_timestamp', Filter::postBool('show_timestamp'));
|
||
$this->setBlockSetting($block_id, 'timestamp', Filter::post('timestamp'));
|
||
$this->setBlockSetting($block_id, 'languages', implode(',', $languages));
|
||
}
|
||
|
||
$templates = array(
|
||
I18N::translate('Keyword examples') =>
|
||
'#getAllTagsTable#',
|
||
|
||
I18N::translate('Narrative description') =>
|
||
/* I18N: do not translate the #keywords# */ I18N::translate('This family tree was last updated on #gedcomUpdated#. There are #totalSurnames# surnames in this family tree. The earliest recorded event is the #firstEventType# of #firstEventName# in #firstEventYear#. The most recent event is the #lastEventType# of #lastEventName# in #lastEventYear#.<br><br>If you have any comments or feedback please contact #contactWebmaster#.'),
|
||
|
||
I18N::translate('Statistics') =>
|
||
'<div class="gedcom_stats">
|
||
<span style="font-weight: bold;"><a href="index.php?command=gedcom">#gedcomTitle#</a></span><br>
|
||
' . I18N::translate('This family tree was last updated on %s.', '#gedcomUpdated#') . '
|
||
<table id="keywords">
|
||
<tr>
|
||
<td class="width20">
|
||
<table cellspacing="1" cellpadding="0">
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Individuals') . '</td>
|
||
<td class="facts_value"><a href="indilist.php?surname_sublist=no">#totalIndividuals#</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Males') . '</td>
|
||
<td class="facts_value">#totalSexMales#<br>#totalSexMalesPercentage#</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Females') . '</td>
|
||
<td class="facts_value">#totalSexFemales#<br>#totalSexFemalesPercentage#</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Total surnames') . '</td>
|
||
<td class="facts_value"><a href="indilist.php?show_all=yes&surname_sublist=yes&ged=' . $WT_TREE->getNameUrl() . '">#totalSurnames#</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Families') . '</td>
|
||
<td class="facts_value"><a href="famlist.php?ged=' . $WT_TREE->getNameUrl() . '">#totalFamilies#</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Sources') . '</td>
|
||
<td class="facts_value"><a href="sourcelist.php?ged=' . $WT_TREE->getNameUrl() . '">#totalSources#</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Media objects') . '</td>
|
||
<td class="facts_value"><a href="medialist.php?ged=' . $WT_TREE->getNameUrl() . '">#totalMedia#</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Repositories') . '</td>
|
||
<td class="facts_value"><a href="repolist.php?ged=' . $WT_TREE->getNameUrl() . '">#totalRepositories#</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Total events') . '</td>
|
||
<td class="facts_value">#totalEvents#</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Total users') . '</td>
|
||
<td class="facts_value">#totalUsers#</td>
|
||
</tr>
|
||
</table>
|
||
</td>
|
||
<td><br></td>
|
||
<td>
|
||
<table cellspacing="1" cellpadding="0" border="0">
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Earliest birth year') . '</td>
|
||
<td class="facts_value">#firstBirthYear#</td>
|
||
<td class="facts_value">#firstBirth#</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Latest birth year') . '</td>
|
||
<td class="facts_value">#lastBirthYear#</td>
|
||
<td class="facts_value">#lastBirth#</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Earliest death year') . '</td>
|
||
<td class="facts_value">#firstDeathYear#</td>
|
||
<td class="facts_value">#firstDeath#</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Latest death year') . '</td>
|
||
<td class="facts_value">#lastDeathYear#</td>
|
||
<td class="facts_value">#lastDeath#</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Individual who lived the longest') . '</td>
|
||
<td class="facts_value">#longestLifeAge#</td>
|
||
<td class="facts_value">#longestLife#</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Average age at death') . '</td>
|
||
<td class="facts_value">#averageLifespan#</td>
|
||
<td class="facts_value"></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Family with the most children') . '</td>
|
||
<td class="facts_value">#largestFamilySize#</td>
|
||
<td class="facts_value">#largestFamily#</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="facts_label">' . I18N::translate('Average number of children per family') . '</td>
|
||
<td class="facts_value">#averageChildren#</td>
|
||
<td class="facts_value"></td>
|
||
</tr>
|
||
</table>
|
||
</td>
|
||
</tr>
|
||
</table><br>
|
||
<span style="font-weight: bold;">' . I18N::translate('Most common surnames') . '</span><br>
|
||
#commonSurnames#
|
||
</div>',
|
||
);
|
||
|
||
$title = $this->getBlockSetting($block_id, 'title');
|
||
$html = $this->getBlockSetting($block_id, 'html');
|
||
$gedcom = $this->getBlockSetting($block_id, 'gedcom');
|
||
$show_timestamp = $this->getBlockSetting($block_id, 'show_timestamp', '0');
|
||
$languages = explode(',', $this->getBlockSetting($block_id, 'languages'));
|
||
|
||
echo '<tr><td class="descriptionbox wrap">',
|
||
GedcomTag::getLabel('TITL'),
|
||
'</td><td class="optionbox"><input type="text" name="title" size="30" value="', Filter::escapeHtml($title), '"></td></tr>';
|
||
|
||
// templates
|
||
echo '<tr><td class="descriptionbox wrap">',
|
||
I18N::translate('Templates'),
|
||
'</td><td class="optionbox wrap">';
|
||
// The CK editor needs lots of help to load/save data :-(
|
||
if (Module::getModuleByName('ckeditor')) {
|
||
$ckeditor_onchange = 'CKEDITOR.instances.html.setData(document.block.html.value);';
|
||
} else {
|
||
$ckeditor_onchange = '';
|
||
}
|
||
echo '<select name="template" onchange="document.block.html.value=document.block.template.options[document.block.template.selectedIndex].value;', $ckeditor_onchange, '">';
|
||
echo '<option value="', Filter::escapeHtml($html), '">', I18N::translate('Custom'), '</option>';
|
||
foreach ($templates as $title => $template) {
|
||
echo '<option value="', Filter::escapeHtml($template), '">', $title, '</option>';
|
||
}
|
||
echo '</select>';
|
||
if (!$html) {
|
||
echo '<p>', I18N::translate('To assist you in getting started with this block, we have created several standard templates. When you select one of these templates, the text area will contain a copy that you can then alter to suit your site’s requirements.'), '</p>';
|
||
}
|
||
echo '</td></tr>';
|
||
|
||
if (count(Tree::getAll()) > 1) {
|
||
if ($gedcom == '__current__') {$sel_current = 'selected'; } else {$sel_current = ''; }
|
||
if ($gedcom == '__default__') {$sel_default = 'selected'; } else {$sel_default = ''; }
|
||
echo '<tr><td class="descriptionbox wrap">',
|
||
I18N::translate('Family tree'),
|
||
'</td><td class="optionbox">',
|
||
'<select name="gedcom">',
|
||
'<option value="__current__" ', $sel_current, '>', I18N::translate('Current'), '</option>',
|
||
'<option value="__default__" ', $sel_default, '>', I18N::translate('Default'), '</option>';
|
||
foreach (Tree::getAll() as $tree) {
|
||
if ($tree->getName() === $gedcom) {$sel = 'selected'; } else {$sel = ''; }
|
||
echo '<option value="', $tree->getNameHtml(), '" ', $sel, '>', $tree->getTitleHtml(), '</option>';
|
||
}
|
||
echo '</select>';
|
||
echo '</td></tr>';
|
||
}
|
||
|
||
// html
|
||
echo '<tr><td colspan="2" class="descriptionbox">',
|
||
I18N::translate('Content');
|
||
if (!$html) {
|
||
echo '<p>', I18N::translate('As well as using the toolbar to apply HTML formatting, you can insert database fields which are updated automatically. These special fields are marked with <b>#</b> characters. For example <b>#totalFamilies#</b> will be replaced with the actual number of families in the database. Advanced users may wish to apply CSS classes to their text, so that the formatting matches the currently selected theme.'), '</p>';
|
||
}
|
||
echo
|
||
'</td></tr><tr>',
|
||
'<td colspan="2" class="optionbox">';
|
||
echo '<textarea name="html" class="html-edit" rows="10" style="width:98%;">', Filter::escapeHtml($html), '</textarea>';
|
||
echo '</td></tr>';
|
||
|
||
echo '<tr><td class="descriptionbox wrap">';
|
||
echo I18N::translate('Show the date and time of update');
|
||
echo '</td><td class="optionbox">';
|
||
echo FunctionsEdit::editFieldYesNo('show_timestamp', $show_timestamp);
|
||
echo '<input type="hidden" name="timestamp" value="', WT_TIMESTAMP, '">';
|
||
echo '</td></tr>';
|
||
|
||
echo '<tr><td class="descriptionbox wrap">';
|
||
echo I18N::translate('Show this block for which languages');
|
||
echo '</td><td class="optionbox">';
|
||
echo FunctionsEdit::editLanguageCheckboxes('lang', $languages);
|
||
echo '</td></tr>';
|
||
}
|
||
}
|