28 lines
371 B
PHP
Executable file
28 lines
371 B
PHP
Executable file
<?php
|
|
|
|
class identity implements Core{
|
|
|
|
protected $app;
|
|
protected $libClass;
|
|
protected $action;
|
|
|
|
public function __construct($app){
|
|
|
|
$this->app = $app;
|
|
if($app->getOptions("Identity"))
|
|
$this->libClass = $app->getLibClass("Identity");
|
|
|
|
}
|
|
|
|
public function action($action){
|
|
|
|
//To be Complete
|
|
|
|
}
|
|
|
|
public function genToken(){
|
|
|
|
//To be Complete
|
|
|
|
}
|
|
}
|