本文整理匯總了PHP中SugarFolder::getFoldersForSettings方法的典型用法代碼示例。如果您正苦於以下問題:PHP SugarFolder::getFoldersForSettings方法的具體用法?PHP SugarFolder::getFoldersForSettings怎麽用?PHP SugarFolder::getFoldersForSettings使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SugarFolder
的用法示例。
在下文中一共展示了SugarFolder::getFoldersForSettings方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: SugarFolder
} else {
$xtpl->assign('DISPLAY', "display:none");
}
$leaveMessagesOnMailServerStyle = "display:none";
if ($focus->is_personal) {
$xtpl->assign('DISABLE_GROUP', 'DISABLED');
$xtpl->assign('EDIT_GROUP_FOLDER_STYLE', "display:none");
$xtpl->assign('CREATE_GROUP_FOLDER_STYLE', "display:none");
$xtpl->assign('MAILBOX_TYPE_STYLE', "display:none");
$xtpl->assign('AUTO_IMPORT_STYLE', "display:none");
} else {
$folder = new SugarFolder();
$xtpl->assign('CREATE_GROUP_FOLDER_STYLE', "display:''");
$xtpl->assign('MAILBOX_TYPE_STYLE', "display:''");
$xtpl->assign('AUTO_IMPORT_STYLE', "display:''");
$ret = $folder->getFoldersForSettings($current_user);
//For existing records, do not allow
$is_auto_import_disabled = "";
if (!empty($focus->groupfolder_id)) {
$is_auto_import = "checked";
$xtpl->assign('EDIT_GROUP_FOLDER_STYLE', "visibility:inline");
$leaveMessagesOnMailServerStyle = "display:''";
$allow_outbound = isset($storedOptions['allow_outbound_group_usage']) && $storedOptions['allow_outbound_group_usage'] == 1 ? 'CHECKED' : '';
} else {
$xtpl->assign('EDIT_GROUP_FOLDER_STYLE', "visibility:hidden");
}
$xtpl->assign('ALLOW_OUTBOUND_USAGE', $allow_outbound);
$xtpl->assign('IS_AUTO_IMPORT', $is_auto_import);
if ($focus->isMailBoxTypeCreateCase()) {
$createCaseRowStyle = "display:''";
}