. */ /** * Class MediaTabModule */ class MediaTabModule extends Module implements ModuleTabInterface { private $facts; /** {@inheritdoc} */ public function getTitle() { return /* I18N: Name of a module */ I18N::translate('Media'); } /** {@inheritdoc} */ public function getDescription() { return /* I18N: Description of the “Media” module */ I18N::translate('A tab showing the media objects linked to an individual.'); } /** {@inheritdoc} */ public function defaultTabOrder() { return 50; } /** {@inheritdoc} */ public function hasTabContent() { global $WT_TREE; return Auth::isEditor($WT_TREE) || $this->getFactsWithMedia(); } /** {@inheritdoc} */ public function isGrayedOut() { return !$this->getFactsWithMedia(); } /** {@inheritdoc} */ public function getTabContent() { global $WT_TREE, $controller; ob_start(); echo ''; foreach ($this->getFactsWithMedia() as $fact) { if ($fact->getTag() == 'OBJE') { print_main_media($fact, 1); } else { for ($i = 2; $i < 4; ++$i) { print_main_media($fact, $i); } } } if (!$this->getFactsWithMedia()) { echo ''; } // New media link if ($controller->record->canEdit() && $WT_TREE->getPreference('MEDIA_UPLOAD') >= Auth::accessLevel($controller->record->getTree())) { ?>
', I18N::translate('There are no media objects for this individual.'), '

getName() . '_content">' . ob_get_clean() . ''; } /** * Get all the facts for an individual which contain media objects. * * @return Fact[] */ private function getFactsWithMedia() { 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) OBJE @' . WT_REGEX_XREF . '@/', $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 ''; } }