Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. function createEducation( $start_year, $end_year, $college, $degree, $field_of_study = null, $profile = null )
  2. {
  3. $education = R::dispense( 'education' );
  4. addDropDownCustom( $education, 'degree', $degree );
  5. addDropDownCustom( $education, 'college', $college );
  6. addString( $start_year, $education, 'start_year' );
  7. addString( $end_year, $education, 'end_year' );
  8. addString( $field_of_study, $education, 'field_of_study' );
  9. if( $profile != null )
  10. {
  11. $education->profile = $profile;
  12. }
  13. R::store( $education );
  14. return $education;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement