Showing 5,566 of 7,504 total issues
Method add_menu_page
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
function add_menu_page( $page_title, $menu_title, $access_level, $file, $function = '', $icon_url = '', $position = NULL ) {
Method check_column
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
function check_column($table_name, $col_name, $col_type, $is_null = null, $key = null, $default = null, $extra = null) {
Method check_comment
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
function check_comment($author, $email, $url, $comment, $user_ip, $user_agent, $comment_type) {
Method GenerateID3v1Tag
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public static function GenerateID3v1Tag($title, $artist, $album, $year, $genreid, $comment, $track='') {
Method crop
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function crop( $src_x, $src_y, $src_w, $src_h, $dst_w = null, $dst_h = null, $src_abs = false ) {
Method crop
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function crop( $src_x, $src_y, $src_w, $src_h, $dst_w = null, $dst_h = null, $src_abs = false ) {
Method image_resize
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
function image_resize( $file, $max_w, $max_h, $crop = false, $suffix = null, $dest_path = null, $jpeg_quality = 90 ) {
Method generate_rewrite_rules
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
function generate_rewrite_rules($permalink_structure, $ep_mask = EP_NONE, $paged = true, $feed = true, $forcomments = false, $walk_dirs = true, $endpoints = true) {
Method wpmu_signup_blog_notification
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
function wpmu_signup_blog_notification( $domain, $path, $title, $user, $user_email, $key, $meta = array() ) {
Method link_pages
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
function link_pages($before='<br />', $after='<br />', $next_or_number='number', $nextpagelink='next page', $previouspagelink='previous page',
$pagelink='%', $more_file='') {
Method crop
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
abstract public function crop( $src_x, $src_y, $src_w, $src_h, $dst_w = null, $dst_h = null, $src_abs = false );
Avoid deeply nested control flow statements. Open
Open
if (angular.isString(val)) {
formData.append(key, val);
} else {
if (config.sendObjectsAsJsonBlob && angular.isObject(val)) {
formData.append(key, new Blob([val], {type: 'application/json'}));
Avoid deeply nested control flow statements. Open
Open
if (((!xhr.status && !xhr.aborted) || 500 == xhr.status || 416 == xhr.status) && ++data.retry <= options.chunkUploadRetry) {
// let's try again the same chunk
// only applicable for recoverable error codes 500 && 416
var delay = xhr.status ? 0 : api.chunkNetworkDownRetryTimeout;
Avoid deeply nested control flow statements. Open
Open
if (index > -1) {
basePath = src.substring(0, index + 1);
break;
}
Avoid deeply nested control flow statements. Open
Open
if( _type != 'dragleave' ){
onHover.call(evt[currentTarget], true, evt);
}
Avoid deeply nested control flow statements. Open
Open
if (((!xhr.status && !xhr.aborted) || 500 == xhr.status) && (options.retry || 0) < options.uploadRetry) {
options.retry = (options.retry || 0) + 1;
var delay = api.networkDownRetryTimeout;
// inform about recoverable problems
Avoid deeply nested control flow statements. Open
Open
if (angular.isDate(val)) {
val = val.toISOString();
}
Function resolveState
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
function resolveState(state, params, paramsAreFiltered, inherited, dst, options) {
Avoid deeply nested control flow statements. Open
Open
if (isArray(encoded)) {
result += map(encoded, encodeDashes).join("-");
} else {
result += encodeURIComponent(encoded);
}
Avoid deeply nested control flow statements. Open
Open
if (index > -1) {
basePath = src.substring(0, index + 1);
break;
}