Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. function tctaextend_civicrm_buildForm($formName, &$form) {
  2. if($formName=='CRM_Contribute_Form_Contribution_Main'){
  3. if($form->_id==2 ){
  4. CRM_Core_Resources::singleton()->addScriptFile('com.skvare.testextend', 'my_alter_contribform.js');
  5. }
  6. }
  7. }
  8.  
  9. function myextension_civicrm_buildForm($formName, &$form) {
  10. if($formName=='CRM_Event_Form_Registration_Register'){
  11. if($form->_id==1 ){
  12. CRM_Core_Resources::singleton()->addScriptFile('com.example.myextension', 'my_alter_eventform.js');
  13. }
  14. }
  15. }
  16.  
  17. if($form->_id==1 ){
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement