istic-openstack/server/core/Identity.php

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
}
}