Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
I may be interested in sponsoring development of certain modules. How would I go about doing that? And is it cool to make such a request/offer of this community? I have a lot of respect for drupal and the community of developers that keep it so robust - I don't want to offend. Any pointers?
...
<!-- Source the JavaScript spellChecker object -->
<scriptlanguage="javascript" type="text/javascript" src="spellChecker.js">
</script>
<!-- Call a function like this to handle the spell check command -->
<scriptlanguage="javascript" type="text/javascript">
function openSpellChecker() {// get the textarea we're going to checkvar txt = document.myform.mytextarea;
// give the spellChecker object a reference to our textarea// pass any number of text objects as arguments to the constructor:var speller = new spellChecker( txt );
// kick it off
speller.openChecker();
}
</script>
...
i want to remove all entryes from "Parent item:" field that have 4 and more dashes before menu item(like ---- example), how can i do that? so that user was't able to exceed 2 level in menu hierarchy.
thank you in advance.
I am trying to create a new node content type through the node_example.module. I have created the table, changed the proper fields in the module, and uploaded to the modules directory. Before drupal loads, I get the code in plain text. Upon enabling, every page is the code in plain text. What am I doing wrong?