Simple PHP framework with Dependency Injection pattern. Preview of functional framework can be seen on web site poznamkovyblog.
At the beginning are called static classes about which is supposed that will be the only one in whole application. These static classes are
Class is responded for load and parse config ini file. It contains instance of parse class that decompose config file into array. Config variable can be called by two getter methods
get($key)
- which return string stored under called key and throw exception if no existsgetArray($key)
- return array stored under called key and throw exception if no exists
This static class parses url requests and stores it into variables that can be used for next purpose. There are defined public methods:
get($key = false, $exception = false)
- get parameter (module, controller, view, param1, param2, process, operation), names of parameters (module, ...) are defined in config.php.inigetSerNameUri($http = false)
- url in formwww.link.com/show/ubuntu
,getfullUri($http = false)
- url in formwww.link.com
getReqUri()
- url in formshow/ubuntu/?call=script
/***
* @desc Call actual date
*/
\Vendor\Date\DateTime::getActualTime()
/***
* @desc Call future time
*/
\Vendor\Date\DateTime::getFutureTime($date = array())
/***
* @desc Time in seconds
*/
\Vendor\Date\DateTime::getInSec($date = array())
/***
* @desc Compare two dates (actual and requested)
*/
\Vendor\Date\DateTime::difference($date)
Simplify static cookie class is responsible for manipulation with COOKIES. It contains two methods needed for store and destory COOKIE
set($name, $value, $expire, $path = "/", $domain = false)
- set COOKIE under specific nameget($key = false, $exception = false)
- destroy COOKIE with specific name, throw to exception if no name COOKIE exists
Session class is used for manipulation with SESSION variables. It contains two public static methods
set($key = false, $value = false, $regenerate = false)
get($key = false, $exception = false)
Html class creates html tag with recognizing self closing tags. For example tag <div> with attribute id='id-div' and with content 'This is content!' should be created with following piece of code:
// new instance of simple html tag creator
$html = new \Vendor\Html\Html();
// div element
$html->tag('div')
->attributes(array(
'id'=>'id-div'))
->content('This is content!')
->create();
<div id='id-div>This is content!</div>
Another example creates self closing html tag:
// new instance of simple html tag creator
$html = new \Vendor\Html\Html();
// input element
$html->tag('input')
->attributes(array(
'type'=>'text'))
->create();
<input type='text' \>
Simple html form creator allows to create custimised html form element. For example create form with two inputs (text, password) and submit should by done by following piece of code:
// create form
$form
->attrs(array(
'action'=>Route::getfullUri(true)
,'method'=>'post'))
->content(array(
'input'=>array(array(
'type'=>'text'
,'name'=>'Name'
,'label'=>'Name'
,'placeholder'=>'Name'
,'id'=>'id-name'
,'required'=>'true')),
'input-password'=>array(array(
'type'=>'password'
,'name'=>'Passname'
,'label'=>'Passname'
,'placeholder'=>'Passname'
,'id'=>'id-passname'
,'required'=>'true')),
'input-submit'=>array(array(
'type'=>'submit'
,'name'=>'Login'
,'value'=>'Login'
,'id'=>'id-submit'))
)
);
Html code of form can be get by calling public method:
// get created html code
$form->getCode();
which generate following html code:
<form action='http://poznamkovyblog.cekuj.net/' method='post'>
<table id='table'>
<tr>
<td>Name</td>
<td><input type='text' name='Username' label='Name' id='id-username' required /></td>
</tr>
<tr>
<td>Pasword</td>
<td><input type='password' name='Passname' label='Pasword' id='id-passname' required /></td>
</tr>
<tr>
<td></td>
<td><input type='submit' name='Login' value='login' id='id-submit' /></td>
</tr>
</table>
</form>