示例#1
0
 public function renderBackButton($text)
 {
     $url_no = $this->grid->escape($this->grid->getBackUrl());
     $target = $this->getTarget();
     $returnCode = !$target ? "data-url='{$url_no}' data-target='{$target}'" : "onclick='window.location=" . $this->grid->escape(json_encode($this->grid->getBackUrl())) . "'";
     return sprintf('<input type="button" value="%s" %s />' . PHP_EOL, htmlentities($text, ENT_QUOTES, 'UTF-8'), $returnCode);
 }