Function voteJodel
has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
function voteJodel($jodel2vote, $how2vote){
global $apiroot, $baseurl, $config;
$callurl = $apiroot . "jodels?transform=1&filter=jodelID,eq," . $jodel2vote;
$jodeljson = getCall($callurl);
Function voteComment
has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
function voteComment( $comment2vote, $how2vote){
global $apiroot, $baseurl, $config;
$userid = $_SESSION['userid'];
$apiroot = $config->apiUrl;
$commentsjson = getCall($apiroot . "comments?transform=1&filter=commentID,eq," . $comment2vote);
Method voteComment
has 65 lines of code (exceeds 25 allowed). Consider refactoring.
function voteComment( $comment2vote, $how2vote){
global $apiroot, $baseurl, $config;
$userid = $_SESSION['userid'];
$apiroot = $config->apiUrl;
$commentsjson = getCall($apiroot . "comments?transform=1&filter=commentID,eq," . $comment2vote);
Method voteJodel
has 63 lines of code (exceeds 25 allowed). Consider refactoring.
function voteJodel($jodel2vote, $how2vote){
global $apiroot, $baseurl, $config;
$callurl = $apiroot . "jodels?transform=1&filter=jodelID,eq," . $jodel2vote;
$jodeljson = getCall($callurl);
File mod.php
has 271 lines of code (exceeds 250 allowed). Consider refactoring.
<?php
session_start();
require '../functions/apicalls.php';
require '../functions/jodelmeta.php';
Method jodelage
has 44 lines of code (exceeds 25 allowed). Consider refactoring.
function jodelage($postdate)
{
$now = date('Y-m-d H:i:s');
$now = date_create_from_format('Y-m-d H:i:s', $now);
$postdate = date_create_from_format('Y-m-d H:i:s', $postdate);
Function manipulateUser
has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
function manipulateUser($user, $role, $mycaps){
global $apiroot;
$execute = false;
switch($role){
case 0:
Method manipulateUser
has 41 lines of code (exceeds 25 allowed). Consider refactoring.
function manipulateUser($user, $role, $mycaps){
global $apiroot;
$execute = false;
switch($role){
case 0:
Method reportContent
has 30 lines of code (exceeds 25 allowed). Consider refactoring.
function reportContent( $content, $contentID, $reason){
global $apiroot;
$userid = $_SESSION['userid'];
if($content == "post"){
$postfields = "{\n \n \"abuseIDFK\": \"$reason\",\n \"jodelDFK\": \"$contentID\"\n,\n \"jodlerIDFK\": \"$userid\"\n}";
Method deleteComment
has 28 lines of code (exceeds 25 allowed). Consider refactoring.
function deleteComment($commentID){
global $apiroot, $config, $baseurl;
$uploaddir = $config->image_upload_dir;
Function jodelage
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
function jodelage($postdate)
{
$now = date('Y-m-d H:i:s');
$now = date_create_from_format('Y-m-d H:i:s', $now);
$postdate = date_create_from_format('Y-m-d H:i:s', $postdate);
Consider simplifying this complex logical expression.
if($caps['promote_to_mod'] == true || $caps['promote_to_admin'] == true || $caps['promote_to_superadmin'] == true || $caps['promote_to_user'] == true || $caps['ban'] == true || $caps['delete_users'] == true || $caps['change_karma'] == true ) {
echo '<a href="user/usermgmt.php" class="list-group-item list-group-item-action">Usermanagement</a>';
$hascaps = true;
}
Function deleteComment
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
function deleteComment($commentID){
global $apiroot, $config, $baseurl;
$uploaddir = $config->image_upload_dir;
Function getAccountType
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
function getAccountType($config, $acctype){
$usertype = (object) array();
switch($acctype){
case 0:
Function reportContent
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
function reportContent( $content, $contentID, $reason){
global $apiroot;
$userid = $_SESSION['userid'];
if($content == "post"){
$postfields = "{\n \n \"abuseIDFK\": \"$reason\",\n \"jodelDFK\": \"$contentID\"\n,\n \"jodlerIDFK\": \"$userid\"\n}";