The method display_form() has an NPath complexity of 11520. The configured NPath complexity threshold is 200. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 method get_posted_course() has an NPath complexity of 15972. The configured NPath complexity threshold is 200. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 method parseResources() has an NPath complexity of 206. The configured NPath complexity threshold is 200. Open
public static function parseResources(
$resource_titles,
$resourceList,
$showHeader = true,
$showItems = true
- 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 '$forum_categories' which will lead to PHP notices. Open
$forum_categories[$id] = $resource;
- 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 '$forum_topics' which will lead to PHP notices. Open
$forum_topics[$resource->obj->forum_id][$id] = $resource;
- 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 '$forums' which will lead to PHP notices. Open
$forums[$resource->obj->forum_category][$id] = $resource;
- 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 display_form uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
if ($recycleOption) {
echo '<br /><button class="save" type="submit">'.get_lang('Validate').'</button>';
} else {
echo '<br />
- 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 display_form uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
echo '<br />
<button
class="save btn btn--primary"
type="submit"
- 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 display_form uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
if (!empty($hidden_fields['destination_session'])) {
echo '<br />
<button
class="save"
- 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 '$forum_categories'. Open
$forum_categories[$id] = $resource;
- 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 '$forum_topics'. Open
$forum_topics[$resource->obj->forum_id][$id] = $resource;
- 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 '$forums'. Open
$forums[$resource->obj->forum_category][$id] = $resource;
- 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 '$resource'. Open
foreach ($resources as $id => $resource) {
- 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 '$charset'. Open
global $charset; ?>
- 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 '$icon'. Open
$icon = Display::returnIconPath('progress_bar.gif');
- 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 '$type'. Open
foreach ($course->resources as $type => $resources) {
- 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 '$resource'. Open
foreach ($resources as $id => $resource) {
- 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 '$post_value'. Open
foreach ($documents as $id_to_check => $post_value) {
- 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 $course_code is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $session_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $list_course is not named in camelCase. Open
public static function display_form_session_export(
$list_course,
$hidden_fields = null,
$avoidSerialize = false
) {
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $resource_titles is not named in camelCase. Open
public static function parseResources(
$resource_titles,
$resourceList,
$showHeader = true,
$showItems = true
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form_session_export(
$list_course,
$hidden_fields = null,
$avoidSerialize = false
) {
- 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 "hidden_fields" is not in valid camel caps format Open
$hidden_fields = null,
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
!empty($hidden_fields['origin_session'])
- Exclude checks
Variable "forum_topics" is not in valid camel caps format Open
$forum_topics = [];
- Exclude checks
Variable "forum_category_id" is not in valid camel caps format Open
id="resource_'.RESOURCE_FORUMCATEGORY.'_'.$forum_category_id.'"
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
if (is_array($hidden_fields)) {
- Exclude checks
Variable "session_id" is not in valid camel caps format Open
$session_id = (int) $session_id;
- Exclude checks
Variable "table_prop" is not in valid camel caps format Open
INNER JOIN '.$table_prop.' p
- Exclude checks
Variable "table_prop" is not in valid camel caps format Open
$sql = "SELECT * FROM $table_prop
- Exclude checks
Variable "forum_id" is not in valid camel caps format Open
$forum_id = $obj->obj->forum_id;
- Exclude checks
Variable "post_id" is not in valid camel caps format Open
$posts_to_save[] = $post_id;
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
$courseInfo = api_get_course_info($hidden_fields['destination_course']);
- Exclude checks
Variable "forum_category_id" is not in valid camel caps format Open
if (isset($forums[$forum_category_id])) {
- Exclude checks
Variable "forum_category_id" is not in valid camel caps format Open
cat_id="'.$forum_category_id.'"
- Exclude checks
Variable "topic_id" is not in valid camel caps format Open
name="resource['.RESOURCE_FORUMTOPIC.']['.$topic_id.']" />';
- Exclude checks
Variable "element_count" is not in valid camel caps format Open
$element_count++;
- Exclude checks
Variable "element_count" is not in valid camel caps format Open
$element_count++;
- Exclude checks
Variable "forum_topics" is not in valid camel caps format Open
$forum_topics[$resource->obj->forum_id][$id] = $resource;
- Exclude checks
Variable "element_count" is not in valid camel caps format Open
$element_count++;
- Exclude checks
Method name "CourseSelectForm::get_posted_course" is not in camel caps format Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
- Exclude checks
Variable "table_prop" is not in valid camel caps format Open
$table_prop = Database::get_course_table(TABLE_ITEM_PROPERTY);
- Exclude checks
Variable "session_id" is not in valid camel caps format Open
$conditionSession = ' AND d.session_id ='.$session_id;
- Exclude checks
Variable "all_properties" is not in valid camel caps format Open
$all_properties = [];
- Exclude checks
Variable "thread_id" is not in valid camel caps format Open
if ($post->obj->thread_id == $thread_id &&
- Exclude checks
Variable "shared_path_part" is not in valid camel caps format Open
$shared_path_part = substr(
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
if (!empty($hidden_fields['destination_session'])) {
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
$sessionTitle = !empty($hidden_fields['destination_session']) ? ' ('.api_get_session_name($hidden_fields['destination_session']).')' : null;
- Exclude checks
Variable "forum_topics" is not in valid camel caps format Open
$my_forum_topics = $forum_topics[$forum_id];
- Exclude checks
Variable "element_count" is not in valid camel caps format Open
$element_count++;
- Exclude checks
Missing parameter name Open
* @param $course
- Exclude checks
Method name "CourseSelectForm::display_hidden_scorm_directories" is not in camel caps format Open
public static function display_hidden_scorm_directories($course)
- Exclude checks
Variable "post_id" is not in valid camel caps format Open
unset($course->resources[RESOURCE_FORUMPOST][$post_id]);
- Exclude checks
Variable "file_type" is not in valid camel caps format Open
if (isset($obj->file_type) && 'folder' === $obj->file_type &&
- Exclude checks
Variable "id_to_check" is not in valid camel caps format Open
$obj_to_check = $resources[$id_to_check];
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
$courseInfo = api_get_course_info($hidden_fields['destination_course']);
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
!empty($hidden_fields['destination_session']) &&
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
echo '<input type="hidden" name="destination_course" value="'.$hidden_fields['destination_course'].'"/>';
- Exclude checks
Variable "forum_category" is not in valid camel caps format Open
foreach ($forum_categories as $forum_category_id => $forum_category) {
- Exclude checks
Variable "topic_id" is not in valid camel caps format Open
foreach ($my_forum_topics as $topic_id => $topic) {
- Exclude checks
Variable "resource_titles" is not in valid camel caps format Open
$resource_titles,
- Exclude checks
Variable "forum_categories" is not in valid camel caps format Open
$forum_categories[$id] = $resource;
- Exclude checks
Variable "session_id" is not in valid camel caps format Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
- Exclude checks
Variable "post_id" is not in valid camel caps format Open
foreach ($posts as $post_id => $post) {
- Exclude checks
Variable "lp_resource" is not in valid camel caps format Open
$lp_resource = $course->resources[RESOURCE_LEARNPATH][$id];
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
if (!empty($hidden_fields['destination_course'])) {
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
if (is_array($hidden_fields)) {
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
!empty($hidden_fields['origin_course']) &&
- Exclude checks
Variable "resource_titles" is not in valid camel caps format Open
$resource_titles = self::getResourceTitleList();
- Exclude checks
Variable "forum_categories" is not in valid camel caps format Open
if (!empty($forum_categories)) {
- Exclude checks
Variable "my_forums" is not in valid camel caps format Open
foreach ($my_forums as $forum_id => $forum) {
- Exclude checks
Variable "forum_id" is not in valid camel caps format Open
my_rel="'.$forum_id.'"
- Exclude checks
Variable "course_id" is not in valid camel caps format Open
d.c_id = '.$course_id.' AND
- Exclude checks
Variable "topic_id" is not in valid camel caps format Open
id="resource_'.RESOURCE_FORUMTOPIC.'_'.$topic_id.'"
- Exclude checks
Variable "list_course" is not in valid camel caps format Open
foreach ($list_course as $course) {
- Exclude checks
Variable "course_id" is not in valid camel caps format Open
$course_id = $course_info['real_id'];
- Exclude checks
Variable "resource_item" is not in valid camel caps format Open
d.id = '.$resource_item.$conditionSession.'
- Exclude checks
Variable "id_to_check" is not in valid camel caps format Open
if ($id_to_check != $id && $obj->path == $shared_path_part) {
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
foreach ($hidden_fields as $key => $value) {
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
echo '<input type="hidden" name="destination_session" value="'.$hidden_fields['destination_session'].'"/>';
- Exclude checks
Variable "forum_category_id" is not in valid camel caps format Open
$my_forums = $forums[$forum_category_id];
- Exclude checks
Variable "forum_id" is not in valid camel caps format Open
forum_id="'.$forum_id.'"
- Exclude checks
Variable "element_count" is not in valid camel caps format Open
if (empty($element_count)) {
- Exclude checks
Variable "element_count" is not in valid camel caps format Open
return $element_count;
- Exclude checks
Variable "item_property" is not in valid camel caps format Open
$all_properties[] = $item_property;
- Exclude checks
Variable "all_properties" is not in valid camel caps format Open
$course->resources[RESOURCE_DOCUMENT][$resource_item]->item_properties = $all_properties;
- Exclude checks
Variable "forum_topics" is not in valid camel caps format Open
if (isset($forum_topics[$forum_id])) {
- Exclude checks
Variable "forum_id" is not in valid camel caps format Open
if (isset($forum_topics[$forum_id])) {
- Exclude checks
Variable "resource_titles" is not in valid camel caps format Open
echo '<span class="title">'.$resource_titles[$type].'</span>';
- Exclude checks
Variable "course_code" is not in valid camel caps format Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
- Exclude checks
Variable "course_info" is not in valid camel caps format Open
$course_id = $course_info['real_id'];
- Exclude checks
Variable "resource_item" is not in valid camel caps format Open
ref = $resource_item ";
- Exclude checks
Variable "post_value" is not in valid camel caps format Open
foreach ($documents as $id_to_check => $post_value) {
- Exclude checks
Variable "id_to_check" is not in valid camel caps format Open
if (isset($resources[$id_to_check])) {
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
if (!empty($hidden_fields['destination_course'])) {
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
echo '<input type="hidden" name="origin_session" value="'.$hidden_fields['origin_session'].'"/>';
- Exclude checks
Variable "forum_categories" is not in valid camel caps format Open
$forum_categories = [];
- Exclude checks
Variable "forum_category_id" is not in valid camel caps format Open
foreach ($forum_categories as $forum_category_id => $forum_category) {
- Exclude checks
Variable "forum_category_id" is not in valid camel caps format Open
name="resource['.RESOURCE_FORUMCATEGORY.']['.$forum_category_id.']" /> ';
- Exclude checks
Variable "session_id" is not in valid camel caps format Open
if (!empty($session_id)) {
- Exclude checks
Variable "table_doc" is not in valid camel caps format Open
FROM '.$table_doc.' d
- Exclude checks
Variable "all_properties" is not in valid camel caps format Open
$all_properties[] = $item_property;
- Exclude checks
Variable "survey_id" is not in valid camel caps format Open
!in_array($obj->survey_id, array_keys($_POST['resource'][RESOURCE_SURVEY]))
- Exclude checks
Variable "post_id" is not in valid camel caps format Open
foreach ($posts as $post_id => $post) {
- Exclude checks
Variable "forum_id" is not in valid camel caps format Open
$forum_id == $post->obj->forum_id &&
- Exclude checks
Variable "post_id" is not in valid camel caps format Open
if (!in_array($post_id, $posts_to_save)) {
- Exclude checks
Variable "forum_category_id" is not in valid camel caps format Open
my_rel="'.$forum_category_id.'"
- Exclude checks
Variable "forum_id" is not in valid camel caps format Open
foreach ($my_forums as $forum_id => $forum) {
- Exclude checks
Variable "course_code" is not in valid camel caps format Open
$course_info = api_get_course_info($course_code);
- Exclude checks
Variable "db_result" is not in valid camel caps format Open
while ($obj = Database::fetch_object($db_result)) {
- Exclude checks
Variable "lp_resource" is not in valid camel caps format Open
if (isset($lp_resource) && !empty($lp_resource) && isset($lp_resource->items)) {
- Exclude checks
Variable "file_type" is not in valid camel caps format Open
if (isset($obj->file_type) && 'folder' === $obj->file_type &&
- Exclude checks
Variable "obj_to_check" is not in valid camel caps format Open
$obj_to_check->path,
- Exclude checks
Method name "CourseSelectForm::display_form" is not in camel caps format Open
public static function display_form(
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
if (!empty($hidden_fields['destination_course']) &&
- Exclude checks
Variable "forum_categories" is not in valid camel caps format Open
foreach ($forum_categories as $forum_category_id => $forum_category) {
- Exclude checks
Variable "forum_category_id" is not in valid camel caps format Open
rel="'.$forum_category_id.'"
- Exclude checks
Variable "my_forum_topics" is not in valid camel caps format Open
if (!empty($my_forum_topics)) {
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
if (!empty($hidden_fields['destination_session'])) {
- Exclude checks
Variable "table_doc" is not in valid camel caps format Open
$table_doc = Database::get_course_table(TABLE_DOCUMENT);
- Exclude checks
Variable "session_id" is not in valid camel caps format Open
$session_id = (int) $session_id;
- Exclude checks
Variable "resource_item" is not in valid camel caps format Open
$course->resources[RESOURCE_DOCUMENT][$resource_item]->item_properties = $all_properties;
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
$sessionTitle = ' ('.api_get_session_name($hidden_fields['destination_session']).')';
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
$sessionTitle = !empty($hidden_fields['destination_session']) ? ' ('.api_get_session_name($hidden_fields['destination_session']).')' : null;
- Exclude checks
Variable "element_count" is not in valid camel caps format Open
$element_count = self::parseResources($resource_titles, $course->resources, true, true);
- Exclude checks
Variable "resource_titles" is not in valid camel caps format Open
echo '<span class="title">'.$resource_titles[RESOURCE_FORUM].'</span></div>';
- Exclude checks
Variable "forum_category" is not in valid camel caps format Open
$forum_category->show();
- Exclude checks
Variable "element_count" is not in valid camel caps format Open
$element_count = 0;
- Exclude checks
Variable "lp_resource" is not in valid camel caps format Open
if (isset($lp_resource) && !empty($lp_resource) && isset($lp_resource->items)) {
- Exclude checks
Variable "lp_resource" is not in valid camel caps format Open
if (isset($lp_resource) && !empty($lp_resource) && isset($lp_resource->items)) {
- Exclude checks
Variable "resource_is_used_elsewhere" is not in valid camel caps format Open
$resource_is_used_elsewhere = $course->is_linked_resource($obj);
- Exclude checks
Variable "resource_is_used_elsewhere" is not in valid camel caps format Open
if (!isset($_POST['resource'][$type][$id]) && !$resource_is_used_elsewhere) {
- Exclude checks
Method name "CourseSelectForm::display_form_session_export" is not in camel caps format Open
public static function display_form_session_export(
- Exclude checks
Variable "list_course" is not in valid camel caps format Open
$list_course,
- Exclude checks
Variable "resource_titles" is not in valid camel caps format Open
$element_count = self::parseResources($resource_titles, $course->resources, true, true);
- Exclude checks
Variable "my_forums" is not in valid camel caps format Open
$my_forums = $forums[$forum_category_id];
- Exclude checks
Variable "my_forum_topics" is not in valid camel caps format Open
$my_forum_topics = $forum_topics[$forum_id];
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
foreach ($hidden_fields as $key => $value) {
- Exclude checks
Variable "course_id" is not in valid camel caps format Open
p.c_id = '.$course_id.' AND
- Exclude checks
Variable "db_result" is not in valid camel caps format Open
$db_result = Database::query($sql);
- Exclude checks
Variable "thread_id" is not in valid camel caps format Open
if (!isset($_POST['resource'][RESOURCE_FORUMTOPIC][$thread_id])) {
- Exclude checks
Variable "lp_resource" is not in valid camel caps format Open
foreach ($lp_resource->items as $item) {
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
$hidden_fields = null,
- Exclude checks
Variable "forum_id" is not in valid camel caps format Open
name="resource['.RESOURCE_FORUM.']['.$forum_id.']" />';
- Exclude checks
Variable "forum_id" is not in valid camel caps format Open
rel="'.$forum_id.'"
- Exclude checks
Variable "thread_id" is not in valid camel caps format Open
unset($course->resources[RESOURCE_FORUMTOPIC][$thread_id]);
- Exclude checks
Variable "id_to_check" is not in valid camel caps format Open
foreach ($documents as $id_to_check => $post_value) {
- Exclude checks
Variable "forum_id" is not in valid camel caps format Open
id="resource_'.RESOURCE_FORUM.'_'.$forum_id.'"
- Exclude checks
Method name "CourseSelectForm::display_hidden_quiz_questions" is not in camel caps format Open
public static function display_hidden_quiz_questions($course)
- Exclude checks
Variable "resource_item" is not in valid camel caps format Open
foreach ($resource as $resource_item) {
- Exclude checks
Variable "item_property" is not in valid camel caps format Open
while ($item_property = Database::fetch_assoc($res)) {
- Exclude checks
Variable "obj_to_check" is not in valid camel caps format Open
$obj_to_check = $resources[$id_to_check];
- Exclude checks
Variable "shared_path_part" is not in valid camel caps format Open
if ($id_to_check != $id && $obj->path == $shared_path_part) {
- Exclude checks
Variable "resource_is_used_elsewhere" is not in valid camel caps format Open
$resource_is_used_elsewhere = true;
- Exclude checks
Variable "hidden_fields" is not in valid camel caps format Open
echo '<input type="hidden" name="origin_course" value="'.$hidden_fields['origin_course'].'"/>';
- Exclude checks
Variable "forum_id" is not in valid camel caps format Open
$my_forum_topics = $forum_topics[$forum_id];
- Exclude checks
Variable "my_forum_topics" is not in valid camel caps format Open
foreach ($my_forum_topics as $topic_id => $topic) {
- Exclude checks
Missing parameter name Open
* @param $course
- Exclude checks
Variable "course_info" is not in valid camel caps format Open
$course_info = api_get_course_info($course_code);
- Exclude checks
Variable "course_id" is not in valid camel caps format Open
c_id = $course_id AND
- Exclude checks
Variable "posts_to_save" is not in valid camel caps format Open
$posts_to_save = [];
- Exclude checks
Variable "thread_id" is not in valid camel caps format Open
foreach ($resources as $thread_id => $obj) {
- Exclude checks
Variable "posts_to_save" is not in valid camel caps format Open
$posts_to_save[] = $post_id;
- Exclude checks
Variable "posts_to_save" is not in valid camel caps format Open
if (!in_array($post_id, $posts_to_save)) {
- Exclude checks
The variable $element_count is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $resource_titles is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_category is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $my_forum_topics is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $session_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $topic_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $element_count is not named in camelCase. Open
public static function parseResources(
$resource_titles,
$resourceList,
$showHeader = true,
$showItems = true
- 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 $session_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $session_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $forum_category_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $my_forums is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $element_count is not named in camelCase. Open
public static function parseResources(
$resource_titles,
$resourceList,
$showHeader = true,
$showItems = true
- 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 $table_prop is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $resource_item is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $resource_item is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_topics is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_category_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_category_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $my_forum_topics is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_category_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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_properties is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $post_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $forum_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $item_property is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $thread_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $topic_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_topics is not named in camelCase. Open
public static function parseResources(
$resource_titles,
$resourceList,
$showHeader = true,
$showItems = true
- 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_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $thread_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $post_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $list_course is not named in camelCase. Open
public static function display_form_session_export(
$list_course,
$hidden_fields = null,
$avoidSerialize = false
) {
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_categories is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $element_count is not named in camelCase. Open
public static function parseResources(
$resource_titles,
$resourceList,
$showHeader = true,
$showItems = true
- 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 $table_doc is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $resource_item is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $resource_item is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $forum_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $lp_resource is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form_session_export(
$list_course,
$hidden_fields = null,
$avoidSerialize = false
) {
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $resource_titles is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $lp_resource is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_categories is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_category_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $my_forums is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $resource_titles is not named in camelCase. Open
public static function parseResources(
$resource_titles,
$resourceList,
$showHeader = true,
$showItems = true
- 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_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $item_property is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $obj_to_check is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $shared_path_part is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $resource_titles is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $element_count is not named in camelCase. Open
public static function parseResources(
$resource_titles,
$resourceList,
$showHeader = true,
$showItems = true
- 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 $session_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $db_result is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $post_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $id_to_check is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_categories is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_category_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $element_count is not named in camelCase. Open
public static function parseResources(
$resource_titles,
$resourceList,
$showHeader = true,
$showItems = true
- 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_code is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $table_doc is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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_properties is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $posts_to_save is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form_session_export(
$list_course,
$hidden_fields = null,
$avoidSerialize = false
) {
- 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_info is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $table_prop is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $forum_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $forum_topics is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $topic_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $posts_to_save is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $thread_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $post_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $lp_resource is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $post_value is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $shared_path_part is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form_session_export(
$list_course,
$hidden_fields = null,
$avoidSerialize = false
) {
- 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 $forum_category_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $my_forum_topics is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $element_count is not named in camelCase. Open
public static function parseResources(
$resource_titles,
$resourceList,
$showHeader = true,
$showItems = true
- 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_info is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $thread_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form_session_export(
$list_course,
$hidden_fields = null,
$avoidSerialize = false
) {
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_category is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_category_id is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_topics is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $element_count is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- 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 $forum_categories is not named in camelCase. Open
public static function parseResources(
$resource_titles,
$resourceList,
$showHeader = true,
$showItems = true
- 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 $table_prop is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $db_result is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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_properties is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $post_id is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $lp_resource is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $obj_to_check is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $id_to_check is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $lp_resource is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $id_to_check is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $id_to_check is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $resource_is_used_elsewhere is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $resource_is_used_elsewhere is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form_session_export(
$list_course,
$hidden_fields = null,
$avoidSerialize = false
) {
- 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 $posts_to_save is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $resource_is_used_elsewhere is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- 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 $hidden_fields is not named in camelCase. Open
public static function display_form_session_export(
$list_course,
$hidden_fields = null,
$avoidSerialize = false
) {
- 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 method display_hidden_quiz_questions is not named in camelCase. Open
public static function display_hidden_quiz_questions($course)
{
if (is_array($course->resources)) {
foreach ($course->resources as $type => $resources) {
if (!empty($resources) && count($resources) > 0) {
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method display_form is not named in camelCase. Open
public static function display_form(
$course,
$hidden_fields = null,
$avoidSerialize = false,
$avoidCourseInForm = false
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method display_hidden_scorm_directories is not named in camelCase. Open
public static function display_hidden_scorm_directories($course)
{
if (is_array($course->resources)) {
foreach ($course->resources as $type => $resources) {
if (!empty($resources) && count($resources) > 0) {
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method display_form_session_export is not named in camelCase. Open
public static function display_form_session_export(
$list_course,
$hidden_fields = null,
$avoidSerialize = false
) {
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method get_posted_course is not named in camelCase. Open
public static function get_posted_course($from = '', $session_id = 0, $course_code = '', $postedCourse = null)
{
$course = $postedCourse;
if (empty($postedCourse)) {
$cb = new CourseBuilder();
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}