The function search_widget_normal_form() has an NPath complexity of 576. The configured NPath complexity threshold is 200. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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
The function search_widget_prefilter_form() has an NPath complexity of 240. The configured NPath complexity threshold is 200. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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
The function search_widget_show() has an NPath complexity of 567. The configured NPath complexity threshold is 200. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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
Avoid using undefined variables such as '$prefix' which will lead to PHP notices. Open
$form .= '<label class="sf-select-multiple-title" for="sf_'.$prefix.'[]">'.$icons_for_search_terms[$prefix].' '.$sf_value['name'].'</label><br />';
- Read upRead up
- Exclude checks
UndefinedVariable
Since: 2.8.0
Detects when a variable is used that has not been defined before.
Example
class Foo
{
private function bar()
{
// $message is undefined
echo $message;
}
}
Source https://phpmd.org/rules/cleancode.html#undefinedvariable
Avoid using undefined variables such as '$prefix' which will lead to PHP notices. Open
$form .= '<label class="sf-select-multiple-title" for="sf_'.$prefix.'[]">'.$icons_for_search_terms[$prefix].' '.$sf_value['name'].'</label><br />';
- Read upRead up
- Exclude checks
UndefinedVariable
Since: 2.8.0
Detects when a variable is used that has not been defined before.
Example
class Foo
{
private function bar()
{
// $message is undefined
echo $message;
}
}
Source https://phpmd.org/rules/cleancode.html#undefinedvariable
Avoid using undefined variables such as '$icons_for_search_terms' which will lead to PHP notices. Open
$form .= '<label class="sf-select-multiple-title" for="sf_'.$prefix.'[]">'.$icons_for_search_terms[$prefix].' '.$sf_value['name'].'</label><br />';
- Read upRead up
- Exclude checks
UndefinedVariable
Since: 2.8.0
Detects when a variable is used that has not been defined before.
Example
class Foo
{
private function bar()
{
// $message is undefined
echo $message;
}
}
Source https://phpmd.org/rules/cleancode.html#undefinedvariable
The method search_widget_show uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
Display::display_introduction_section(TOOL_SEARCH);
}
- Read upRead up
- Exclude checks
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
Avoid assigning values to variables in if clauses and the like (line '339', column '16'). Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
IfStatementAssignment
Since: 2.7.0
Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.
Example
class Foo
{
public function bar($flag)
{
if ($foo = 'bar') { // possible typo
// ...
}
if ($baz = 0) { // always false
// ...
}
}
}
Source http://phpmd.org/rules/cleancode.html#ifstatementassignment
The method search_widget_show uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else { // without cid
// prepare specific fields names (and also get possible URL param names)
foreach ($specific_fields as $specific_field) {
//get Xapian terms for a specific term prefix, in ISO, apparently
$sf_terms[$specific_field['code']] = xapian_get_all_terms(1000, $specific_field['code']);
- Read upRead up
- Exclude checks
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_widget_normal_form uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
$submit_button1 = '<button class="search" type="submit" id="submit" value="'.get_lang("Search").'" /> '.get_lang('Search').'</button>';
$submit_button2 = '<button class="search" type="submit" value="'.get_lang('Search').'" />'.get_lang('Search').'</button>';
$reset_button = '<button class="save" type="submit" id="tags-clean" value="'.get_lang('Reset keywords').'" />'.get_lang('Reset keywords').'</button> ';
}
- Read upRead up
- Exclude checks
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_widget_prefilter_form uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
$form .= format_specific_fields_selects($sf_terms, $op);
}
- Read upRead up
- Exclude checks
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
Avoid unused local variables such as '$sf_copy'. Open
$sf_copy = $sf_term_array;
- Read upRead up
- Exclude checks
UnusedLocalVariable
Since: 0.2
Detects when a local variable is declared and/or assigned, but not used.
Example
class Foo {
public function doSomething()
{
$i = 5; // Unused
}
}
Source https://phpmd.org/rules/unusedcode.html#unusedlocalvariable
Avoid unused local variables such as '$max'. Open
$max = count($sf_terms);
- Read upRead up
- Exclude checks
UnusedLocalVariable
Since: 0.2
Detects when a local variable is declared and/or assigned, but not used.
Example
class Foo {
public function doSomething()
{
$i = 5; // Unused
}
}
Source https://phpmd.org/rules/unusedcode.html#unusedlocalvariable
Avoid unused local variables such as '$thesaurus_icon'. Open
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
- Read upRead up
- Exclude checks
UnusedLocalVariable
Since: 0.2
Detects when a local variable is declared and/or assigned, but not used.
Example
class Foo {
public function doSomething()
{
$i = 5; // Unused
}
}
Source https://phpmd.org/rules/unusedcode.html#unusedlocalvariable
Avoid unused local variables such as '$icons_for_search_terms'. Open
$form .= '<label class="sf-select-multiple-title" for="sf_'.$prefix.'[]">'.$icons_for_search_terms[$prefix].' '.$sf_value['name'].'</label><br />';
- Read upRead up
- Exclude checks
UnusedLocalVariable
Since: 0.2
Detects when a local variable is declared and/or assigned, but not used.
Example
class Foo {
public function doSomething()
{
$i = 5; // Unused
}
}
Source https://phpmd.org/rules/unusedcode.html#unusedlocalvariable
The parameter $prefilter_prefix is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $sf_terms is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $prefilter_prefix is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $sf_terms is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $extra_select_attr is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $show_thesaurus is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $show_thesaurus is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $sf_term_array is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $sf_terms is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $show_thesaurus is not named in camelCase. Open
function display_search_form($action, $show_thesaurus, $sf_terms, $op)
{
$type = (!empty($_REQUEST['type']) ? htmlentities($_REQUEST['type']) : 'normal');
switch ($type) {
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $sf_terms is not named in camelCase. Open
function display_search_form($action, $show_thesaurus, $sf_terms, $op)
{
$type = (!empty($_REQUEST['type']) ? htmlentities($_REQUEST['type']) : 'normal');
switch ($type) {
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
Variable "sf_terms" is not in valid camel caps format Open
foreach ($sf_terms as $prefix => $sf_term_array) {
- Exclude checks
Variable "sf_copy" is not in valid camel caps format Open
$sf_copy = $sf_term_array;
- Exclude checks
Consider putting global function "search_widget_prefilter_form" in a static class Open
function search_widget_prefilter_form(
- Exclude checks
Variable "and_checked" is not in valid camel caps format Open
$and_checked = 'checked="checked"';
- Exclude checks
Variable "prefilter_prefix" is not in valid camel caps format Open
$prefilter_prefix
- Exclude checks
Variable "specific_fields" is not in valid camel caps format Open
foreach ($specific_fields as $specific_field) {
- Exclude checks
Variable "multiple_select" is not in valid camel caps format Open
$multiple_select .= '<option value="__all__" '.$all_selected.' >-- '.$all_selected_name.' --</option>';
- Exclude checks
Variable "raw_term" is not in valid camel caps format Open
foreach ($sf_term_array as $raw_term) {
- Exclude checks
Variable "show_thesaurus" is not in valid camel caps format Open
function display_search_form($action, $show_thesaurus, $sf_terms, $op)
- Exclude checks
Variable "sf_terms" is not in valid camel caps format Open
$sf_terms,
- Exclude checks
Variable "show_thesaurus" is not in valid camel caps format Open
display_search_form($action, $show_thesaurus, $sf_terms, $op);
- Exclude checks
Variable "prefilter_prefix" is not in valid camel caps format Open
if ($prefix == $prefilter_prefix) {
- Exclude checks
Variable "multiple_select" is not in valid camel caps format Open
$multiple_selects .= $multiple_select;
- Exclude checks
Variable "or_checked" is not in valid camel caps format Open
$or_checked = '';
- Exclude checks
Variable "and_checked" is not in valid camel caps format Open
<input type="radio" class="search-operator" name="operator" value="and" '.$and_checked.'>'.api_strtoupper(get_lang('and')).'</input>
- Exclude checks
Variable "url_params" is not in valid camel caps format Open
$url_params[] = 'sf_'.$specific_field['code'];
- Exclude checks
Variable "url_params" is not in valid camel caps format Open
foreach ($url_params as $param) {
- Exclude checks
Variable "multiple_select" is not in valid camel caps format Open
$multiple_select .= '</td>';
- Exclude checks
Variable "all_selected" is not in valid camel caps format Open
$all_selected = '';
- Exclude checks
Variable "navigator_info" is not in valid camel caps format Open
if ('Internet Explorer' == $navigator_info['name'] && '6' == $navigator_info['version']) {
- Exclude checks
Variable "all_selected" is not in valid camel caps format Open
$all_selected = 'selected="selected"';
- Exclude checks
Variable "reset_button" is not in valid camel caps format Open
$reset_button = '<input type="submit" id="tags-clean" value="'.get_lang('Reset keywords').'" />';
- Exclude checks
Variable "sf_term_array" is not in valid camel caps format Open
foreach ($sf_term_array as $raw_term) {
- Exclude checks
Variable "html_term" is not in valid camel caps format Open
$html_term = htmlspecialchars($term, ENT_QUOTES, $charset);
- Exclude checks
Variable "and_checked" is not in valid camel caps format Open
<input type="radio" class="search-operator" name="operator" value="and" '.$and_checked.'>'.api_strtoupper(get_lang('and')).'</input>
- Exclude checks
Variable "multiple_select" is not in valid camel caps format Open
$multiple_select .= '<option value="'.$html_term.'" '.$selected.'>'.$html_term.'</option>';
- Exclude checks
Variable "thesaurus_icon" is not in valid camel caps format Open
$form .= ' <span class="search-links-box">'.$thesaurus_icon.$advanced_options.' </span>
- Exclude checks
Variable "html_term" is not in valid camel caps format Open
$multiple_select .= '<option value="'.$html_term.'" '.$selected.'>'.$html_term.'</option>';
- Exclude checks
Variable "or_checked" is not in valid camel caps format Open
$or_checked = 'checked="checked"';
- Exclude checks
Variable "advanced_options" is not in valid camel caps format Open
$form .= '<span class="search-links-box">'.$advanced_options.' </span>
- Exclude checks
Variable "display_thesaurus" is not in valid camel caps format Open
<div id="tags" class="tags" style="display:'.$display_thesaurus.';">
- Exclude checks
Consider putting global function "display_search_form" in a static class Open
function display_search_form($action, $show_thesaurus, $sf_terms, $op)
- Exclude checks
Variable "show_thesaurus" is not in valid camel caps format Open
$show_thesaurus,
- Exclude checks
Consider putting global function "search_widget_show" in a static class Open
function search_widget_show($action = 'index.php')
- Exclude checks
Variable "specific_field" is not in valid camel caps format Open
foreach ($specific_fields as $specific_field) {
- Exclude checks
Variable "url_params" is not in valid camel caps format Open
$url_params[] = 'sf_'.$specific_field['code'];
- Exclude checks
Consider putting global function "search_widget_normal_form" in a static class Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
- Exclude checks
Variable "show_thesaurus" is not in valid camel caps format Open
$show_thesaurus = false;
- Exclude checks
Variable "sf_terms" is not in valid camel caps format Open
$form .= format_specific_fields_selects($sf_terms, $op);
- Exclude checks
Variable "sf_value" is not in valid camel caps format Open
$sf_value = array_shift($sf_value);
- Exclude checks
Variable "prefilter_prefix" is not in valid camel caps format Open
$form .= format_one_specific_field_select($prefilter_prefix, $sf_term_array, $op, 'id="prefilter"');
- Exclude checks
Variable "prefilter_prefix" is not in valid camel caps format Open
$form .= format_specific_fields_selects($sf_terms, $op, $prefilter_prefix);
- Exclude checks
Variable "or_checked" is not in valid camel caps format Open
$or_checked = '';
- Exclude checks
Variable "thesaurus_decided" is not in valid camel caps format Open
$thesaurus_decided = true;
- Exclude checks
Variable "all_selected_name" is not in valid camel caps format Open
$all_selected_name = get_lang('Any');
- Exclude checks
Variable "sf_term_array" is not in valid camel caps format Open
if (!empty($sf_term_array)) {
- Exclude checks
Variable "sf_term_array" is not in valid camel caps format Open
foreach ($sf_term_array as $key => $value) {
- Exclude checks
Variable "sf_value" is not in valid camel caps format Open
$sf_value = array_shift($sf_value);
- Exclude checks
Variable "multiple_select" is not in valid camel caps format Open
$multiple_select .= '<td><label class="sf-select-multiple-title" for="sf_'.$prefix.'[]">'.$sf_value['name'].'</label><br />';
- Exclude checks
Variable "multiple_selects" is not in valid camel caps format Open
return $multiple_selects;
- Exclude checks
Variable "advanced_options" is not in valid camel caps format Open
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
- Exclude checks
Variable "submit_button1" is not in valid camel caps format Open
$submit_button1 = '<button class="search" type="submit" id="submit" value="'.get_lang("Search").'" /> '.get_lang('Search').'</button>';
- Exclude checks
Variable "or_checked" is not in valid camel caps format Open
$or_checked = 'checked="checked"';
- Exclude checks
Variable "sf_terms" is not in valid camel caps format Open
$sf_terms,
- Exclude checks
Variable "prefilter_prefix" is not in valid camel caps format Open
if (!is_null($prefilter_prefix)) {
- Exclude checks
Variable "sf_terms" is not in valid camel caps format Open
foreach ($sf_terms[$prefilter_prefix] as $key => $value) {
- Exclude checks
Variable "sf_term_array" is not in valid camel caps format Open
unset($sf_term_array);
- Exclude checks
Variable "sf_value" is not in valid camel caps format Open
$sf_value = array_shift($sf_value);
- Exclude checks
Variable "specific_field" is not in valid camel caps format Open
$temp = array_merge($obj['sf-'.$specific_field['code']], $temp);
- Exclude checks
Variable "specific_field" is not in valid camel caps format Open
$sf_terms[$specific_field['code']] = $temp;
- Exclude checks
Variable "specific_field" is not in valid camel caps format Open
$url_params[] = 'sf_'.$specific_field['code'];
- Exclude checks
Variable "thesaurus_decided" is not in valid camel caps format Open
if ($thesaurus_decided) {
- Exclude checks
Variable "html_term" is not in valid camel caps format Open
$multiple_select .= '<option value="'.$html_term.'" '.$selected.'>'.$html_term.'</option>';
- Exclude checks
Variable "multiple_select" is not in valid camel caps format Open
$multiple_select .= '</select>';
- Exclude checks
Variable "multiple_select" is not in valid camel caps format Open
$multiple_select .= '<td><img class="sf-select-splitter" src="../img/search-big-plus.gif" alt="plus-sign-decoration"/></td>';
- Exclude checks
Variable "sf_term_array" is not in valid camel caps format Open
$sf_copy = $sf_term_array;
- Exclude checks
Variable "sf_value" is not in valid camel caps format Open
$multiple_select .= '<td><label class="sf-select-multiple-title" for="sf_'.$prefix.'[]">'.$sf_value['name'].'</label><br />';
- Exclude checks
Variable "multiple_selects" is not in valid camel caps format Open
$multiple_selects .= $multiple_select;
- Exclude checks
Variable "show_thesaurus" is not in valid camel caps format Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
- Exclude checks
Variable "reset_button" is not in valid camel caps format Open
'.$reset_button.'
- Exclude checks
Consider putting global function "search_widget_prepare" in a static class Open
function search_widget_prepare(&$htmlHeadXtra)
- Exclude checks
Variable "prefilter_prefix" is not in valid camel caps format Open
$prefilter_prefix = null
- Exclude checks
Variable "prefilter_prefix" is not in valid camel caps format Open
$sf_value = get_specific_field_list(['code' => "'$prefilter_prefix'"]);
- Exclude checks
Variable "multiple_select" is not in valid camel caps format Open
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Exclude checks
Variable "sf_term_array" is not in valid camel caps format Open
$sf_term_array = $temp;
- Exclude checks
Variable "sf_terms" is not in valid camel caps format Open
$form .= format_specific_fields_selects($sf_terms, $op, $prefilter_prefix);
- Exclude checks
Variable "display_thesaurus" is not in valid camel caps format Open
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Exclude checks
Variable "sf_terms" is not in valid camel caps format Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
- Exclude checks
Variable "specific_field" is not in valid camel caps format Open
$sf_terms[$specific_field['code']] = xapian_get_all_terms(1000, $specific_field['code']);
- Exclude checks
Variable "navigator_info" is not in valid camel caps format Open
$navigator_info = api_get_navigator();
- Exclude checks
Variable "submit_button2" is not in valid camel caps format Open
$submit_button2 = '<input class="lower-submit" type="submit" value="'.get_lang('Search').'" />';
- Exclude checks
Variable "show_thesaurus" is not in valid camel caps format Open
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Exclude checks
Variable "thesaurus_icon" is not in valid camel caps format Open
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
- Exclude checks
Variable "sf_terms" is not in valid camel caps format Open
$form .= format_specific_fields_selects($sf_terms, $op);
- Exclude checks
Variable "all_selected_name" is not in valid camel caps format Open
$multiple_select .= '<option value="__all__" '.$all_selected.' >-- '.$all_selected_name.' --</option>';
- Exclude checks
Variable "sf_terms" is not in valid camel caps format Open
$max = count($sf_terms);
- Exclude checks
Variable "sf_value" is not in valid camel caps format Open
$sf_value = array_shift($sf_value);
- Exclude checks
Variable "navigator_info" is not in valid camel caps format Open
if ('Internet Explorer' == $navigator_info['name'] && '6' == $navigator_info['version']) {
- Exclude checks
Variable "submit_button1" is not in valid camel caps format Open
$submit_button1 = '<input type="submit" id="submit" value="'.get_lang('Search').'" />';
- Exclude checks
Variable "display_thesaurus" is not in valid camel caps format Open
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Exclude checks
Variable "advanced_options" is not in valid camel caps format Open
$form .= ' <span class="search-links-box">'.$thesaurus_icon.$advanced_options.' </span>
- Exclude checks
Variable "sf_term_array" is not in valid camel caps format Open
$form .= format_one_specific_field_select($prefilter_prefix, $sf_term_array, $op, 'id="prefilter"');
- Exclude checks
Variable "show_thesaurus" is not in valid camel caps format Open
$show_thesaurus,
- Exclude checks
Variable "sf_terms" is not in valid camel caps format Open
$sf_terms,
- Exclude checks
Variable "specific_field" is not in valid camel caps format Open
foreach ($specific_fields as $specific_field) {
- Exclude checks
Variable "sf_terms" is not in valid camel caps format Open
$sf_terms[$specific_field['code']] = xapian_get_all_terms(1000, $specific_field['code']);
- Exclude checks
Variable "specific_field" is not in valid camel caps format Open
$sf_terms[$specific_field['code']] = xapian_get_all_terms(1000, $specific_field['code']);
- Exclude checks
Variable "extra_select_attr" is not in valid camel caps format Open
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Exclude checks
Variable "all_selected_name" is not in valid camel caps format Open
$all_selected_name = get_lang('All');
- Exclude checks
Variable "submit_button2" is not in valid camel caps format Open
$submit_button2 = '<button class="search" type="submit" value="'.get_lang('Search').'" />'.get_lang('Search').'</button>';
- Exclude checks
Variable "reset_button" is not in valid camel caps format Open
$reset_button = '<button class="save" type="submit" id="tags-clean" value="'.get_lang('Reset keywords').'" />'.get_lang('Reset keywords').'</button> ';
- Exclude checks
Variable "and_checked" is not in valid camel caps format Open
$and_checked = '';
- Exclude checks
Variable "prefilter_prefix" is not in valid camel caps format Open
$prefilter_prefix = api_get_setting('search_prefilter_prefix');
- Exclude checks
Variable "thesaurus_decided" is not in valid camel caps format Open
$thesaurus_decided = false;
- Exclude checks
Consider putting global function "format_one_specific_field_select" in a static class Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
- Exclude checks
Variable "all_selected" is not in valid camel caps format Open
$multiple_select .= '<option value="__all__" '.$all_selected.' >-- '.$all_selected_name.' --</option>';
- Exclude checks
Variable "multiple_select" is not in valid camel caps format Open
$multiple_select .= format_one_specific_field_select($prefix, $sf_term_array, $op, 'multiple="multiple" size="7" class="sf-select-multiple"');
- Exclude checks
Variable "sf_terms" is not in valid camel caps format Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
- Exclude checks
Variable "submit_button1" is not in valid camel caps format Open
'.$submit_button1.'
- Exclude checks
Variable "and_checked" is not in valid camel caps format Open
$and_checked = 'checked="checked"';
- Exclude checks
Variable "advanced_options" is not in valid camel caps format Open
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
- Exclude checks
Variable "show_thesaurus" is not in valid camel caps format Open
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Exclude checks
Variable "specific_fields" is not in valid camel caps format Open
$specific_fields = get_specific_field_list();
- Exclude checks
Variable "sf_terms" is not in valid camel caps format Open
$sf_terms[$specific_field['code']] = $temp;
- Exclude checks
Variable "prefilter_prefix" is not in valid camel caps format Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
- Exclude checks
Variable "submit_button2" is not in valid camel caps format Open
'.$submit_button2.'
- Exclude checks
Variable "prefilter_prefix" is not in valid camel caps format Open
foreach ($sf_terms[$prefilter_prefix] as $key => $value) {
- Exclude checks
Variable "sf_value" is not in valid camel caps format Open
$sf_value = get_specific_field_list(['code' => "'$prefilter_prefix'"]);
- Exclude checks
Variable "sf_terms" is not in valid camel caps format Open
$sf_terms = [];
- Exclude checks
Variable "url_params" is not in valid camel caps format Open
$url_params = [];
- Exclude checks
Variable "course_filter" is not in valid camel caps format Open
$course_filter = chamilo_get_boolean_query(XAPIAN_PREFIX_COURSEID.$cid);
- Exclude checks
Variable "course_filter" is not in valid camel caps format Open
$dkterms = chamilo_query_simple_query('', 0, 1000, [$course_filter]);
- Exclude checks
Variable "specific_fields" is not in valid camel caps format Open
foreach ($specific_fields as $specific_field) {
- Exclude checks
Variable "show_thesaurus" is not in valid camel caps format Open
$show_thesaurus = true;
- Exclude checks
Variable "sf_term_array" is not in valid camel caps format Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
- Exclude checks
Variable "raw_term" is not in valid camel caps format Open
$term = substr($raw_term, 1);
- Exclude checks
Consider putting global function "format_specific_fields_selects" in a static class Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
- Exclude checks
Variable "multiple_selects" is not in valid camel caps format Open
$multiple_selects = '';
- Exclude checks
Variable "sf_term_array" is not in valid camel caps format Open
unset($sf_term_array);
- Exclude checks
Variable "sf_value" is not in valid camel caps format Open
$sf_value = get_specific_field_list(['code' => "'$prefix'"]);
- Exclude checks
Variable "thesaurus_icon" is not in valid camel caps format Open
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
- Exclude checks
Variable "and_checked" is not in valid camel caps format Open
$and_checked = '';
- Exclude checks
Variable "show_thesaurus" is not in valid camel caps format Open
$show_thesaurus,
- Exclude checks
Variable "sf_term_array" is not in valid camel caps format Open
$sf_term_array = $temp;
- Exclude checks
Variable "sf_value" is not in valid camel caps format Open
$form .= '<label class="sf-select-multiple-title" for="sf_'.$prefix.'[]">'.$icons_for_search_terms[$prefix].' '.$sf_value['name'].'</label><br />';
- Exclude checks
Variable "sf_terms" is not in valid camel caps format Open
function display_search_form($action, $show_thesaurus, $sf_terms, $op)
- Exclude checks
Variable "specific_field" is not in valid camel caps format Open
$url_params[] = 'sf_'.$specific_field['code'];
- Exclude checks
Variable "sf_terms" is not in valid camel caps format Open
display_search_form($action, $show_thesaurus, $sf_terms, $op);
- Exclude checks
Variable "extra_select_attr" is not in valid camel caps format Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
- Exclude checks
Variable "multiple_select" is not in valid camel caps format Open
return $multiple_select;
- Exclude checks
Variable "sf_term_array" is not in valid camel caps format Open
foreach ($sf_terms as $prefix => $sf_term_array) {
- Exclude checks
Variable "multiple_select" is not in valid camel caps format Open
$multiple_select = '';
- Exclude checks
Variable "sf_term_array" is not in valid camel caps format Open
$multiple_select .= format_one_specific_field_select($prefix, $sf_term_array, $op, 'multiple="multiple" size="7" class="sf-select-multiple"');
- Exclude checks
Variable "or_checked" is not in valid camel caps format Open
<input type="radio" class="search-operator" name="operator" value="or" '.$or_checked.'>'.api_strtoupper(get_lang('or')).'</input>
- Exclude checks
Variable "display_thesaurus" is not in valid camel caps format Open
<div id="tags" class="tags" style="display:'.$display_thesaurus.';">
- Exclude checks
Variable "icons_for_search_terms" is not in valid camel caps format Open
$form .= '<label class="sf-select-multiple-title" for="sf_'.$prefix.'[]">'.$icons_for_search_terms[$prefix].' '.$sf_value['name'].'</label><br />';
- Exclude checks
Variable "or_checked" is not in valid camel caps format Open
<input type="radio" class="search-operator" name="operator" value="or" '.$or_checked.'>'.api_strtoupper(get_lang('or')).'</input>
- Exclude checks
The variable $all_selected_name is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $sf_term_array is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $multiple_selects is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $display_thesaurus is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $sf_term_array is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $prefilter_prefix is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $extra_select_attr is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $sf_terms is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $sf_term_array is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $sf_term_array is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $multiple_selects is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $submit_button2 is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $prefilter_prefix is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $sf_value is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $and_checked is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $sf_value is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $show_thesaurus is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $submit_button2 is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $thesaurus_icon is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $sf_value is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $or_checked is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $show_thesaurus is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $prefilter_prefix is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $sf_term_array is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $multiple_select is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $html_term is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $submit_button1 is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $sf_terms is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $and_checked is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $advanced_options is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $all_selected is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $navigator_info is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $reset_button is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $submit_button1 is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $multiple_select is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $sf_term_array is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $multiple_select is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $sf_copy is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $sf_value is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $multiple_select is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $sf_value is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $display_thesaurus is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $reset_button is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $submit_button1 is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $and_checked is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $advanced_options is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $display_thesaurus is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $url_params is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $show_thesaurus is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $sf_value is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $prefilter_prefix is not named in camelCase. Open
function display_search_form($action, $show_thesaurus, $sf_terms, $op)
{
$type = (!empty($_REQUEST['type']) ? htmlentities($_REQUEST['type']) : 'normal');
switch ($type) {
- Read upRead up
- Exclude checks
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 $sf_terms is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $url_params is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $sf_terms is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $raw_term is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $multiple_select is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $advanced_options is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $prefilter_prefix is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $all_selected_name is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $multiple_select is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $multiple_select is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $multiple_select is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $advanced_options is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $submit_button2 is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $sf_term_array is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $sf_terms is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $or_checked is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $specific_fields is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $specific_field is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $all_selected_name is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $all_selected is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $reset_button is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $sf_terms is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $prefilter_prefix is not named in camelCase. Open
function display_search_form($action, $show_thesaurus, $sf_terms, $op)
{
$type = (!empty($_REQUEST['type']) ? htmlentities($_REQUEST['type']) : 'normal');
switch ($type) {
- Read upRead up
- Exclude checks
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 $show_thesaurus is not named in camelCase. Open
function display_search_form($action, $show_thesaurus, $sf_terms, $op)
{
$type = (!empty($_REQUEST['type']) ? htmlentities($_REQUEST['type']) : 'normal');
switch ($type) {
- Read upRead up
- Exclude checks
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 $sf_terms is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $show_thesaurus is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $all_selected is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $html_term is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $multiple_select is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $sf_term_array is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $prefilter_prefix is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $sf_term_array is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $multiple_select is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $sf_term_array is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $multiple_select is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $navigator_info is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $navigator_info is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $or_checked is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $display_thesaurus is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $prefilter_prefix is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $and_checked is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $raw_term is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $sf_terms is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $thesaurus_icon is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $sf_terms is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $icons_for_search_terms is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $or_checked is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $sf_value is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $thesaurus_icon is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $or_checked is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $and_checked is not named in camelCase. Open
function search_widget_normal_form($action, $show_thesaurus, $sf_terms, $op)
{
$thesaurus_icon = Display::return_icon('thesaurus.gif', get_lang('Advanced search options'), ['id' => 'thesaurus-icon']);
$advanced_options = '<a id="tags-toggle" href="#">'.get_lang('Advanced search options').'</a>';
$display_thesaurus = (true == $show_thesaurus ? 'block' : 'none');
- Read upRead up
- Exclude checks
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 $show_thesaurus is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $html_term is not named in camelCase. Open
function format_one_specific_field_select($prefix, $sf_term_array, $op, $extra_select_attr = 'size="7" class="sf-select-multiple"')
{
global $charset;
$multiple_select = '<select '.$extra_select_attr.' title="'.$prefix.'" id="sf-'.$prefix.'" name="sf_'.$prefix.'[]">';
- Read upRead up
- Exclude checks
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 $and_checked is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $or_checked is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $show_thesaurus is not named in camelCase. Open
function display_search_form($action, $show_thesaurus, $sf_terms, $op)
{
$type = (!empty($_REQUEST['type']) ? htmlentities($_REQUEST['type']) : 'normal');
switch ($type) {
- Read upRead up
- Exclude checks
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 $sf_terms is not named in camelCase. Open
function display_search_form($action, $show_thesaurus, $sf_terms, $op)
{
$type = (!empty($_REQUEST['type']) ? htmlentities($_REQUEST['type']) : 'normal');
switch ($type) {
- Read upRead up
- Exclude checks
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 $course_filter is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $specific_fields is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $thesaurus_decided is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $specific_field is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $specific_field is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $url_params is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $thesaurus_decided is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $sf_term_array is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $multiple_selects is not named in camelCase. Open
function format_specific_fields_selects($sf_terms, $op, $prefilter_prefix = '')
{
// Process each prefix type term
$i = 0;
$max = count($sf_terms);
- Read upRead up
- Exclude checks
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 $sf_value is not named in camelCase. Open
function search_widget_prefilter_form(
$action,
$show_thesaurus,
$sf_terms,
$op,
- Read upRead up
- Exclude checks
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 $specific_fields is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $specific_field is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $sf_terms is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $sf_terms is not named in camelCase. Open
function display_search_form($action, $show_thesaurus, $sf_terms, $op)
{
$type = (!empty($_REQUEST['type']) ? htmlentities($_REQUEST['type']) : 'normal');
switch ($type) {
- Read upRead up
- Exclude checks
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 $course_filter is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $specific_field is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $specific_field is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $thesaurus_decided is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $specific_field is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $specific_field is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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 $url_params is not named in camelCase. Open
function search_widget_show($action = 'index.php')
{
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
// TODO: load images dinamically when they're avalaible from specific field ui to add
$groupId = api_get_group_id();
- Read upRead up
- Exclude checks
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();
}
}