2013-11-15 09:34:00 -04:00
|
|
|
<?php
|
2021-01-04 09:16:17 -04:00
|
|
|
|
2017-12-04 13:25:35 +00:00
|
|
|
$headPublisher = headPublisher::getSingleton();
|
2013-11-15 09:34:00 -04:00
|
|
|
$headPublisher->addContent("users" . PATH_SEP . "userMain"); //Adding a html file .html
|
|
|
|
|
$headPublisher->addExtJsScript("users" . PATH_SEP . "userMain", true); //Adding a javascript file .js
|
2021-01-04 09:16:17 -04:00
|
|
|
$headPublisher->assign("CREATE_CLIENT", (isset($_GET["create_app"])) ? 1 : 0);
|
|
|
|
|
$headPublisher->assign("userInterface", (isset($_REQUEST["userInterface"]) ? $_REQUEST["userInterface"] : ""));
|
2013-11-15 09:34:00 -04:00
|
|
|
G::RenderPage("publish", "extJs");
|