cfmgrv4 init...2

This commit is contained in:
최준흠 2024-10-14 14:17:43 +09:00
parent f0184dbe56
commit 077960ff8d

View File

@ -39,5 +39,22 @@ class UserSNSHelper extends CommonHelper
}
return $form;
} //
public function getListButton(string $action, array $viewDatas, array $extras = []): string
{
switch ($action) {
case 'create':
$action = "";
break;
case 'modify':
$action = $viewDatas['cnt'];
break;
case 'delete':
$action = "";
break;
case 'batchjob':
$action = "";
break;
}
return $action;
}
}