fix View Jason Table
This commit is contained in:
parent
71b2fdfb6b
commit
c6918c85b3
@ -23,8 +23,8 @@ class ViewJsonTable extends JasonTable
|
|||||||
$paramsStr = $this->createParams($this->data['meta']['params']);
|
$paramsStr = $this->createParams($this->data['meta']['params']);
|
||||||
|
|
||||||
//Хук перед выводом ячейки
|
//Хук перед выводом ячейки
|
||||||
if (isset($this->beforePrintTable)){
|
if (isset($this->beforePrintHook)){
|
||||||
$hook = $this->beforePrintTable;
|
$hook = $this->beforePrintHook;
|
||||||
$this->html = $hook();
|
$this->html = $hook();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -60,8 +60,8 @@ class ViewJsonTable extends JasonTable
|
|||||||
{
|
{
|
||||||
$this->html .= "</table>";
|
$this->html .= "</table>";
|
||||||
|
|
||||||
if(isset($this->afterPrintTable)){
|
if(isset($this->afterPrintHook)){
|
||||||
$hookAfter = $this->afterPrintTable;
|
$hookAfter = $this->afterPrintHook;
|
||||||
$this->html .= $hookAfter();
|
$this->html .= $hookAfter();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user