32 lines
523 B
PHP
32 lines
523 B
PHP
<?php
|
|
|
|
namespace App\Forms;
|
|
|
|
use App\Forms\CommonForm;
|
|
|
|
class TrafficForm extends CommonForm
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function getFormFields(string $action, ?array $fields = null): array
|
|
{
|
|
$fields = $fields ?? [
|
|
'client',
|
|
'switch',
|
|
'index',
|
|
];
|
|
if (in_array($action, ['modify_form', 'modify'])) {
|
|
$fields = $fields ?? [
|
|
'client',
|
|
'switch',
|
|
'index',
|
|
'status',
|
|
];
|
|
}
|
|
return $fields;
|
|
}
|
|
}
|