Avoid using static access to class '\App\Language' in method 'getDetailViewRelatedLinks'. Open
'linklabel' => \App\Language::translate('LBL_SLA_POLICY', $this->getModuleName()) . ' - ' . \App\Language::translate($moduleName, $moduleName),
- Read upRead up
- Exclude checks
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 'App\Utils\ServiceContracts' in method 'getDetailViewRelatedLinks'. Open
foreach (App\Utils\ServiceContracts::getModules() as $moduleName) {
- Read upRead up
- Exclude checks
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 'Users_Privileges_Model' in method 'getDetailViewRelatedLinks'. Open
$userPrivilegesModel = Users_Privileges_Model::getCurrentUserPrivilegesModel();
- Read upRead up
- Exclude checks
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 '\App\Language' in method 'getDetailViewRelatedLinks'. Open
'linklabel' => \App\Language::translate('LBL_SLA_POLICY', $this->getModuleName()) . ' - ' . \App\Language::translate($moduleName, $moduleName),
- Read upRead up
- Exclude checks
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
Call to undeclared method \ServiceContracts_DetailView_Model::getModuleName
Open
'linklabel' => \App\Language::translate('LBL_SLA_POLICY', $this->getModuleName()) . ' - ' . \App\Language::translate($moduleName, $moduleName),
- Exclude checks
Call to undeclared method \ServiceContracts_DetailView_Model::getRecord
Open
$recordModel = $this->getRecord();
- Exclude checks
Argument 1 (mixed)
is string
but \Users_Privileges_Model::hasModulePermission()
takes int
defined at /code/modules/Users/models/Privileges.php:101
Open
if ($userPrivilegesModel->hasModuleActionPermission($recordModel->getModuleName(), 'ServiceContractsSla') && $userPrivilegesModel->hasModulePermission($moduleName)) {
- Exclude checks
Class extends undeclared class \Vtiger_DetailView_Model
Open
class ServiceContracts_DetailView_Model extends Vtiger_DetailView_Model
- Exclude checks
Reference to undeclared class \Vtiger_DetailView_Model
Open
$relatedLinks = parent::getDetailViewRelatedLinks();
- Exclude checks
Each class must be in a namespace of at least one level (a top-level vendor name) Open
class ServiceContracts_DetailView_Model extends Vtiger_DetailView_Model
- Exclude checks
The class ServiceContracts_DetailView_Model is not named in CamelCase. Open
class ServiceContracts_DetailView_Model extends Vtiger_DetailView_Model
{
/** {@inheritdoc} */
public function getDetailViewRelatedLinks()
{
- Read upRead up
- Exclude checks
CamelCaseClassName
Since: 0.2
It is considered best practice to use the CamelCase notation to name classes.
Example
class class_name {
}
Source
Spaces must be used to indent lines; tabs are not allowed Open
];
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
'linkicon' => 'fas fa-door-open',
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
return $relatedLinks;
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
/** {@inheritdoc} */
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$recordModel = $this->getRecord();
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
}
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$userPrivilegesModel = Users_Privileges_Model::getCurrentUserPrivilegesModel();
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
'linklabel' => \App\Language::translate('LBL_SLA_POLICY', $this->getModuleName()) . ' - ' . \App\Language::translate($moduleName, $moduleName),
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
foreach (App\Utils\ServiceContracts::getModules() as $moduleName) {
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
if ($userPrivilegesModel->hasModuleActionPermission($recordModel->getModuleName(), 'ServiceContractsSla') && $userPrivilegesModel->hasModulePermission($moduleName)) {
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
'linktype' => 'DETAILVIEWTAB',
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
'linkurl' => $recordModel->getDetailViewUrl() . '&mode=showSlaPolicyView&target=' . $moduleName,
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
}
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$relatedLinks = parent::getDetailViewRelatedLinks();
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
$relatedLinks[] = [
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
{
- Exclude checks
Line exceeds 120 characters; contains 163 characters Open
'linklabel' => \App\Language::translate('LBL_SLA_POLICY', $this->getModuleName()) . ' - ' . \App\Language::translate($moduleName, $moduleName),
- Exclude checks
Line exceeds 120 characters; contains 178 characters Open
if ($userPrivilegesModel->hasModuleActionPermission($recordModel->getModuleName(), 'ServiceContractsSla') && $userPrivilegesModel->hasModulePermission($moduleName)) {
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
public function getDetailViewRelatedLinks()
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
}
- Exclude checks
Class name "ServiceContracts_DetailView_Model" is not in camel caps format Open
class ServiceContracts_DetailView_Model extends Vtiger_DetailView_Model
- Exclude checks