Showing 398 of 4,293 total issues
Method remoteConcatGet
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
public static function remoteConcatGet($postId = null, $blocking = false, $host = null, $args = array())
{
if (apply_filters('kb.remote.concat.get.disable', false)) {
return null;
Method saveModules
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function saveModules($modules)
{
/** @var \Kontentblocks\Modules\Module $module */
foreach ($modules as $module) {
Function _decodeFeatures
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
_decodeFeatures: function(data) {
var results = [],
i,
f,
c,
Function geocode
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
geocode: function(query, cb, context) {
getJSON(
this.options.serviceUrl + 'search',
L.extend(
{
Method setupUtilities
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
private function setupUtilities()
{
$this->services['utility.logger'] = function ($container) {
Function reverse
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
reverse: function(location, scale, cb, context) {
getJSON(
this.options.serviceUrl + 'reverse',
L.extend(
{
Function _decodeFeatures
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
_decodeFeatures: function(data) {
var results = [],
i,
f,
c,
Function reverse
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
reverse: function(location, scale, cb, context) {
getJSON(
this.options.serviceUrl + 'reverse',
L.extend(
{
Function geocode
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
geocode: function(query, cb, context) {
getJSON(
this.options.serviceUrl + 'search',
L.extend(
{
Method renderSingleArea
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
function renderSingleArea($areaId, $post_id = null, $areaSettings = array(), $moduleSettings = array(), $echo = true)
{
global $post;
$postId = (is_null($post_id) && !is_null($post)) ? $post->ID : $post_id;
Method init
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function init()
{
$areas = wp_cache_get('dynamicareas', Utilities::getCacheGroup());
if ($areas === false) {
Method settingsForm
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
private function settingsForm($data)
{
$templateData = array(
'strings' => I18n::getPackages('Areas', 'Common'),
'editMode' => (!empty($data)),
Method addByFile
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function addByFile($file)
{
include_once $file;
$classname = str_replace('.php', '', basename($file));
$modelArg = '';
Method action
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected static function action(Request $request)
{
if (!defined('KB_ONSITE_ACTIVE')) {
define('KB_ONSITE_ACTIVE', true);
}
Method toJSON
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function toJSON()
{
$json = array(
'width' => $this->image->size[0],
'height' => $this->image->size[1],
Function render
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
render: function (reload) {
var that = this,
json;
Logger.User.info('Frontend modal retrieves data from the server');
json = this.model.toJSON();
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function moduleUpdated
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
moduleUpdated: function (res, b, c, save, notice) {
var that = this;
that.model.trigger('modal.serialize.before');
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function App
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
KB.App = function () {
/*
Frontend bootstrap
called on jquery.ready
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function postRender
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
postRender: function () {
var value = this.model.get('value');
var queryargs = {};
var that = this;
var id = this.model.get('value').id;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function renderAreas
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
public function renderAreas()
{
$out = '';
foreach ($this->areas as $area) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"