VERSION UPDATE: beta 0.6.0 see the readme.md document
This commit is contained in:
@@ -15,6 +15,8 @@ interface IMysql
|
||||
const PLACE_NO_QUERY = "NO QUERY";
|
||||
const NO_ID = false;
|
||||
const PLACE_TABLE_NAME = "NO TABLENAME";
|
||||
const PLACE_QUERY_LIMIT = "NO LIMIT";
|
||||
const PLACE_SORT_ORDER = "NO ORDER";
|
||||
const PLACE_DSN = "NO CONNECTION STRING";
|
||||
const PLACE_USERNAME = "username";
|
||||
const PLACE_PASSWORD = "password";
|
||||
|
||||
30
core/i/pageination.php
Executable file
30
core/i/pageination.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();
|
||||
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: skasdorf
|
||||
* Date: 16.06.17
|
||||
* Time: 10:44
|
||||
*/
|
||||
|
||||
namespace Nibiru;
|
||||
|
||||
|
||||
interface ISoap
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user