chamilo/chamilo-lms

View on GitHub
public/main/session/add_edit_users_to_session.php

Summary

Maintainability
A
0 mins
Test Coverage

The function search_users() has an NPath complexity of 19442. The configured NPath complexity threshold is 200.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

NPathComplexity

Since: 0.1

The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

Example

class Foo {
    function bar() {
        // lots of complicated code
    }
}

Source https://phpmd.org/rules/codesize.html#npathcomplexity

Missing class import via use statement (line '84', column '27').
Open

    $xajax_response = new xajaxResponse();

MissingImport

Since: 2.7.0

Importing all external classes in a file through use statements makes them clearly visible.

Example

function make() {
    return new \stdClass();
}

Source http://phpmd.org/rules/cleancode.html#MissingImport

The method search_users uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

        } else {
            $return .= '<select id="origin_users" name="nosessionUsersList[]" multiple="multiple" size="15" style="width:360px;">';
            while ($user = Database:: fetch_array($rs)) {
                $person_name =
                    $user['lastname'].' '.$user['firstname'].' ('.$user['username'].') '.$user['official_code'];

ElseExpression

Since: 1.4.0

An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

Example

class Foo
{
    public function bar($flag)
    {
        if ($flag) {
            // one branch
        } else {
            // another branch
        }
    }
}

Source https://phpmd.org/rules/cleancode.html#elseexpression

The method search_users uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

                } else {
                    $return .= '...<br />';
                }

ElseExpression

Since: 1.4.0

An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

Example

class Foo
{
    public function bar($flag)
    {
        if ($flag) {
            // one branch
        } else {
            // another branch
        }
    }
}

Source https://phpmd.org/rules/cleancode.html#elseexpression

Variable "this_section" is not in valid camel caps format
Open

$this_section = SECTION_PLATFORM_ADMIN;

Variable "extra_field" is not in valid camel caps format
Open

        if (1 == $extra_field[8] && ExtraField::FIELD_TYPE_SELECT == $extra_field[2]) {

Variable "extra_field" is not in valid camel caps format
Open

                'name' => $extra_field[3],

Variable "user_ids" is not in valid camel caps format
Open

                if (count($user_ids) > 0) {

Variable "extra_field" is not in valid camel caps format
Open

    foreach ($extra_field_list as $extra_field) {

Variable "xajax_response" is not in valid camel caps format
Open

    $xajax_response = new xajaxResponse();

Variable "access_url_id" is not in valid camel caps format
Open

            if (-1 != $access_url_id) {

Variable "access_url_id" is not in valid camel caps format
Open

                                access_url_id = '$access_url_id'

Variable "new_field_list" is not in valid camel caps format
Open

$new_field_list = [];

Variable "order_clause" is not in valid camel caps format
Open

                    $order_clause

Variable "tbl_user_rel_access_url" is not in valid camel caps format
Open

            $tbl_user_rel_access_url = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);

Variable "access_url_id" is not in valid camel caps format
Open

                                access_url_id = $access_url_id

Variable "add_type" is not in valid camel caps format
Open

    $add_type = Security::remove_XSS($_REQUEST['add_type']);

Variable "extra_field" is not in valid camel caps format
Open

                'name' => $extra_field[3],

Variable "extra_field_list" is not in valid camel caps format
Open

if (is_array($extra_field_list)) {

Variable "extra_field" is not in valid camel caps format
Open

        if (1 == $extra_field[8] && ExtraField::FIELD_TYPE_TAG == $extra_field[2]) {

Variable "extra_field" is not in valid camel caps format
Open

                'variable' => $extra_field[1],

Variable "order_clause" is not in valid camel caps format
Open

                            $order_clause LIMIT 11

Variable "extra_field" is not in valid camel caps format
Open

        if (1 == $extra_field[8] && ExtraField::FIELD_TYPE_TAG == $extra_field[2]) {

Variable "user_ids" is not in valid camel caps format
Open

                $user_ids = [];

Variable "tbl_user_rel_access_url" is not in valid camel caps format
Open

                            INNER JOIN $tbl_user_rel_access_url url_user

Variable "cond_user_id" is not in valid camel caps format
Open

                                AND user.status <> 6 $cond_user_id

Missing function doc comment
Open

function search_users($needle, $type)

Variable "order_clause" is not in valid camel caps format
Open

        $order_clause = ' ORDER BY lastname, firstname, username';

Variable "order_clause" is not in valid camel caps format
Open

            $order_clause = ' ORDER BY official_code, lastname, firstname, username';

Variable "order_clause" is not in valid camel caps format
Open

                    $order_clause

Variable "extra_field" is not in valid camel caps format
Open

                'type' => $extra_field[2],

Consider putting global function "search_users" in a static class
Open

function search_users($needle, $type)

Variable "cond_user_id" is not in valid camel caps format
Open

        $cond_user_id = '';

Variable "cond_user_id" is not in valid camel caps format
Open

                    $cond_user_id = ' AND user.id NOT IN('.implode(",", $user_ids).')';

Variable "extra_field_list" is not in valid camel caps format
Open

    foreach ($extra_field_list as $extra_field) {

Variable "extra_field" is not in valid camel caps format
Open

                'type' => $extra_field[2],

Variable "user_ids" is not in valid camel caps format
Open

                        $user_ids[] = (int) $row[0];

Variable "extra_field" is not in valid camel caps format
Open

        if (1 == $extra_field[8] && ExtraField::FIELD_TYPE_SELECT == $extra_field[2]) {

Variable "new_field_list" is not in valid camel caps format
Open

            $new_field_list[] = [

Variable "extra_field" is not in valid camel caps format
Open

            $options = UserManager::get_extra_user_data_for_tags($extra_field[1]);

Variable "new_field_list" is not in valid camel caps format
Open

            $new_field_list[] = [

Variable "cond_user_id" is not in valid camel caps format
Open

                        AND user.status <> 6 $cond_user_id

Variable "extra_field_list" is not in valid camel caps format
Open

$extra_field_list = UserManager::get_extra_fields();

Variable "extra_field" is not in valid camel caps format
Open

                'data' => $extra_field[9],

Variable "order_clause" is not in valid camel caps format
Open

            $order_clause = " AND user.creator_id = ".api_get_user_id().$order_clause;

Variable "user_ids" is not in valid camel caps format
Open

                    $cond_user_id = ' AND user.id NOT IN('.implode(",", $user_ids).')';

Variable "order_clause" is not in valid camel caps format
Open

                    $order_clause LIMIT 11

Variable "cond_user_id" is not in valid camel caps format
Open

                        AND user.status <> 6 $cond_user_id

Variable "access_url_id" is not in valid camel caps format
Open

            $access_url_id = api_get_current_access_url_id();

Variable "tbl_user_rel_access_url" is not in valid camel caps format
Open

                            INNER JOIN $tbl_user_rel_access_url url_user ON (url_user.user_id=user.id)

Variable "add_type" is not in valid camel caps format
Open

$add_type = 'unique';

Variable "extra_field" is not in valid camel caps format
Open

                'variable' => $extra_field[1],

Variable "order_clause" is not in valid camel caps format
Open

            $order_clause = " AND user.creator_id = ".api_get_user_id().$order_clause;

Variable "new_field" is not in valid camel caps format
Open

                                $new_field['variable'],

Variable "tbl_user_rel_access_url" is not in valid camel caps format
Open

                INNER JOIN $tbl_user_rel_access_url url_user

Variable "tbl_user_rel_access_url" is not in valid camel caps format
Open

                INNER JOIN $tbl_user_rel_access_url url_user ON (url_user.user_id = u.id)

Closing brace indented incorrectly; expected 9 spaces, found 8
Open

        } ?>" <?php if ($ajax_search) {

Variable "extra_field_list" is not in valid camel caps format
Open

            if (is_array($extra_field_list)) {

Variable "new_field" is not in valid camel caps format
Open

                    foreach ($new_field_list as $new_field) {

Variable "person_name" is not in valid camel caps format
Open

                $person_name =

Variable "xajax_response" is not in valid camel caps format
Open

    return $xajax_response;

Variable "UserList" is not in valid camel caps format
Open

$UserList = $SessionList = [];

Variable "new_field_list" is not in valid camel caps format
Open

        if (is_array($new_field_list) && count($new_field_list) > 0) {

Variable "link_add_group" is not in valid camel caps format
Open

$link_add_group = Display::url(

Variable "order_clause" is not in valid camel caps format
Open

                            $order_clause

Variable "xajax_response" is not in valid camel caps format
Open

            $xajax_response->addAssign('ajax_list_users_single', 'innerHTML', api_utf8_encode($return));

Variable "new_field_list" is not in valid camel caps format
Open

        if (is_array($new_field_list) && count($new_field_list) > 0) {

Variable "extra_field_result" is not in valid camel caps format
Open

            for ($i = 0; $i < count($extra_field_result) - 1; $i++) {

Variable "link_add_type_multiple" is not in valid camel caps format
Open

    $link_add_type_multiple = Display::url(Display::getMdiIcon(ObjectIcon::MULTI_ELEMENT, 'ch-tool-icon', null, ICON_SIZE_SMALL, get_lang('Multiple registration')).get_lang('Multiple registration'), '');

Variable "add_type" is not in valid camel caps format
Open

        if ('multiple' == $add_type) {

Variable "new_field_list" is not in valid camel caps format
Open

                    foreach ($new_field_list as $new_field) {

Variable "form_sent" is not in valid camel caps format
Open

$form_sent = 0;

Variable "access_url_id" is not in valid camel caps format
Open

                WHERE access_url_id = $access_url_id

Variable "extra_field_result" is not in valid camel caps format
Open

            $final_result = $extra_field_result[0];

Variable "final_result" is not in valid camel caps format
Open

            if (is_array($final_result) && count($final_result) > 0) {

Variable "link_add_group" is not in valid camel caps format
Open

        echo $link_add_group;

Closing brace indented incorrectly; expected 35 spaces, found 36
Open

                                    } ?>>

Variable "order_clause" is not in valid camel caps format
Open

                            $order_clause

Variable "where_filter" is not in valid camel caps format
Open

$where_filter = null;

Variable "add_type" is not in valid camel caps format
Open

$ajax_search = 'unique' == $add_type ? true : false;

Variable "ajax_search" is not in valid camel caps format
Open

if ($ajax_search) {

Variable "order_clause" is not in valid camel caps format
Open

        $order_clause

Variable "extra_field_result" is not in valid camel caps format
Open

    $extra_field_result = [];

Variable "use_extra_fields" is not in valid camel caps format
Open

    $use_extra_fields = false;

Variable "final_result" is not in valid camel caps format
Open

            if (is_array($final_result) && count($final_result) > 0) {

Variable "person_name" is not in valid camel caps format
Open

                $return .= '<option value="'.$user['id'].'">'.$person_name.' </option>';

Variable "add_type" is not in valid camel caps format
Open

    document.formulaire.add_type.value = \''.$add_type.'\';

Variable "order_clause" is not in valid camel caps format
Open

    $order_clause = ' ORDER BY official_code, lastname, firstname, username';

Variable "extra_field_result" is not in valid camel caps format
Open

                            $extra_field_result[] = UserManager::get_extra_user_data_by_tags(

Variable "access_url_id" is not in valid camel caps format
Open

        $access_url_id = api_get_current_access_url_id();

Variable "new_field_list" is not in valid camel caps format
Open

                if (is_array($new_field_list) && count($new_field_list) > 0) {

Variable "UserList" is not in valid camel caps format
Open

                                    <option value="<?php echo $uid; ?>" <?php if (in_array($uid, $UserList)) {

Closing brace indented incorrectly; expected 16 spaces, found 20
Open

                    } ?>

Variable "ajax_search" is not in valid camel caps format
Open

                    if ($ajax_search) {

Variable "UserList" is not in valid camel caps format
Open

        $UserList = [];

Variable "extra_field_result" is not in valid camel caps format
Open

                            $extra_field_result[] = UserManager::get_extra_user_data_by_value(

Variable "final_result" is not in valid camel caps format
Open

                    $final_result = array_intersect(

Variable "order_clause" is not in valid camel caps format
Open

                $order_clause

Variable "order_clause" is not in valid camel caps format
Open

        WHERE u.status <> ".DRH." AND u.status <> 6 $order_clause

Variable "new_field" is not in valid camel caps format
Open

                        echo $new_field['name'];

Variable "tbl_user_rel_access_url" is not in valid camel caps format
Open

                            INNER JOIN $tbl_user_rel_access_url url_user

Variable "xajax_response" is not in valid camel caps format
Open

            $xajax_response->addAssign('ajax_list_users_multiple', 'innerHTML', api_utf8_encode($return));

Variable "new_field" is not in valid camel caps format
Open

            foreach ($new_field_list as $new_field) {

Variable "new_field" is not in valid camel caps format
Open

                $varname = 'field_'.$new_field['variable'];

Variable "extra_field_result" is not in valid camel caps format
Open

        if (count($extra_field_result) > 1) {

Variable "final_result" is not in valid camel caps format
Open

            if (is_array($final_result) && count($final_result) > 0) {

Variable "order_clause" is not in valid camel caps format
Open

        $order_clause = " AND u.creator_id = ".api_get_user_id().$order_clause;

Variable "where_filter" is not in valid camel caps format
Open

            $where_filter

Variable "tbl_user_rel_access_url" is not in valid camel caps format
Open

        $tbl_user_rel_access_url = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);

Variable "new_field" is not in valid camel caps format
Open

                        $fieldtype = $new_field['type'];

Variable "UserList" is not in valid camel caps format
Open

    if (!is_array($UserList)) {

Variable "tbl_user_rel_access_url" is not in valid camel caps format
Open

                INNER JOIN $tbl_user_rel_access_url url_user ON (url_user.user_id = u.id)

Variable "final_result" is not in valid camel caps format
Open

        $final_result = [];

Variable "order_clause" is not in valid camel caps format
Open

        $order_clause = " AND u.creator_id = ".api_get_user_id().$order_clause;

Variable "result_list" is not in valid camel caps format
Open

            $result_list = [];

Variable "final_result" is not in valid camel caps format
Open

                $where_filter = " AND u.id IN  ('".implode("','", $final_result)."') ";

Variable "where_filter" is not in valid camel caps format
Open

                $where_filter = " WHERE u.id  = -1";

Variable "access_url_id" is not in valid camel caps format
Open

        $access_url_id = api_get_current_access_url_id();

Variable "access_url_id" is not in valid camel caps format
Open

        if (-1 != $access_url_id) {

Variable "order_clause" is not in valid camel caps format
Open

                $order_clause

Variable "add_type" is not in valid camel caps format
Open

if ('multiple' == $add_type) {

Variable "link_add_type_unique" is not in valid camel caps format
Open

    $link_add_type_unique =

Variable "link_add_type_multiple" is not in valid camel caps format
Open

    $link_add_type_multiple =

Variable "ajax_search" is not in valid camel caps format
Open

        } ?>" <?php if ($ajax_search) {

Variable "new_field" is not in valid camel caps format
Open

                        $varname = 'field_'.$new_field['variable'];

Variable "person_name" is not in valid camel caps format
Open

                    $person_name =

Variable "tbl_user_rel_access_url" is not in valid camel caps format
Open

        $tbl_user_rel_access_url = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);

Variable "access_url_id" is not in valid camel caps format
Open

        $access_url_id = api_get_current_access_url_id();

Variable "use_extra_fields" is not in valid camel caps format
Open

                        $use_extra_fields = true;

Variable "final_result" is not in valid camel caps format
Open

            $final_result = $extra_field_result[0];

Variable "link_add_type_multiple" is not in valid camel caps format
Open

        echo $link_add_type_multiple;

Variable "new_field_list" is not in valid camel caps format
Open

                if (is_array($new_field_list) && count($new_field_list) > 0) {

Variable "new_field_list" is not in valid camel caps format
Open

            foreach ($new_field_list as $new_field) {

Variable "access_url_id" is not in valid camel caps format
Open

                WHERE access_url_id = $access_url_id $where_filter

Variable "where_filter" is not in valid camel caps format
Open

                WHERE access_url_id = $access_url_id $where_filter

Variable "link_add_type_unique" is not in valid camel caps format
Open

    $link_add_type_unique = Display::url(Display::getMdiIcon(ObjectIcon::SINGLE_ELEMENT, 'ch-tool-icon', null, ICON_SIZE_SMALL, get_lang('Single registration')).get_lang('Single registration'), '');

Variable "new_field" is not in valid camel caps format
Open

                        foreach ($new_field['data'] as $option) {

Variable "add_type" is not in valid camel caps format
Open

                    if (!('multiple' == $add_type)) {

Variable "person_name" is not in valid camel caps format
Open

                        .'\',\''.$person_name.' '.'\')">'.$person_name.' </a><br />';

Variable "person_name" is not in valid camel caps format
Open

                        .'\',\''.$person_name.' '.'\')">'.$person_name.' </a><br />';

Variable "SessionList" is not in valid camel caps format
Open

$UserList = $SessionList = [];

Variable "order_clause" is not in valid camel caps format
Open

$order_clause = ' ORDER BY lastname, firstname, username';

Variable "order_clause" is not in valid camel caps format
Open

                $order_clause

Variable "new_field" is not in valid camel caps format
Open

                $fieldtype = $new_field['type'];

Variable "new_field" is not in valid camel caps format
Open

                if (UserManager::is_extra_field_available($new_field['variable'])) {

Variable "extra_field_result" is not in valid camel caps format
Open

                        $extra_field_result[$i],

Variable "person_name" is not in valid camel caps format
Open

                    $person_name = $officialCode.$user['lastname'].' '.$user['firstname'].' ('.$user['username'].')';

Variable "where_filter" is not in valid camel caps format
Open

                $where_filter = " WHERE u.id IN  ('".implode("','", $final_result)."') ";

Variable "UserList" is not in valid camel caps format
Open

    $UserList = isset($_POST['sessionUsersList']) ? $_POST['sessionUsersList'] : [];

Variable "order_clause" is not in valid camel caps format
Open

            $order_clause

Variable "form_sent" is not in valid camel caps format
Open

    if (1 == $form_sent) {

Variable "final_result" is not in valid camel caps format
Open

                $where_filter = " WHERE u.id IN  ('".implode("','", $final_result)."') ";

Variable "link_add_type_unique" is not in valid camel caps format
Open

        echo $link_add_type_unique;

Variable "access_url_id" is not in valid camel caps format
Open

                WHERE access_url_id = $access_url_id

Variable "add_type" is not in valid camel caps format
Open

                <?php if ('multiple' == $add_type) {

Variable "cond_user_id" is not in valid camel caps format
Open

                                AND user.status <> 6 $cond_user_id

Variable "UserList" is not in valid camel caps format
Open

            $UserList,

Variable "ajax_search" is not in valid camel caps format
Open

$ajax_search = 'unique' == $add_type ? true : false;

Variable "extra_field_result" is not in valid camel caps format
Open

                if (is_array($extra_field_result[$i + 1])) {

Variable "where_filter" is not in valid camel caps format
Open

                $where_filter = " AND u.id IN  ('".implode("','", $final_result)."') ";

Variable "final_result" is not in valid camel caps format
Open

            if (is_array($final_result) && count($final_result) > 0) {

Variable "use_extra_fields" is not in valid camel caps format
Open

    if ($use_extra_fields) {

Variable "order_clause" is not in valid camel caps format
Open

            $order_clause

Variable "access_url_id" is not in valid camel caps format
Open

        if (-1 != $access_url_id) {

Variable "access_url_id" is not in valid camel caps format
Open

                                access_url_id = $access_url_id

Variable "person_name" is not in valid camel caps format
Open

                        $person_name =

Variable "form_sent" is not in valid camel caps format
Open

    $form_sent = $_POST['form_sent'];

Variable "access_url_id" is not in valid camel caps format
Open

        if (-1 != $access_url_id) {

Variable "extra_field_list" is not in valid camel caps format
Open

    if (is_array($extra_field_list)) {

Variable "use_extra_fields" is not in valid camel caps format
Open

    if ($use_extra_fields) {

Variable "extra_field_result" is not in valid camel caps format
Open

                        $extra_field_result[$i + 1]

Variable "where_filter" is not in valid camel caps format
Open

                $where_filter = " AND u.id  = -1";

Variable "tbl_user_rel_access_url" is not in valid camel caps format
Open

        $tbl_user_rel_access_url = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);

Line indented incorrectly; expected 28 spaces, found 24
Open

                        }

Line indented incorrectly; expected at least 44 spaces, found 40
Open

                                        $personName =

Line indented incorrectly; expected at least 40 spaces, found 36
Open

                                    echo $personName; ?>

Line indented incorrectly; expected 40 spaces, found 36
Open

                                    if ($showOfficialCode) {

Line indented incorrectly; expected 40 spaces, found 36
Open

                                    }

Line indented incorrectly; expected at least 32 spaces, found 28
Open

                            $personName =

Closing brace indented incorrectly; expected 16 spaces, found 20
Open

                    } ?>

Line indented incorrectly; expected 28 spaces, found 24
Open

                        if ($showOfficialCode) {

Line indented incorrectly; expected at least 32 spaces, found 28
Open

                            $officialCode =

Line indented incorrectly; expected at least 28 spaces, found 24
Open

                        echo $personName; ?>

Line indented incorrectly; expected 0 spaces, found 36
Open

                                    } ?>>

Line indented incorrectly; expected 0 spaces, found 8
Open

        } ?>>

Closing brace indented incorrectly; expected 51 spaces, found 36
Open

                                    } ?>>

Line indented incorrectly; expected 0 spaces, found 20
Open

                    } ?>

Line indented incorrectly; expected at least 16 spaces, found 12
Open

            echo '&add=true';

Closing brace indented incorrectly; expected 18 spaces, found 8
Open

        } ?>" <?php if ($ajax_search) {

Line indented incorrectly; expected at least 44 spaces, found 40
Open

                                        $officialCode =

Line indented incorrectly; expected 0 spaces, found 8
Open

        } ?>" <?php if ($ajax_search) {

The variable $xajax_response is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $user_ids is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $cond_user_id is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $person_name is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $order_clause is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $order_clause is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $order_clause is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $access_url_id is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $tbl_user_rel_access_url is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $cond_user_id is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $person_name is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $user_ids is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $order_clause is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $person_name is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $xajax_response is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $user_ids is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $tbl_user_rel_access_url is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $order_clause is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $order_clause is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $person_name is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $user_ids is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $order_clause is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $xajax_response is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $cond_user_id is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $access_url_id is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $tbl_user_rel_access_url is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $order_clause is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $tbl_user_rel_access_url is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $person_name is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $xajax_response is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $order_clause is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $cond_user_id is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $access_url_id is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $cond_user_id is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $access_url_id is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $access_url_id is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $order_clause is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $cond_user_id is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $person_name is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $person_name is not named in camelCase.
Open

function search_users($needle, $type)
{
    global $sessionId;

    $tblUser = Database::get_main_table(TABLE_MAIN_USER);

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

There are no issues that match your filters.

Category
Status