Files
luos/workflow/engine/methods/oauth2/clientSetup.php

12 lines
458 B
PHP
Raw Normal View History

<?php
$config = array();
$config["pageSize"] = 20;
2017-12-04 13:25:35 +00:00
$headPublisher = headPublisher::getSingleton();
//$headPublisher->addContent("oauth2" . PATH_SEP . "clientSetup"); //Adding a HTML file .html
$headPublisher->addExtJsScript("oauth2" . PATH_SEP . "clientSetup", false); //Adding a JavaScript file .js
$headPublisher->assign("CONFIG", $config);
$headPublisher->assign("CREATE_CLIENT", (isset($_GET["create_app"]))? 1 : 0);
G::RenderPage("publish", "extJs");