modules/Settings/OSSMailView/views/index.php
Avoid using static access to class 'Vtiger_Record_Model' in method 'process'. Open
Open
$OSSMailScanner_Record_Model = Vtiger_Record_Model::getCleanInstance('OSSMailScanner');
- 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 \Vtiger_Viewer::assign
Open
Open
$viewer->assign('WIDGET_CFG', $WidgetCfg);
- Exclude checks
Call to undeclared method \Vtiger_Viewer::assign
Open
Open
$viewer->assign('MODULENAME', $moduleName);
- Exclude checks
Call to undeclared method \Vtiger_Record_Model::getConfig
Open
Open
$WidgetCfg = $OSSMailScanner_Record_Model->getConfig(false);
- Exclude checks
Avoid excessively long variable names like $OSSMailScanner_Record_Model. Keep variable name length under 20. Open
Open
$OSSMailScanner_Record_Model = Vtiger_Record_Model::getCleanInstance('OSSMailScanner');
- Read upRead up
- Exclude checks
LongVariable
Since: 0.2
Detects when a field, formal or local variable is declared with a long name.
Example
class Something {
protected $reallyLongIntName = -3; // VIOLATION - Field
public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
$otherReallyLongName = -5; // VIOLATION - Local
for ($interestingIntIndex = 0; // VIOLATION - For
$interestingIntIndex < 10;
$interestingIntIndex++ ) {
}
}
}
Source https://phpmd.org/rules/naming.html#longvariable
Each class must be in a namespace of at least one level (a top-level vendor name) Open
Open
class Settings_OSSMailView_Index_View extends Settings_Vtiger_Index_View
- Exclude checks
The class Settings_OSSMailView_Index_View is not named in CamelCase. Open
Open
class Settings_OSSMailView_Index_View extends Settings_Vtiger_Index_View
{
public function process(App\Request $request)
{
$moduleName = $request->getModule();
- 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
Open
$moduleName = $request->getModule();
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$OSSMailScanner_Record_Model = Vtiger_Record_Model::getCleanInstance('OSSMailScanner');
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
{
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$viewer->assign('MODULENAME', $moduleName);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
echo $viewer->view('index.tpl', $moduleName, true);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
public function process(App\Request $request)
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$WidgetCfg = $OSSMailScanner_Record_Model->getConfig(false);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$viewer = $this->getViewer($request);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
$viewer->assign('WIDGET_CFG', $WidgetCfg);
- Exclude checks
Spaces must be used to indent lines; tabs are not allowed Open
Open
}
- Exclude checks
Class name "Settings_OSSMailView_Index_View" is not in camel caps format Open
Open
class Settings_OSSMailView_Index_View extends Settings_Vtiger_Index_View
- Exclude checks
The variable $OSSMailScanner_Record_Model is not named in camelCase. Open
Open
public function process(App\Request $request)
{
$moduleName = $request->getModule();
$OSSMailScanner_Record_Model = Vtiger_Record_Model::getCleanInstance('OSSMailScanner');
- 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 $WidgetCfg is not named in camelCase. Open
Open
public function process(App\Request $request)
{
$moduleName = $request->getModule();
$OSSMailScanner_Record_Model = Vtiger_Record_Model::getCleanInstance('OSSMailScanner');
- 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 $WidgetCfg is not named in camelCase. Open
Open
public function process(App\Request $request)
{
$moduleName = $request->getModule();
$OSSMailScanner_Record_Model = Vtiger_Record_Model::getCleanInstance('OSSMailScanner');
- 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 $OSSMailScanner_Record_Model is not named in camelCase. Open
Open
public function process(App\Request $request)
{
$moduleName = $request->getModule();
$OSSMailScanner_Record_Model = Vtiger_Record_Model::getCleanInstance('OSSMailScanner');
- 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();
}
}