mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 21:38:39 +00:00
19 lines
327 B
PHP
Executable File
19 lines
327 B
PHP
Executable File
<?php
|
|
|
|
namespace Mpdf\Tag;
|
|
|
|
class NewColumn extends Tag
|
|
{
|
|
|
|
public function open($attr, &$ahtml, &$ihtml)
|
|
{
|
|
$this->mpdf->ignorefollowingspaces = true;
|
|
$this->mpdf->NewColumn();
|
|
$this->mpdf->ColumnAdjust = false; // disables all column height adjustment for the page.
|
|
}
|
|
|
|
public function close(&$ahtml, &$ihtml)
|
|
{
|
|
}
|
|
}
|