Remove theme_basename() for now as the changeset that introduced it was reverted and nothing uses it. See #10067.

git-svn-id: http://svn.automattic.com/wordpress/trunk@11545 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2009-06-10 16:36:46 +00:00
parent 0c2e8444c4
commit c5ae6aa620

View File

@ -1134,27 +1134,4 @@ function add_custom_image_header($header_callback, $admin_header_callback) {
add_action('admin_menu', array(&$GLOBALS['custom_image_header'], 'init'));
}
/**
* Get the basename of a theme.
*
* This method extracts the filename of a theme file from a path
*
* @package WordPress
* @subpackage Plugin
* @since 2.8.0
*
* @access private
*
* @param string $file The filename of a theme file
* @return string The filename relative to the themes folder
*/
function theme_basename($file) {
$file = str_replace('\\','/',$file); // sanitize for Win32 installs
$file = preg_replace('|/+|','/', $file); // remove any duplicate slash
$theme_dir = str_replace('\\','/', get_theme_root()); // sanitize for Win32 installs
$theme_dir = preg_replace('|/+|','/', $theme_dir); // remove any duplicate slash
$file = preg_replace('|^.*/themes/.*?/|','',$file); // get relative path from theme dir
return $file;
}
?>