streams/Zotlabs/Module/Markup.php

23 lines
405 B
PHP
Raw Normal View History

<?php
namespace Zotlabs\Module;
use Zotlabs\Lib\Apps;
use Zotlabs\Lib\Libsync;
use Zotlabs\Web\Controller;
class Markup extends Controller {
function get() {
$desc = t('This app adds editor buttons for bold, italic, underline, quote, and possibly other common richtext constructs.');
$text = '<div class="section-content-info-wrapper">' . $desc . '</div>';
return $text;
}
}