PHPFusion\Rewrite\Permalinks::handleOutput PHP Method

handleOutput() private method

Main Function : Handles the Output This function will Handle the output by calling several functions which are used in this Class.
private handleOutput ( )
    private function handleOutput()
    {
        $settings = \fusion_get_settings();
        // Buffers for Permalink - Using New Driver Pattern
        $this->handle_permalink_requests();
        // Output and Redirect 301 if NON-SEO url found
        $this->replace_output();
        // Prepend all the File/Images/CSS/JS etc Links with ROOT path
        $this->appendRootAll();
        // For Developer, to see what is happening behind
        if ($settings['debug_seo'] == "1") {
        }
    }