Guest User

Untitled

a guest
Apr 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <?php
  2.  
  3. class Applicant extends DataObject {
  4.  
  5. static $db = array(
  6. 'FirstName' => 'Text',
  7. 'LastName' => 'Text',
  8. 'DateOfBirth' => 'Date'
  9. );
  10.  
  11. static $has_one = array(
  12. 'MyApplicantHolder' => 'ApplicantsHolder'
  13. );
  14.  
  15. function getCMSFields() {
  16. $fields = new FieldSet();
  17. $fields->push( new TextField( 'FirstName', 'First Name' ) );
  18. $fields->push( new TextField( 'LastName', 'Last name' ) );
  19. $fields->push( new CalendarDateField( 'DateofBirth', 'Date of Birth' ) );
  20. return $fields;
  21. }
  22. }
  23.  
  24.  
  25. ?>
Add Comment
Please, Sign In to add comment