streams/Code/Module/Markup.php

23 lines
414 B
PHP
Raw Normal View History

<?php
2022-02-16 04:08:28 +00:00
namespace Code\Module;
2022-02-16 04:08:28 +00:00
use Code\Lib\Apps;
use Code\Lib\Libsync;
use Code\Web\Controller;
2021-12-02 23:02:31 +00:00
class Markup extends Controller
{
2021-12-02 23:02:31 +00:00
public 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>';
2021-12-02 23:02:31 +00:00
return $text;
}
}