diff options
author | Saketh1499 | 2022-04-22 16:51:47 +0530 |
---|---|---|
committer | GitHub | 2022-04-22 16:51:47 +0530 |
commit | feb7cdf3a0c8fc0349cc2a41b9ee1b25768d51fa (patch) | |
tree | 66c6d23a5c7b9e63ccb0f8f1f83f35238782d452 | |
parent | 4775a5fcb5be9fb0bf9696bcbad3d5cd06047aa8 (diff) | |
parent | b7296c699d5225ee0c4ce6f237f177058edbeb9c (diff) | |
download | r_textbook_companion-feb7cdf3a0c8fc0349cc2a41b9ee1b25768d51fa.tar.gz r_textbook_companion-feb7cdf3a0c8fc0349cc2a41b9ee1b25768d51fa.tar.bz2 r_textbook_companion-feb7cdf3a0c8fc0349cc2a41b9ee1b25768d51fa.zip |
Merge pull request #54 from Saketh1499/updation
Adding idea sample source file for reference
-rwxr-xr-x | textbook_companion.module | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/textbook_companion.module b/textbook_companion.module index 79da0e2..a2fda42 100755 --- a/textbook_companion.module +++ b/textbook_companion.module @@ -1529,6 +1529,11 @@ function book_proposal_form($form, &$form_state) '#default_value' => 0, '#required' => TRUE ); + $form['abstract_sample_file'] = array( + '#type' => 'item', + '#title' => t('<h5>Ideal Sample Source Files Submission</h5>'), + '#markup' => t('Kindly refer to the following link to know the ideal sample code files submission:') . t('<a href= "https://static.fossee.in/r/Sample_R_Codes/TBC_Sample_Code/Sample_R_Codes.zip" target="_blank"> Click Here</a>') + ); $form['samplefile'] = array( '#type' => 'fieldset', '#title' => t('Sample Source Files <span style="color:red;">*</span>'), |