XoopsModules25x/apcal

View on GitHub

Showing 26,336 of 26,336 total issues

The property $config_nooffsitelink_valid_domains is not named in camelCase.
Open

class phpthumb
{

    // public:
    // START PARAMETERS (for object mode and phpThumb.php)
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

The property $config_ttf_directory is not named in camelCase.
Open

class phpthumb
{

    // public:
    // START PARAMETERS (for object mode and phpThumb.php)
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

The property $config_max_source_pixels is not named in camelCase.
Open

class phpthumb
{

    // public:
    // START PARAMETERS (for object mode and phpThumb.php)
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

The property $config_http_fopen_timeout is not named in camelCase.
Open

class phpthumb
{

    // public:
    // START PARAMETERS (for object mode and phpThumb.php)
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

The property $exif_thumbnail_type is not named in camelCase.
Open

class phpthumb
{

    // public:
    // START PARAMETERS (for object mode and phpThumb.php)
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

The property $thumbnail_height is not named in camelCase.
Open

class phpthumb
{

    // public:
    // START PARAMETERS (for object mode and phpThumb.php)
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

Avoid variables with short names like $hs. Configured minimum length is 3.
Open

    public $hs   = null;     // Height (Square Images Only)
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

Source https://phpmd.org/rules/naming.html#shortvariable

Avoid variables with short names like $ra. Configured minimum length is 3.
Open

    public $ra   = null;     // Rotate by Angle
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

Source https://phpmd.org/rules/naming.html#shortvariable

The property $config_nooffsitelink_text_message is not named in camelCase.
Open

class phpthumb
{

    // public:
    // START PARAMETERS (for object mode and phpThumb.php)
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

The property $config_cache_source_filemtime_ignore_remote is not named in camelCase.
Open

class phpthumb
{

    // public:
    // START PARAMETERS (for object mode and phpThumb.php)
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

The property $config_disable_imagecopyresampled is not named in camelCase.
Open

class phpthumb
{

    // public:
    // START PARAMETERS (for object mode and phpThumb.php)
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

The property $gdimg_output is not named in camelCase.
Open

class phpthumb
{

    // public:
    // START PARAMETERS (for object mode and phpThumb.php)
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

The parameter $allowed_dirs is not named in camelCase.
Open

    public function matchPath($path, $allowed_dirs)
    {
        if (!empty($allowed_dirs)) {
            foreach ($allowed_dirs as $one_dir) {
                if (preg_match('#^' . preg_quote(str_replace(DIRECTORY_SEPARATOR, '/', $this->realPathSafe($one_dir))) . '#', $path)) {
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

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

    public function resolvePath($path, $allowed_dirs)
    {
        $this->DebugMessage('resolvePath: ' . $path . ' (allowed_dirs: ' . print_r($allowed_dirs, true) . ')', __FILE__, __LINE__);

        // add base path to the top of the list
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

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

Avoid variables with short names like $fp. Configured minimum length is 3.
Open

            if ($fp = @fopen($this->config_cache_source_directory . DIRECTORY_SEPARATOR . urlencode($sourceFilename), 'wb')) {
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

Source https://phpmd.org/rules/naming.html#shortvariable

Avoid variables with short names like $rX. Configured minimum length is 3.
Open

                                    @list($width, $rX, $rY, $color) = explode('|', $parameter);
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

Source https://phpmd.org/rules/naming.html#shortvariable

Avoid variables with short names like $nw. Configured minimum length is 3.
Open

                                list($nw, $nh) = phpthumb_functions::TranslateWHbyAngle($this->w, $this->h, $this->ra);
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

Source https://phpmd.org/rules/naming.html#shortvariable

The parameter $allowed_domains is not named in camelCase.
Open

    public function OffsiteDomainIsAllowed($hostname, $allowed_domains)
    {
        static $domain_is_allowed = array();
        $hostname = strtolower($hostname);
        if (!isset($domain_is_allowed[$hostname])) {
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

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

Avoid variables with short names like $nh. Configured minimum length is 3.
Open

                                list($nw, $nh) = phpthumb_functions::TranslateWHbyAngle($this->w, $this->h, $this->ra);
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

Source https://phpmd.org/rules/naming.html#shortvariable

Avoid variables with short names like $rY. Configured minimum length is 3.
Open

                                    @list($width, $rX, $rY, $color) = explode('|', $parameter);
Severity: Minor
Found in thumbs/phpthumb.class.php by phpmd

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

Source https://phpmd.org/rules/naming.html#shortvariable

Severity
Category
Status
Source
Language