Refactor code structure for improved readability and maintainability

This commit is contained in:
2025-04-10 19:23:03 +07:00
parent e4705579f0
commit 0700a715e4
5693 changed files with 857475 additions and 0 deletions

View File

@ -0,0 +1,28 @@
<?php
class USER_AUTH1 extends USER
{
public function user_auth1_javainit()
{
}
public function fn_auth1_init()
{
if(isset($_REQUEST['task'])){$task=trim(strtolower($_REQUEST['task']));}
if(isset($_POST['task'])){$task=trim(strtolower($_POST['task']));}
switch($task)
{
case "saveauth1":
break;
default:
$this->fn_default_auth1();
break;
}
}
public function fn_default_auth1()
{
}
}
?>