.
*/
use Zend_Session;
/**
* Class DescendancyModule
*/
class DescendancyModule extends Module implements ModuleSidebarInterface {
/** {@inheritdoc} */
public function getTitle() {
return /* I18N: Name of a module/sidebar */
I18N::translate('Descendants');
}
/** {@inheritdoc} */
public function getDescription() {
return /* I18N: Description of the “Descendants” module */
I18N::translate('A sidebar showing the descendants of an individual.');
}
/** {@inheritdoc} */
public function modAction($modAction) {
Zend_Session::writeClose();
header('Content-Type: text/html; charset=UTF-8');
switch ($modAction) {
case 'search':
$search = Filter::get('search');
echo $this->search($search);
break;
case 'descendants':
$individual = Individual::getInstance(Filter::get('xref', WT_REGEX_XREF));
if ($individual) {
echo $this->loadSpouses($individual, 1);
}
break;
default:
http_response_code(404);
break;
}
}
/** {@inheritdoc} */
public function defaultSidebarOrder() {
return 30;
}
/** {@inheritdoc} */
public function hasSidebarContent() {
return !Auth::isSearchEngine();
}
/** {@inheritdoc} */
public function getSidebarAjaxContent() {
return '';
}
/** {@inheritdoc} */
public function getSidebarContent() {
global $controller;
$controller->addInlineJavascript('
function dsearchQ() {
var query = jQuery("#sb_desc_name").val();
if (query.length>1) {
jQuery("#sb_desc_content").load("module.php?mod=' . $this->getName() . '&mod_action=search&search="+query);
}
}
jQuery("#sb_desc_name").focus(function(){this.select();});
jQuery("#sb_desc_name").blur(function(){if (this.value=="") this.value="' . I18N::translate('Search') . '";});
var dtimerid = null;
jQuery("#sb_desc_name").keyup(function(e) {
if (dtimerid) window.clearTimeout(dtimerid);
dtimerid = window.setTimeout("dsearchQ()", 500);
});
jQuery("#sb_desc_content").on("click", ".sb_desc_indi", function() {
var self = jQuery(this),
state = self.children(".plusminus"),
target = self.siblings("div");
if(state.hasClass("icon-plus")) {
if (jQuery.trim(target.html())) {
target.show("fast"); // already got content so just show it
} else {
target
.hide()
.load(self.attr("href"), function(response, status, xhr) {
if(status == "success" && response !== "") {
target.show("fast");
}
})
}
} else {
target.hide("fast");
}
state.toggleClass("icon-minus icon-plus");
return false;
});
');
return
'
' .
'' .
'
' . $this->getPersonLi($controller->record, 1) . '
' .
'
';
}
/**
* @param Individual $person
* @param integer $generations
*
* @return string
*/
public function getPersonLi(Individual $person, $generations = 0) {
$icon = $generations > 0 ? 'icon-minus' : 'icon-plus';
$lifespan = $person->canShow() ? '(' . $person->getLifeSpan() . ')' : '';
$spouses = $generations > 0 ? $this->loadSpouses($person, 0) : '';
return sprintf('
%s %s %s
%s
%s
', $this->getName(), $person->getXref(), $icon, $person->getSexImage(), $person->getFullName(), $lifespan, $person->getHtmlUrl(), '', $spouses);
}
/**
* @param Family $family
* @param Individual $person
* @param integer $generations
*
* @return string
*/
public function getFamilyLi(Family $family, Individual $person, $generations = 0) {
$marryear = $family->getMarriageYear();
$marr = $marryear ? '' . $marryear : '';
$fam = '';
$kids = $this->loadChildren($family, $generations);
return sprintf('
%s %s %s
%s
%s
', $person->getSexImage(), $person->getFullName(), $marr, $person->getHtmlUrl(), $fam, $kids);
}
/**
* @param string $query
*
* @return string
*/
public function search($query) {
if (strlen($query) < 2) {
return '';
}
$rows = Database::prepare(
"SELECT i_id AS xref" .
" FROM `##individuals`, `##name`" .
" WHERE (i_id LIKE ? OR n_sort LIKE ?)" .
" AND i_id=n_id AND i_file=n_file AND i_file=?" .
" ORDER BY n_sort"
)
->execute(array("%{$query}%", "%{$query}%", WT_GED_ID))
->fetchAll();
$out = '';
foreach ($rows as $row) {
$person = Individual::getInstance($row->xref);
if ($person->canShowName()) {
$out .= $this->getPersonLi($person);
}
}
if ($out) {
return '';
} else {
return '';
}
}
/**
* @param Individual $person
* @param integer $generations
*
* @return string
*/
public function loadSpouses(Individual $person, $generations) {
$out = '';
if ($person && $person->canShow()) {
foreach ($person->getSpouseFamilies() as $family) {
$spouse = $family->getSpouse($person);
if ($spouse) {
$out .= $this->getFamilyLi($family, $spouse, $generations - 1);
}
}
if (!$out) {
$out = '' . I18N::translate('No children') . '';
}
}
if ($out) {
return '';
} else {
return '';
}
}
/**
* @param Family $family
* @param integer $generations
*
* @return string
*/
public function loadChildren(Family $family, $generations) {
$out = '';
if ($family->canShow()) {
$children = $family->getChildren();
if ($children) {
foreach ($children as $child) {
$out .= $this->getPersonLi($child, $generations - 1);
}
} else {
$out .= '' . I18N::translate('No children') . '';
}
}
if ($out) {
return '';
} else {
return '';
}
}
}