blob: d6079577aa712b43bf435682ae44df6fc884e8e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?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
}
}
|