Skip to content

Commit

Permalink
core (clear) Delete some deprecated methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Ser1ous committed May 20, 2022
1 parent fa455fd commit 0524a8c
Showing 1 changed file with 2 additions and 24 deletions.
26 changes: 2 additions & 24 deletions core/src/Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ public function outputContent($noEvent = false)

$this->documentOutput = $this->cleanUpMODXTags($this->documentOutput);

$this->documentOutput = $this->rewriteUrls($this->documentOutput);
$this->documentOutput = UrlProcessor::rewriteUrls($this->documentOutput);

// send out content-type and content-disposition headers
if (IN_PARSER_MODE == "true") {
Expand Down Expand Up @@ -3013,13 +3013,6 @@ public function _sendRedirectForRefPage($url)
exit;
}

/**
* @deprecated use TemplateProcessor::getTemplateCodeFromDB()
*/
public function _getTemplateCodeFromDB($templateID)
{
return TemplateProcessor::getTemplateCodeFromDB($templateID);
}

/**
* Returns an array of all parent record IDs for the id passed.
Expand Down Expand Up @@ -4341,13 +4334,7 @@ public function makeUrl($id, $alias = '', $args = '', $scheme = '')
return UrlProcessor::makeUrl((int)$id, $alias, $args, $scheme);
}

/**
* @deprecated use UrlProcessor::getAliasListing()
*/
public function getAliasListing($id)
{
return UrlProcessor::getAliasListing($id);
}


/**
* Returns the Evolution CMS version information as version, branch, release date and full application name.
Expand Down Expand Up @@ -6355,15 +6342,6 @@ public function messageQuit($msg = 'unspecified error', $query = '', $is_error =
return $this->getService('ExceptionHandler')->messageQuit($msg, $query, $is_error, $nr, $file, $source, $text, $line, $output);
}

/**
* @param $backtrace
* @return string
* @deprecated
*/
public function get_backtrace($backtrace)
{
return $this->getService('ExceptionHandler')->getBacktrace($backtrace);
}

/**
* @return string
Expand Down

0 comments on commit 0524a8c

Please sign in to comment.