📄 cmstaskcontentdialogpriority.java
字号:
// unexpected exception - ignoring
}
xmlTemplateDocument.setData("task", Encoder.escape(taskName,
cms.getRequestContext().getEncoding()));
xmlTemplateDocument.setData("description", Encoder.escape(taskDescription,
cms.getRequestContext().getEncoding()));
xmlTemplateDocument.setData("due", due);
xmlTemplateDocument.setData(C_TASKPARA_ACCEPTATION, paraAcceptation);
xmlTemplateDocument.setData(C_TASKPARA_ALL, paraAll);
xmlTemplateDocument.setData(C_TASKPARA_COMPLETION, paraCompletion);
xmlTemplateDocument.setData(C_TASKPARA_DELIVERY, paraDelivery);
xmlTemplateDocument.setData("groupindex", groupIdxString);
xmlTemplateDocument.setData("userindex", userIdxString);
// Now load the template file and start the processing
return startProcessing(cms, xmlTemplateDocument, elementName, parameters, templateSelector);
}
/**
* Gets all priorities, that are defined for a project.
* <P>
* The given vectors <code>names</code> and <code>values</code> will
* be filled with the appropriate information to be used for building
* a select box.
*
* @param cms CmsObject Object for accessing system resources.
* @param names Vector to be filled with the appropriate values in this method.
* @param values Vector to be filled with the appropriate values in this method.
* @param parameters Hashtable containing all user parameters <em>(not used here)</em>.
* @return Index representing the current value in the vectors.
* @throws CmsException
*/
public Integer getPriority(CmsObject cms, CmsXmlLanguageFile lang, Vector names, Vector values,
Hashtable parameters) throws CmsException {
// get session for current taskid
I_CmsSession session = cms.getRequestContext().getSession(true);
// read current task for priority-level
CmsTask task = cms.readTask(((Integer)session.getValue("taskid")).intValue());
// add names for priority
names.addElement(lang.getLanguageValue("task.label.prioritylevel.high"));
names.addElement(lang.getLanguageValue("task.label.prioritylevel.middle"));
names.addElement(lang.getLanguageValue("task.label.prioritylevel.low"));
// add values for priority
values.addElement(C_TASK_PRIORITY_HIGH + "");
values.addElement(C_TASK_PRIORITY_NORMAL + "");
values.addElement(C_TASK_PRIORITY_LOW + "");
// return the current priority
return new Integer(task.getPriority() - 1);
}
/**
* Gets all groups, that may work for a project.
* <P>
* The given vectors <code>names</code> and <code>values</code> will
* be filled with the appropriate information to be used for building
* a select box.
*
* @param cms CmsObject Object for accessing system resources.
* @param names Vector to be filled with the appropriate values in this method.
* @param values Vector to be filled with the appropriate values in this method.
* @param parameters Hashtable containing all user parameters <em>(not used here)</em>.
* @return Index representing the current value in the vectors.
* @throws CmsException
*/
public Integer getTeams(CmsObject cms, CmsXmlLanguageFile lang, Vector names, Vector values,
Hashtable parameters) throws CmsException {
// get all groups
Vector groups = cms.getGroups();
CmsGroup group;
names.addElement(lang.getLanguageValue("task.label.emptyrole"));
values.addElement(lang.getLanguageValue("task.label.emptyrole"));
// fill the names and values
for(int z = 0;z < groups.size();z++) {
group = (CmsGroup)groups.elementAt(z);
// is the group a role?
if(group.getRole()) {
String name = group.getName();
names.addElement(name);
values.addElement(name);
}
}
names.addElement(lang.getLanguageValue("task.label.allroles"));
values.addElement(C_ALL_ROLES);
// no current group, set index to -1
return new Integer(-1);
}
/**
* @param cms CmsObject Object for accessing system resources.
* @param tagcontent Unused in this special case of a user method. Can be ignored.
* @param doc Reference to the A_CmsXmlContent object of the initiating XLM document <em>(not used here)</em>.
* @param userObj Hashtable with parameters <em>(not used here)</em>.
* @return String with the pics URL.
* @throws CmsException
*/
public Object getUsers(CmsObject cms, String tagcontent, A_CmsXmlContent doc,
Object userObj) throws CmsException {
StringBuffer retValue = new StringBuffer();
retValue.append(C_ROLE);
// get the language for choose-user
String chooseUser = (new CmsXmlLanguageFile(cms)).getLanguageValue("task.label.emptyuser");
// get all groups
Vector groups = cms.getGroups();
for(int n = 0;n < groups.size();n++) {
if(((CmsGroup)groups.elementAt(n)).getRole()) {
String groupname = ((CmsGroup)groups.elementAt(n)).getName();
// get users of this group
Vector users = cms.getUsersOfGroup(groupname);
// create entry for role
retValue.append(C_ROLE_1 + groupname + C_ROLE_2);
retValue.append(C_USER_1 + groupname + C_USER_2 + 0 + C_USER_3 + chooseUser + C_USER_4 + C_USER_5);
for(int m = 0;m < users.size();m++) {
CmsUser user = (CmsUser)users.elementAt(m);
// create entry for user
retValue.append(C_USER_1 + groupname + C_USER_2 + (m + 1) + C_USER_3
+ user.getName() + C_USER_4 + user.getName() + C_USER_5);
}
}
}
// generate output for all users
retValue.append(C_ROLE_1 + C_ALL_ROLES + C_ROLE_2);
retValue.append(C_USER_1 + C_ALL_ROLES + C_USER_2 + 0 + C_USER_3 + chooseUser + C_USER_4 + C_USER_5);
Vector users = cms.getUsers();
for(int m = 0;m < users.size();m++) {
CmsUser user = (CmsUser)users.elementAt(m);
// create entry for user
retValue.append(C_USER_1 + C_ALL_ROLES + C_USER_2 + (m + 1) + C_USER_3
+ user.getName() + C_USER_4 + user.getName() + C_USER_5);
}
return retValue.toString();
}
/**
* This method initializes all constants, that are needed for genrating this pages.
*
* @param document The xml-document to get the constant content from.
*/
private void initConstants(CmsXmlWpTemplateFile document) {
try {
// exists the needed datablocks?
if(document.hasData("role")) {
// YES: initialize the constants
C_ROLE = document.getDataValue("role");
C_ROLE_1 = document.getDataValue("role_1");
C_ROLE_2 = document.getDataValue("role_2");
C_USER_1 = document.getDataValue("user_1");
C_USER_2 = document.getDataValue("user_2");
C_USER_3 = document.getDataValue("user_3");
C_USER_4 = document.getDataValue("user_4");
C_USER_5 = document.getDataValue("user_5");
}
}
catch(CmsException exc) {
if(I_CmsLogChannels.C_PREPROCESSOR_IS_LOGGING && A_OpenCms.isLogging() ) {
A_OpenCms.log(C_MODULE_CRITICAL, "Couldn't get xml datablocks for CmsTaskNew");
}
}
}
/**
* Indicates if the results of this class are cacheable.
*
* @param cms CmsObject Object for accessing system resources
* @param templateFile Filename of the template file
* @param elementName Element name of this template in our parent template.
* @param parameters Hashtable with all template class parameters.
* @param templateSelector template section that should be processed.
* @return <EM>true</EM> if cacheable, <EM>false</EM> otherwise.
*/
public boolean isCacheable(CmsObject cms, String templateFile, String elementName,
Hashtable parameters, String templateSelector) {
return false;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -