add missing module

This commit is contained in:
zotlabs 2019-06-30 20:11:48 -07:00
parent 6b1f5503a3
commit 2925aad846

View file

@ -0,0 +1,24 @@
<?php
namespace Zotlabs\Module;
use App;
use Zotlabs\Web\Controller;
use Zotlabs\Lib\Apps;
class Photomap extends Controller {
function get() {
$desc = t('This app provides a displayable map when viewing detail of photos that contain location information.');
$text = '<div class="section-content-info-wrapper">' . $desc . '</div>';
if(! ( local_channel() && Apps::system_app_installed(local_channel(),'Photomap'))) {
return $text;
}
return $text . '<br><br>' . t('This app is currently installed');
}
}