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:
30
core/i/IPageination.php
Executable file
30
core/i/IPageination.php
Executable file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
namespace Nibiru;
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: mithril
|
||||
* Date: 15.09.18
|
||||
* Time: 03:17
|
||||
*/
|
||||
|
||||
interface IPageination
|
||||
{
|
||||
const CURRENT_PAGE = 0;
|
||||
const PAGE_ITERATION = 1;
|
||||
|
||||
/**
|
||||
* @desc All the following methods have to be implemented into the class
|
||||
* constructor of the class that extends pagination
|
||||
*/
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public static function setContentTable();
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public static function loadPageNumber();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user