Quantcast
Channel: Create a Custom Joomla 2.5 Module
Browsing all 36 articles
Browse latest View live
↧

Ronildo Costa says:

The link to download the example is not working, it might need be added http:// before www.

View Article


Poornima Alexander says:

Thank you very much for this post. It is really advantageous. Thanks a Lot!

View Article


Brad Traversy says:

Sorry Ronildo, it is fixed now.

View Article

Josh says:

Great article! My favourite among all about joomla 2.5 module coding i've read.

View Article

Mindi says:

Very nice tutorials! Only thing I don't understand is 'How you passed $userCount parameter to database query'. I don't see this in your code. Thanks! Mindi

View Article


Fernando Zamora says:

Great! Thank you. :D

View Article

Johannes says:

Thanks a lot for this great straight-forwar d introduction to Joomla 2.5 development. Exactly what I need to get my feet wet; having to do some Joomla stuff for a client right now. There are two things...

View Article

Brad Traversy says:

Mindi, you are correct, I didnt have the user count in the query. I changed the query in helper.php to use it. Please see above

View Article


BehRang says:

nice tutorial that's worked for me, just can you help if I want to add a drop-down list field to XML file, retrieve data from database? now I created it but the options is manual not from DB !

View Article


darshan says:

i tried it....its showing a error in default.php file in foreach loop,like this: Invalid argument supplied for foreach()

View Article

xalibeut says:

Hi Brad, very good introduction for joomla module creation. How would you go with an AJAX Database Module. I am trying to create a module that will fetch information from a database with ajax. The main...

View Article

Raul says:

I have the same question as BehRang I want to add a drop-down list field to XML file, retrieve data from database? for example table names and display all the tables in the database? Thanks

View Article

Anusha Isaacraj says:

Awesome tutorial ! Working perfect :-)

View Article


Engr. Saiful Islam says:

Very Useful. Thanks.

View Article

sandro says:

Hey, very cool tutorial! It worked fine with me, but I got one question.. How come if I simply change $row->name into $row->email I get an error and nothing works anymore? Even if I have that...

View Article


sandro says:

Hi Brad, it's me again! I got it, sorry.. I have to change the $query too: $query = "SELECT email FROM #__users LIMIT {$userCount}"; but how can I retrieve more than one field? (and.. I know this is...

View Article

Vipul says:

1. How can I make some fields mandatory in the basic options that are defined in the xml file? 2. How can I apply some checks over the entered fields in the options(I want the user to enter URLs only)?

View Article


Brad Traversy says:

To select more than one field just add them to your query after "email" or use an asterisk(*) to select ALL fields on that table SELECT email,field2,fi eld3 FROM #__users LIMIT.... OR SELECT * FROM...

View Article

Brad Traversy says:

I will be making a tutorial on this.. Basically, you need to define a custom field type in order to display database fields. You need to define a class that extends JFormFieldList. See this forum post...

View Article

Armando Quinones says:

Hey there.. what about this scenario... I have a module installed that I edited to change what it does .. I now want to install the original module and keep both .. Should I.. change the values of the...

View Article
Browsing all 36 articles
Browse latest View live