.
*/
/**
* Class notes_WT_Module
*/
class notes_WT_Module extends Module implements ModuleTabInterface {
private $facts;
/** {@inheritdoc} */
public function getTitle() {
return /* I18N: Name of a module */ I18N::translate('Notes');
}
/** {@inheritdoc} */
public function getDescription() {
return /* I18N: Description of the “Notes” module */ I18N::translate('A tab showing the notes attached to an individual.');
}
/** {@inheritdoc} */
public function defaultTabOrder() {
return 40;
}
/** {@inheritdoc} */
public function hasTabContent() {
return WT_USER_CAN_EDIT || $this->getFactsWithNotes();
}
/** {@inheritdoc} */
public function isGrayedOut() {
return !$this->getFactsWithNotes();
}
/** {@inheritdoc} */
public function getTabContent() {
global $SHOW_LEVEL2_NOTES, $controller;
ob_start();
echo '
jQuery("tr.row_note2").toggle();';
}
return '' . ob_get_clean() . '
';
}
/**
* Get all the facts for an individual which contain notes.
*
* @return Fact[]
*/
private function getFactsWithNotes() {
global $controller;
if ($this->facts === null) {
$facts = $controller->record->getFacts();
foreach ($controller->record->getSpouseFamilies() as $family) {
if ($family->canShow()) {
foreach ($family->getFacts() as $fact) {
$facts[] = $fact;
}
}
}
$this->facts = array();
foreach ($facts as $fact) {
if (preg_match('/(?:^1|\n\d) NOTE/', $fact->getGedcom())) {
$this->facts[] = $fact;
}
}
sort_facts($this->facts);
}
return $this->facts;
}
/** {@inheritdoc} */
public function canLoadAjax() {
global $SEARCH_SPIDER;
return !$SEARCH_SPIDER; // Search engines cannot use AJAX
}
/** {@inheritdoc} */
public function getPreLoadContent() {
return '';
}
}