I recently submitted my first Drupal module, an API for displaying table data unrelated to nodes (where Views can't be used): http://drupal.org/project/dataview
I decided to add an example into the project, so other developers could see how to implement the API, so I created an additional module (called filesview), and put the module's folder into a folder called example in the folder for the main project.
I then logged into my CVS account, navigated to the project folder and did the following:
If the user is logged in and we use the search, we have the following error:
"Fehler bei der Gültigkeitsüberprüfung, bitte erneut versuchen. Falls der Fehler bestehen bleibt, wenden Sie sich bitte an den Administrator der Website."
I'm currently programming a module with which one can send out SMS from a drupal site. For the site I'm making this, I used the modules usernodes and node profile, so that every user profile is a node. In these nodes are various cck fields.
My question is: how can I access the cck field, where a users mobile phone number is stored, from my module and use it from there?
Also my Goal would be that in the module settings page, one could chose, which cck field is the mobile number field, so that stuff like that doesn't get hard coded.
I'm using the brilliant quiz module and have a question. Each of my quizzes will have an assigned image on the front page and when the user wants to take a certain quiz he/she just clicks on its image. I also want to get rid of the hook_menus "Take quiz" which I know how to do - but not how to start a quiz without the use of hook_menus.