Search found 3 matches
- Tue Jan 15, 2008 2:48 am
- Forum: Announcements Discussions
- Topic: Discuss: Joomla! 1.5 RC4 --- Introducing Karibu
- Replies: 51
- Views: 40120
Re: Discuss: Joomla! 1.5 RC4 --- Introducing Karibu
sooo..... in seeing that everything is lvl 3 and higher, does that mean that the stable release will be out this week?
- Tue Nov 20, 2007 4:54 pm
- Forum: Joombie Coding Q/A
- Topic: how do I get id of a user who compiled a form?
- Replies: 2
- Views: 692
Re: how do I get id of a user who compiled a form?
I did it this way in my component i'm working on $user =& JFactory::getUser(); if($user->id) { $row->user_id = $user->id; } All i care about at the immediate moment is their ID, and getting that into a collection I called $row, so I set the $user variable, check to make sure there is an Id in it, an...
- Mon Nov 05, 2007 1:27 am
- Forum: Joombie Coding Q/A
- Topic: filters
- Replies: 0
- Views: 411
filters
I'm working on a component, and having a bit of an issue figuring out how to do the filtering. Can anyone give me some direction on how to understand how it works so i can use it? Basically I want to be able to filter on a predetermined set of things, like a dropdown menu, and then also to be able t...