Skip to content
Snippets Groups Projects
Commit 58c8ea69 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2361825 by rpayanm: Remove drupal_strtolower.

parent f0a7c35c
No related branches found
No related tags found
No related merge requests found
......@@ -220,23 +220,6 @@ function drupal_strlen($text) {
return Unicode::strlen($text);
}
/**
* Lowercase a UTF-8 string.
*
* @param $text
* The string to run the operation on.
*
* @return string
* The string in lowercase.
*
* @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0.0.
* Use \Drupal\Component\Utility\Unicode::strtolower().
* @ingroup php_wrappers
*/
function drupal_strtolower($text) {
return Unicode::strtolower($text);
}
/**
* Cuts off a piece of a string based on character indices and counts.
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment