Updates on Oauth register method and New designer open action on process list
This commit is contained in:
32
workflow/engine/controllers/designer.php
Normal file
32
workflow/engine/controllers/designer.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Designer Controller
|
||||
*
|
||||
* @inherits Controller
|
||||
* @access public
|
||||
*/
|
||||
|
||||
class Designer extends Controller
|
||||
{
|
||||
public function __construct ()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Index Action
|
||||
*
|
||||
* @param string $httpData (opional)
|
||||
*/
|
||||
public function index($httpData)
|
||||
{
|
||||
$proUid = isset($httpData->pro_uid) ? $httpData->pro_uid : '';
|
||||
|
||||
$this->setVar('pro_uid', $proUid);
|
||||
$this->setView('designer/index');
|
||||
|
||||
$this->render();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user