ProcessMaker-MA "Implementacion de la interfaz para los Applications"

- Se ha implementado la interfaz para los Applications
This commit is contained in:
Victor Saisa Lopez
2013-11-15 09:34:00 -04:00
parent 4d9a7d6461
commit 961982903c
14 changed files with 1774 additions and 12 deletions

View File

@@ -0,0 +1,12 @@
<?php
$config = array();
$config["pageSize"] = 20;
$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");