Compare commits

..

No commits in common. "b3747442619ac063d5afab04df755ec87aca2b30" and "d98ddded07131f602486783f5f016002ea7d7fb7" have entirely different histories.

View File

@ -28,8 +28,8 @@ class ViewJsonTable extends JasonTable
$paramsStr = $this->createParams($this->data['meta']['params']); $paramsStr = $this->createParams($this->data['meta']['params']);
//Хук перед выводом ячейки //Хук перед выводом ячейки
if (isset($this->beforePrintHook)){ if (isset($this->beforePrintTable)){
$hook = $this->beforePrintHook; $hook = $this->beforePrintTable;
$this->html = $hook(); $this->html = $hook();
} }
@ -65,8 +65,8 @@ class ViewJsonTable extends JasonTable
{ {
$this->html .= "</table>"; $this->html .= "</table>";
if(isset($this->afterPrintHook)){ if(isset($this->afterPrintTable)){
$hookAfter = $this->afterPrintHook; $hookAfter = $this->afterPrintTable;
$this->html .= $hookAfter(); $this->html .= $hookAfter();
} }
} }