本文整理匯總了PHP中Alias::setModuleType方法的典型用法代碼示例。如果您正苦於以下問題:PHP Alias::setModuleType方法的具體用法?PHP Alias::setModuleType怎麽用?PHP Alias::setModuleType使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Alias
的用法示例。
在下文中一共展示了Alias::setModuleType方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Alias
$tpl_edit->set('modtypes', $modules);
$tpl_edit->set('floorplan', $floorPlan);
$tpl_edit->set('modlist', $modlist);
$tpl_edit->set('selectedgroup', $groups->getAGroup($settings[$_GET['line']]->getAliasMap()->getGroup()));
$tpl_edit->set('groups', $groupings);
$tpl_edit->set('config', $config);
$tpl_body->set('form', $tpl_edit);
break;
case "add":
if (preg_match($chars, $_POST["label"])) {
gen_error(null, $lang['error_special_chars']);
} else {
$anAlias = new Alias();
$anAlias->setLabel(label_parse($_POST["label"], true));
$anAlias->parseHouseUnitCodes($_POST["code"]);
$anAlias->setModuleType($_POST["module"]);
$anAlias->setModuleOptions($_POST["moduleopts"]);
$anAlias->getAliasMap()->setType($_POST["type"]);
$anAlias->getAliasMap()->setAliasLabel(label_parse($_POST["label"], true));
if (strlen(trim($_POST["newloc"])) > 0) {
$anAlias->getAliasMap()->setFloorPlanLabel(label_parse($_POST["newloc"], true));
} else {
$anAlias->getAliasMap()->setFloorPlanLabel(label_parse($_POST["loc"], true));
}
$anAlias->getAliasMap()->setHiddenFromHome("visible");
$anAlias->getAliasMap()->setGroup($_POST["group"]);
$anAlias->getAliasMap()->setAccessLevel(intval($_POST["secaccesslevel"]));
$anAlias->getAliasMap()->rebuildElementLine();
$anAlias->rebuildElementLine();
$heyuconf->addElement($anAlias);
$mustSave = true;