qcubed/framework

View on GitHub
assets/php/examples/datagrid/pagination.php

Summary

Maintainability
A
0 mins
Test Coverage

Avoid using undefined variables such as '$clauses' which will lead to PHP notices.
Open

        $clauses[] = $this->dtgPersons->LimitClause;

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 '$clauses' which will lead to PHP notices.
Open

        $this->dtgPersons->DataSource = Person::LoadAll($clauses);

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 '$clauses' which will lead to PHP notices.
Open

        $clauses[] = $this->dtgPersons->OrderByClause;

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

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

        $this->dtgPersons = new QDataGrid($this);

MissingImport

Since: 2.7.0

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

Example

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

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

Missing class import via use statement (line '19', column '23').
Open

        $objPaginator = new QPaginator($this->dtgPersons);

MissingImport

Since: 2.7.0

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

Example

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

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

Avoid using static access to class 'Person' in method 'dtgPersons_Bind'.
Open

        $this->dtgPersons->TotalItemCount = Person::CountAll();

StaticAccess

Since: 1.4.0

Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

Example

class Foo
{
    public function bar()
    {
        Bar::baz();
    }
}

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

Avoid using static access to class 'Person' in method 'dtgPersons_Bind'.
Open

        $this->dtgPersons->DataSource = Person::LoadAll($clauses);

StaticAccess

Since: 1.4.0

Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

Example

class Foo
{
    public function bar()
    {
        Bar::baz();
    }
}

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

The method dtgPersons_Bind is not named in camelCase.
Open

    protected function dtgPersons_Bind() {
        // We must first let the datagrid know how many total items there are
        // IMPORTANT: Do not pass a limit clause here to CountAll
        $this->dtgPersons->TotalItemCount = Person::CountAll();

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 Form_Create is not named in camelCase.
Open

    protected function Form_Create() {
        // Define the DataGrid
        $this->dtgPersons = new QDataGrid($this);

        // Using Ajax for Pagination

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

There are no issues that match your filters.

Category
Status