p_master::set_custom_include_path PHP Method

set_custom_include_path() public method

Set custom include path for modules Schema for inclusion is include_path . modulebase
public set_custom_include_path ( string $include_path )
$include_path string include path to be used.
    function set_custom_include_path($include_path)
    {
        $this->include_path = $include_path;
        // Make sure the path ends with /
        if (substr($this->include_path, -1) !== '/') {
            $this->include_path .= '/';
        }
    }