streams/Zotlabs/Module/Drafts.php
2021-12-03 14:01:39 +11:00

31 lines
709 B
PHP

<?php
namespace Zotlabs\Module;
use Zotlabs\Lib\Apps;
use Zotlabs\Lib\Libsync;
use Zotlabs\Web\Controller;
class Drafts extends Controller
{
public function init()
{
if (local_channel() && Apps::system_app_installed(local_channel(), 'Drafts')) {
goaway(z_root() . '/stream/?draft=1');
}
}
public function get()
{
$desc = t('This app allows you to save posts you are writing and finish them later prior to sharing/publishing.');
$text = '<div class="section-content-info-wrapper">' . $desc . '</div>';
if (!(local_channel() && Apps::system_app_installed(local_channel(), 'Drafts'))) {
return $text;
}
}
}