Work on registration of existing systems to users

This commit is contained in:
Deon George
2022-03-14 22:28:54 +11:00
parent d68307461e
commit 8072f7c5a9
19 changed files with 553 additions and 56 deletions

View File

@@ -36,6 +36,7 @@ class Page
$this->logo = new ANSI;
$this->left_box = new Font;
$this->crlf = $crlf;
$this->text = '';
}
public function __get($key)
@@ -114,7 +115,8 @@ class Page
*/
public function addText(string $text,bool $right=FALSE)
{
$this->text = $text;
$this->text .= $text;
$this->text_right = $right;
}