uawdijnntqw1x1x1
IP : 216.73.216.107
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
.
/
vendor
/
dompdf
/
dompdf
/
src
/
FrameReflower
/
ListBullet.php
/
/
<?php /** * @package dompdf * @link https://github.com/dompdf/dompdf * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License */ namespace Dompdf\FrameReflower; use Dompdf\FrameDecorator\Block as BlockFrameDecorator; use Dompdf\FrameDecorator\ListBullet as ListBulletFrameDecorator; /** * Reflows list bullets * * @package dompdf */ class ListBullet extends AbstractFrameReflower { /** * ListBullet constructor. * @param ListBulletFrameDecorator $frame */ function __construct(ListBulletFrameDecorator $frame) { parent::__construct($frame); } /** * @param BlockFrameDecorator|null $block */ function reflow(BlockFrameDecorator $block = null) { if ($block === null) { return; } /** @var ListBulletFrameDecorator */ $frame = $this->_frame; $style = $frame->get_style(); $style->set_used("width", $frame->get_width()); $frame->position(); if ($style->list_style_position === "inside") { $block->add_frame_to_line($frame); } else { $block->add_dangling_marker($frame); } } }
/srv/users/craft4/apps/craft4-newsite-space/./vendor/dompdf/dompdf/src/FrameReflower/ListBullet.php