mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
d12f4564e1
Signed-off-by: snipe <snipe@snipe.net>
19 lines
825 B
PHP
19 lines
825 B
PHP
<?php
|
|
|
|
namespace App\Models\Labels\Tapes\Dymo;
|
|
|
|
use App\Helpers\Helper;
|
|
use App\Models\Labels\Label;
|
|
|
|
abstract class LabelWriter extends Label
|
|
{
|
|
private const HEIGHT = 1.15;
|
|
private const MARGIN_SIDES = 0.1;
|
|
private const MARGIN_ENDS = 0.1;
|
|
|
|
public function getHeight() { return Helper::convertUnit(self::HEIGHT, 'in', $this->getUnit()); }
|
|
public function getMarginTop() { return Helper::convertUnit(self::MARGIN_SIDES, 'in', $this->getUnit()); }
|
|
public function getMarginBottom() { return Helper::convertUnit(self::MARGIN_SIDES, 'in', $this->getUnit());}
|
|
public function getMarginLeft() { return Helper::convertUnit(self::MARGIN_ENDS, 'in', $this->getUnit()); }
|
|
public function getMarginRight() { return Helper::convertUnit(self::MARGIN_ENDS, 'in', $this->getUnit()); }
|
|
} |