streams/Zotlabs/Module/Secrets.php

30 lines
741 B
PHP
Raw Normal View History

<?php
namespace Zotlabs\Module;
use Zotlabs\Lib\Apps;
use Zotlabs\Lib\Libsync;
use Zotlabs\Web\Controller;
2021-12-02 23:02:31 +00:00
class Secrets extends Controller
{
2021-12-02 23:02:31 +00:00
public function get()
{
$desc = t('This app allows you to protect messages with a secret passphrase. This only works across selected platforms.');
$text = '<div class="section-content-info-wrapper">' . $desc . '</div>';
2021-12-02 23:02:31 +00:00
if (!(local_channel() && Apps::system_app_installed(local_channel(), 'Secrets'))) {
return $text;
}
2021-12-02 23:02:31 +00:00
$desc = t('This app is installed. A button to encrypt content may be found in the post editor.');
2021-12-02 23:02:31 +00:00
$text = '<div class="section-content-info-wrapper">' . $desc . '</div>';
2021-12-02 23:02:31 +00:00
return $text;
}
}