Nag_Task::getFormattedDescription PHP Method

getFormattedDescription() public method

Format the description - link URLs, etc.
public getFormattedDescription ( ) : string
return string
    public function getFormattedDescription()
    {
        $desc = $GLOBALS['injector']->getInstance('Horde_Core_Factory_TextFilter')->filter($this->desc, 'text2html', array('parselevel' => Horde_Text_Filter_Text2html::MICRO));
        try {
            return Horde::callHook('format_description', array($desc), 'nag');
        } catch (Horde_Exception_HookNotSet $e) {
            return $desc;
        }
    }