streams/Zotlabs/Module/Photomap.php
2019-06-30 23:36:03 -07:00

24 lines
561 B
PHP

<?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.');
}
}