mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
15 lines
245 B
PHP
15 lines
245 B
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (C) 2010-2021 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
|
|
class CLILikeWebPage extends WebPage
|
|
{
|
|
public function add_comment($sText)
|
|
{
|
|
$this->add('#'.$sText."<br/>\n");
|
|
}
|
|
}
|