/**
* Return the path to the jQuery file.
*/
function jquery_update_jquery_path() {
$jquery_file = array( 'none' => 'jquery.js' , 'min' => 'jquery.min.js' );
return JQUERY_UPDATE_REPLACE_PATH . '/' . $jquery_file[variable_get( 'jquery_update_compression_type' , 'min' )];
}
* This source code was highlighted with Source Code Highlighter .
/**
* Return the path to the jQuery file.
*/
function jquery_update_jquery_path() {
$curr_uri = request_uri();
if (strpos($curr_uri, 'admin' )>0 || strpos($curr_uri, 'edit' )>0 || strpos($curr_uri, 'add' )>0){
$jquery_file = array( 'none' => 'jquery.js' , 'min' => 'jquery.min.js' );
return JQUERY_UPDATE_REPLACE_PATH . '/' . $jquery_file[variable_get( 'jquery_update_compression_type' , 'min' )];
}
else {
$jquery_file = array( 'none' => 'jquery-1.4.2.js' , 'min' => 'jquery-1.4.2.min.js' );
return JQUERY_UPDATE_REPLACE_PATH . '/' . $jquery_file[variable_get( 'jquery_update_compression_type' , 'min' )];
}
}
* This source code was highlighted with Source Code Highlighter .
Source: https://habr.com/ru/post/94510/
All Articles