Files
luos/gulliver/bin/tasks/templates/pluginApplication.php.tpl
2011-12-07 09:34:43 -04:00

33 lines
920 B
Smarty

<?php
/**
* welcome.php for plugin {className}
*
*
*/
try {
/* Render page */
$oHeadPublisher = &headPublisher::getSingleton();
$G_MAIN_MENU = "processmaker";
$G_ID_MENU_SELECTED = "{menuId}_MNU_01";
//$G_SUB_MENU = "setup";
//$G_ID_SUB_MENU_SELECTED = "{menuId}_02";
$config = array();
$config["pageSize"] = 15;
$config["message"] = "Hello world!";
$oHeadPublisher->addContent("{className}/{className}Application"); //Adding a html file .html
$oHeadPublisher->addExtJsScript("{className}/{className}Application", false); //Adding a javascript file .js
$oHeadPublisher->assign("CONFIG", $config);
G::RenderPage("publish", "extJs");
} catch (Exception $e) {
$G_PUBLISH = new Publisher;
$aMessage["MESSAGE"] = $e->getMessage();
$G_PUBLISH->AddContent("xmlform", "xmlform", "{className}/messageShow", "", $aMessage);
G::RenderPage("publish", "blank");
}
?>