Index: filefield_sources.module
===================================================================
--- filefield_sources.module	(revision 3)
+++ filefield_sources.module	(working copy)
@@ -399,3 +399,26 @@
   $b = (array)$b + array('weight' => 0, 'label' => '');
   return $a['weight'] < $b['weight'] ? -1 : ($a['weight'] > $b['weight'] ? 1 : strnatcasecmp($a['label'], $b['label']));
 }
+/**
+ * Implementation of hook_help().
+ */
+function filefield_sources_help($section) {
+$output = "";
+switch ($section) {
+	case 'admin/help#filefield_sources':
+		$output = '<p>'. t('Extract the filefield_sources  in your modules directory.<br> Activate the module through /admin/build/modules and go to the <a href="@content"> content management page</a>' , array('@content' => url('admin/content/types'))) .'</p>';
+$output .= '<p>'. t('Add a new content type or edit the one for which you want to add the filefield_sources extension.<br> In both cases you have to go through the following procedure.'); 
+ $output .= '<p>'. t('Go to <a href="@content"> content management page</a> and click on "manage fields" link.<br> You will be redirected to field list of your content type').'</p>'; 
+ $output .= '<p>'. t('Scroll down till "New Field". Fill the text-boxes "Label" and "Field Name" with value of your choice.<br> 
+In drop down "Type of data to store" select the option "File" and "File upload" in the drop down "Form element to edit the data". 
+Click on the Save button to save the settings.').'</p>'; 
+$output .= '<p>'. t('At this stage you should be automatically redirected to your content type page setting.<br>
+Click on "File sources" link and check the options you want to use. Save your settings and you are done. <br>Go to /node/add/your-type and enjoy the extension of "File Source" field.') .'</p>'; 
+
+$output .= '<p>'. t('When working FileField Sources, remember that:') .'</p>';
+$output .= '<ul><li>'. t('Only the files uploaded through the field "File Sources" will show in IMCE file browser  or auto-complete textfield.') .'</li></ul>'; 
+
+$output .= '<p>' . t('If you still run in troubles go to /admin/content/node-type/your-type/fields/field_file_source and review your settings. ') .'</p>';
+	} 
+	return $output;
+}
