55 lines
1.4 KiB
PHP
55 lines
1.4 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* TestableJavaScript.php
|
||
|
|
*
|
||
|
|
* @since 2002-08-03
|
||
|
|
* @category Library
|
||
|
|
* @package Pdf
|
||
|
|
* @author Nicola Asuni <info@tecnick.com>
|
||
|
|
* @copyright 2002-2026 Nicola Asuni - Tecnick.com LTD
|
||
|
|
* @license https://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE)
|
||
|
|
* @link https://github.com/tecnickcom/tc-lib-pdf
|
||
|
|
*
|
||
|
|
* This file is part of tc-lib-pdf software library.
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace Test;
|
||
|
|
|
||
|
|
class TestableJavaScript extends \Com\Tecnick\Pdf\Tcpdf
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @param array<string, mixed> $prp
|
||
|
|
* @return array<string, mixed>
|
||
|
|
* @throws \Throwable
|
||
|
|
*/
|
||
|
|
public function exposeGetAnnotOptFromJSProp(array $prp = []): array
|
||
|
|
{
|
||
|
|
return $this->getAnnotOptFromJSProp($prp);
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @throws \Throwable */
|
||
|
|
public function exposeGetPDFDefFillColor(): string
|
||
|
|
{
|
||
|
|
return $this->getPDFDefFillColor();
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @param array<string, mixed> $opt
|
||
|
|
* @param array<string, mixed> $jsp
|
||
|
|
* @return array<string, mixed>
|
||
|
|
* @throws \Throwable
|
||
|
|
*/
|
||
|
|
public function exposeMergeAnnotOptions(
|
||
|
|
array $opt = ['subtype' => 'text'],
|
||
|
|
array $jsp = [],
|
||
|
|
string $color = '',
|
||
|
|
): array {
|
||
|
|
$opt = \array_merge(['subtype' => 'text'], $opt);
|
||
|
|
|
||
|
|
$method = new \ReflectionMethod($this, 'mergeAnnotOptions');
|
||
|
|
/** @var array<string, mixed> */
|
||
|
|
return $method->invokeArgs($this, [$opt, $jsp, $color]);
|
||
|
|
}
|
||
|
|
}
|