YetiForceCompany/YetiForceCRM

View on GitHub
modules/Users/textparsers/MeetingUrl.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

/**
 * Special function to display the meeting URL.
 *
 * @package Textparser
 *
 * @copyright YetiForce S.A.
 * @license YetiForce Public License 6.5 (licenses/LicenseEN.txt or yetiforce.com)
 * @author Radosław Skrzypczak <r.skrzypczak@yetiforce.com>
 */
class Users_MeetingUrl_Textparser extends \App\TextParser\Base
{
    /** @var string Class name */
    public $name = 'LBL_MEETING_URL';

    /** @var string Parser type */
    public $type = 'mail';

    /**
     * Process.
     *
     * @return string
     */
    public function process()
    {
        return $this->textParser->getParam('meetingUrl');
    }
}