meta at hooks
This commit is contained in:
@ -42,7 +42,7 @@ class ListJsonTable
|
||||
{
|
||||
$paramsStr = $this->createParams($this->data['meta']['params']);
|
||||
$hookBefore = $this->beforePrintHook;
|
||||
$this->html .= $hookBefore();
|
||||
$this->html .= $hookBefore($this->data['meta']);
|
||||
$this->html .= "<table $paramsStr>";
|
||||
}
|
||||
|
||||
@ -192,7 +192,7 @@ class ListJsonTable
|
||||
{
|
||||
$this->html .= "</table>";
|
||||
$hookAfter = $this->afterPrintHook;
|
||||
$this->html .= $hookAfter();
|
||||
$this->html .= $hookAfter($this->data['meta']);
|
||||
}
|
||||
|
||||
public function render(): void
|
||||
|
Reference in New Issue
Block a user