<div dir="ltr"><br>
<b>Parse error</b>:  syntax error, unexpected T_STRING in <b>E:\WorkingProjects\site\modules\mEvents\mEvents.module</b> on line <b>27</b><br><br><div class="gmail_quote">On Fri, Aug 1, 2008 at 1:53 PM,  <span dir="ltr">&lt;<a href="mailto:rolf@openusource.com">rolf@openusource.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">In drupal_add_js you will have to specify the path and name to your js file.<br>
<br>
If you are calling drupal_add_js in a module and the js file is located<br>
within the module directory, you should call the function like this:<br>
<br>
drupal_add_js(drupal_get_path(&#39;module&#39;, &#39;my_module&#39;).&#39;/my_javascript.js&#39;);<br>
<br>
If know the absolute path to the file, you should call the function like<br>
this:<br>
<br>
drupal_add_js(&#39;some/path/my_javascript.js&#39;);<br>
<br>
Note that if you are working with some special modules it might be<br>
necessary to add $base_url to the absolute path, like this:<br>
<br>
global $base_url;<br>
drupal_add_js($base_url.&#39;some/path/my_javascript.js&#39;);<br>
<br>
Regards,<br>
rolfington<br>
<div><div></div><div class="Wj3C7c"><br>
<br>
&gt; Am using drupal 5.7<br>
&gt;<br>
&gt; i created the custom events display,<br>
&gt;<br>
&gt; in that i added the search event ,<br>
&gt;<br>
&gt; for that search , i written the validation ,<br>
&gt;<br>
&gt; I include the JS file,...<br>
&gt; in the top of the search form,<br>
&gt;<br>
&gt; But no use...<br>
&gt;<br>
&gt; drupal_add_js(&quot;event_search.js&quot;)<br>
&gt; strSearch = &quot;&quot;;<br>
&gt; &nbsp; &nbsp; for(i=0;i&lt;arrSearch.length;i++){<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; strSearch+=arrSearch[i]+&quot;+&quot;;<br>
&gt; &nbsp; &nbsp; }<br>
&gt; &nbsp; &nbsp; if(strSearch!=&quot;&quot;){<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; strSearch = strSearch.substr(0,(strSearch.length-1));<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; //alert(strSearch);<br>
&gt; &nbsp; &nbsp; }<br>
&gt; &nbsp;window.location.href=&quot;/site1/?q=search/node/event/&quot;+strSearch; return<br>
&gt; false;}&lt;/script&gt;&#39;;<br>
&gt; &nbsp;$block[&#39;content&#39;].= &#39;&lt;form action=&quot;/site1/?q=search/node/event&quot;<br>
&gt; name=&quot;frm_search_event&quot; &nbsp;accept-charset=&quot;UTF-8&quot; method=&quot;post&quot;<br>
&gt; id=&quot;search-form&quot; class=&quot;search-form&quot; &nbsp;onsubmit=&quot;return<br>
&gt; event_search_validation();&quot;&gt;&#39;;<br>
&gt; &nbsp;$block[&#39;content&#39;].= &#39;&lt;div&gt;&lt;div class=&quot;form-item&quot;&gt;&#39;;<br>
&gt;<br>
&gt; &nbsp;$block[&#39;content&#39;].= &#39;&lt;div class=&quot;container-inline&quot;<br>
&gt; style=&quot;margin-right:100px;&quot;&gt;&lt;div class=&quot;form-item&quot;&gt;&#39;;<br>
&gt; &nbsp;$block[&#39;content&#39;].= &#39;&lt;input type=&quot;text&quot; maxlength=&quot;255&quot; name=&quot;keys&quot;<br>
&gt; id=&quot;edit-keys&quot; name=&quot;txt_search_event&quot; &nbsp;size=&quot;25&quot; value=&quot;&quot;<br>
&gt; class=&quot;form-text&quot;/&gt;&#39;;<br>
&gt; &nbsp;$block[&#39;content&#39;].= &#39;&lt;/div&gt;&#39;;<br>
&gt; &nbsp;$block[&#39;content&#39;].= &#39;&lt;input type=&quot;image&quot;<br>
&gt; src=&quot;files/images/btn-search-events.jpg&quot; align=&quot;middle&quot; width=&quot;96&quot;<br>
&gt; height=&quot;21 name=&quot;ops&quot; id=&quot;edit-submits&quot; value=&quot;Events Search&quot;<br>
&gt; class=&quot;form-submit&quot; onClick=&quot;javascript:return goToEventSearch();&quot; /&gt;&#39;;<br>
&gt; &nbsp;$block[&#39;content&#39;].= &#39;&lt;/div&gt;&#39;;<br>
&gt; &nbsp;$block[&#39;content&#39;].= &#39;&lt;/div&gt;&#39;;<br>
&gt; &nbsp;$block[&#39;content&#39;].= &#39;&lt;input type=&quot;hidden&quot; name=&quot;form_token&quot;<br>
&gt; id=&quot;edit-search-form-form-token&quot; value=&quot;29ae915e9bd7e3eb6d8a484b7095fed5&quot;<br>
&gt; /&gt;&#39;;<br>
&gt; &nbsp;$block[&#39;content&#39;].= &#39;&lt;input type=&quot;hidden&quot; name=&quot;form_id&quot;<br>
&gt; id=&quot;edit-search-form&quot; value=&quot;search_form&quot; &nbsp;/&gt;&#39;;<br>
&gt; &nbsp;$block[&#39;content&#39;].= &#39;&lt;/div&gt;&lt;/form&gt;&#39;;<br>
&gt;<br>
&gt; Thanks u<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Fri, Aug 1, 2008 at 11:56 AM, &lt;<a href="mailto:rolf@openusource.com">rolf@openusource.com</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; Hi,<br>
&gt;&gt;<br>
&gt;&gt; That&#39;s the way to do it!<br>
&gt;&gt;<br>
&gt;&gt; &gt;From which file do you call drupal_add_js? Make sure that the PHP file<br>
&gt;&gt; is<br>
&gt;&gt; part of your running installation.<br>
&gt;&gt;<br>
&gt;&gt; Which version of drupal are you using?<br>
&gt;&gt;<br>
&gt;&gt; Regards,<br>
&gt;&gt; Rolfington<br>
&gt;&gt;<br>
&gt;&gt; &gt; Hi<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; How to include the JS file ,<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; I tried drupal_add_js ,<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; but file not included<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Any idea<br>
&gt;&gt; &gt; --<br>
&gt;&gt; &gt; [ Drupal support list | <a href="http://lists.drupal.org/" target="_blank">http://lists.drupal.org/</a> ]<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; [ Drupal support list | <a href="http://lists.drupal.org/" target="_blank">http://lists.drupal.org/</a> ]<br>
&gt;&gt;<br>
&gt; --<br>
&gt; [ Drupal support list | <a href="http://lists.drupal.org/" target="_blank">http://lists.drupal.org/</a> ]<br>
<br>
<br>
--<br>
[ Drupal support list | <a href="http://lists.drupal.org/" target="_blank">http://lists.drupal.org/</a> ]<br>
</div></div></blockquote></div><br></div>