ihris

Sovello

Feb 8th, 2011
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.54 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <!DOCTYPE I2CEConfiguration SYSTEM "I2CE_Configuration.dtd">
  3. <I2CEConfiguration name="cssc-FieldHeaders">
  4.   <metadata>
  5.     <displayName>PMORALG Field Headers</displayName>
  6.     <category>Site Component</category>
  7.     <description>The PMORALG Field Headers</description>
  8.     <creator>Sovello Hildebrand</creator>
  9.     <email>mathayo@gmail.com</email>
  10.     <version>4.0.9.4</version>
  11.     <path name="configs">
  12.       <value>./configs</value>
  13.     </path>
  14.     <requirement name="Person"><!--include the module you want to affect-->
  15.       <atLeast version="4.0" />
  16.     </requirement>
  17.     <requirement name="ihris-manage-Job">
  18.       <atLeast version="4.0" />
  19.     </requirement>
  20.     <priority>350</priority><!--priority greater than ihris-common but less that site. so this gets loaded first -->
  21.   </metadata>
  22.   <configurationGroup name="cssc-FieldHeaders" path="/I2CE">
  23.     <status>overwrite:true</status>
  24.     <configurationGroup name="forms" path="/modules/forms">
  25.       <configurationGroup name="forms">
  26.                 <!-- this is used to rename all display names for the forms. for example here we rename the name for the Job form to be Designation-->
  27.         <configurationGroup name="job">
  28.           <version>4.0.10</version>
  29.           <displayName>Designation</displayName>
  30.           <description>The Designation Form</description>
  31.           <configuration name="display" values="single" locale="en_US">
  32.             <displayName>Display name</displayName>
  33.             <description>The display name for this form</description>
  34.             <value>Designation</value>
  35.           </configuration>
  36.         </configurationGroup>
  37.       </configurationGroup>
  38.       <!-- end of /modules/forms/forms -->
  39.       <configurationGroup name="formClasses">
  40.                 <!-- and under this tag is where we rename all the field headers like the middle name you wanted to edit-->
  41.                 <configurationGroup name="iHRIS_Person">
  42.                         <configuration name="headers" type="delimited" locale="en_US">
  43.                             <displayName>The headers for this field.</displayName>
  44.                             <!--<version>3.2.1</version> this is the version in the original definition of other name-->
  45.                             <version>3.2.2</version> <!--remember to change the version like here -->
  46.                             <!--<value>default:Other Names</value>-->
  47.                             <value>default:Middle Name</value><!-- it will now be renamed to Middle Name -->
  48.                         </configuration>
  49.                     </configurationGroup>
  50.       </configurationGroup>
  51.       <!-- end of /modules/forms/formClasses -->
  52.     </configurationGroup>
  53.     </configurationGroup>
  54. </I2CEConfiguration>
Add Comment
Please, Sign In to add comment