2016-01-30 11:41:45 +01:00
|
|
|
<?php
|
|
|
|
|
2016-02-05 00:07:31 +01:00
|
|
|
class identity implements Core{
|
2016-01-30 11:41:45 +01:00
|
|
|
|
2016-02-05 00:07:31 +01:00
|
|
|
protected $app;
|
|
|
|
protected $libClass;
|
|
|
|
protected $action;
|
2016-01-30 11:41:45 +01:00
|
|
|
|
2016-02-05 00:07:31 +01:00
|
|
|
public function __construct($app){
|
2016-01-30 11:41:45 +01:00
|
|
|
|
2016-02-05 00:07:31 +01:00
|
|
|
$this->app = $app;
|
|
|
|
if($app->getOptions("Identity"))
|
|
|
|
$this->libClass = $app->getLibClass("Identity");
|
2016-01-30 11:41:45 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-02-05 00:07:31 +01:00
|
|
|
public function action($action){
|
|
|
|
|
|
|
|
//To be Complete
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-01-30 11:41:45 +01:00
|
|
|
public function genToken(){
|
2016-02-05 00:07:31 +01:00
|
|
|
|
|
|
|
//To be Complete
|
|
|
|
|
|
|
|
}
|
2016-01-30 11:41:45 +01:00
|
|
|
}
|