* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ class HelperKpiCore extends Helper { /** * @var string */ public $base_folder = 'helpers/kpi/'; /** * @var string */ public $base_tpl = 'kpi.tpl'; public $id; public $icon; public $chart; public $color; public $title; public $subtitle; public $value; public $data; public $source; public $refresh = true; public $href; public $tooltip; public function generate() { $this->tpl = $this->createTemplate($this->base_tpl); $this->tpl->assign([ 'id' => $this->id, 'icon' => $this->icon, 'chart' => (bool) $this->chart, 'color' => $this->color, 'title' => $this->title, 'subtitle' => $this->subtitle, 'value' => $this->value, 'data' => $this->data, 'source' => $this->source, 'refresh' => $this->refresh, 'href' => $this->href, 'tooltip' => $this->tooltip, ]); return $this->tpl->fetch(); } }