p_master::p_master PHP Method

p_master() public method

Constuctor Set module include path
public p_master ( $include_path = false )
    function p_master($include_path = false)
    {
        global $phpbb_root_path;
        $this->include_path = $include_path !== false ? $include_path : $phpbb_root_path . 'includes/';
        // Make sure the path ends with /
        if (substr($this->include_path, -1) !== '/') {
            $this->include_path .= '/';
        }
    }