. */ /** * Class NotesTabModule */ class NotesTabModule extends AbstractModule 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() { global $WT_TREE; return Auth::isEditor($WT_TREE) || $this->getFactsWithNotes(); } /** {@inheritdoc} */ public function isGrayedOut() { return !$this->getFactsWithNotes(); } /** {@inheritdoc} */ public function getTabContent() { global $WT_TREE, $controller; ob_start(); echo ''; ?> getFactsWithNotes() as $fact) { if ($fact->getTag() == 'NOTE') { print_main_notes($fact, 1); } else { for ($i = 2; $i < 4; ++$i) { print_main_notes($fact, $i); } } } if (!$this->getFactsWithNotes()) { echo ''; } // New note link if ($controller->record->canEdit()) { ?>
getPreference('SHOW_LEVEL2_NOTES') ? 'checked' : ''; ?> onclick="jQuery('tr.row_note2').toggle();">
', I18N::translate('There are no notes for this individual.'), '
getPreference('SHOW_LEVEL2_NOTES')) { echo ''; } 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() { return !Auth::isSearchEngine(); // Search engines cannot use AJAX } /** {@inheritdoc} */ public function getPreLoadContent() { return ''; } }