DNS::loadTpl PHP Method

loadTpl() public method

public loadTpl ( )
    function loadTpl()
    {
        $this->tpl['zone'] = file_get_contents($this->tpl_path . "/zone.tpl");
        $this->tpl['record_a'] = file_get_contents($this->tpl_path . "/record_a.tpl");
        $this->tpl['record_cname'] = file_get_contents($this->tpl_path . "/record_cname.tpl");
        $this->tpl['record_mx'] = file_get_contents($this->tpl_path . "/record_mx.tpl");
        $this->tpl['named.conf'] = file_get_contents($this->tpl_path . "/named.conf.tpl");
    }