PMA\libraries\Template::__construct PHP Method

__construct() protected method

Template constructor
protected __construct ( string $name, array $data = [], array $helperFunctions = [] )
$name string Template name
$data array Variables to be provided to the template
$helperFunctions array Helper functions to be used by template
    protected function __construct($name, $data = array(), $helperFunctions = array())
    {
        $this->name = $name;
        $this->data = $data;
        $this->helperFunctions = $helperFunctions;
    }