Refactor and enhance database and form operations

Significant changes have been implemented in the database operations, particularly in update and insert functions, ensuring more stable and efficient handling of queries. Form capabilities have been enhanced by adding new attributes for processing decimal steps, further improving data input methods. This update also includes considerable refactoring and security enhancements in the PDO class.
This commit is contained in:
stephan.kasdorf
2024-03-27 12:24:25 +01:00
parent a793f79798
commit e92091f235
27 changed files with 160 additions and 111 deletions

View File

@@ -1,16 +0,0 @@
<?php
namespace Nibiru\Module\Users\Interfaces;
/**
* @desc this file is for the autoloader to function properly,
* you might as well use it as the primary user interface for your
* application
* Created by PhpStorm.
* User: kasdorf
* Date: 28.08.18
* Time: 11:21
*/
interface Users
{
}

View File

@@ -1,16 +0,0 @@
<?php
namespace Nibiru\Module\Users\Plugins;
/**
* Class Users
* @package Nibiru\Module\Users\Plugins
* @author: Stephan Kasdorf
* @date: 04.09.20
* @copyright: 2020 Nibiru Framework, you may copy the code,
* but have to inform the author about where it
* is used. So happy copying.
* @licence: BSD 4-Old License
*/
class Users
{
}

View File

@@ -1,3 +0,0 @@
[USERS]
name = "users"
path = "/application/module/users"

View File

@@ -1,16 +0,0 @@
<?php
namespace Nibiru\Module\Users\Traits;
/**
* @desc this file is for the autoloader to function properly,
* you might as well use it as the primary user trait for your
* application
* Created by PhpStorm.
* User: kasdorf
* Date: 28.08.18
* Time: 11:24
*/
trait Users
{
}

View File

@@ -1,18 +0,0 @@
<?php
namespace Nibiru\Module\Users;
/**
* @desc this file is for the autoloader to function properly,
* you might as well use it as the primary user class for your
* application, the interface an the trait are currently implemented
* Created by PhpStorm.
* User: kasdorf
* Date: 28.08.18
* Time: 11:22
*/
use Nibiru\Module\Users\Interfaces;
use Nibiru\Module\Users\Traits;
class Users implements Interfaces\Users
{
use Traits\Users;
}