Search found 6 matches

by Urme
Fri Dec 14, 2007 8:55 am
Forum: Joombie Coding Q/A
Topic: New to Joomla. Learn 1.0.13 or 1.5?
Replies: 6
Views: 955

Re: New to Joomla. Learn 1.0.13 or 1.5?

Personally I decided to go for 1.0.13 for now, I will use 1.5 when it's out of RC, even though it might be stable in it's current release and alot better than 1.0.13. There are more components, modules etc for 1.0.13 as well atm, and just take a thing like the JCE editor, doesn't work with 1.5 afaik...
by Urme
Fri Dec 14, 2007 8:02 am
Forum: Joomla! Coding 101
Topic: Accessing / checking something in com_content...
Replies: 3
Views: 2707

Re: Accessing / checking something in com_content...

Wouldn't this work (Joomla 1.0.13):

Code: Select all

if ( $params->get( 'item_title' ) ) {
 echo $row->title;
}
by Urme
Thu Dec 13, 2007 9:38 am
Forum: Joombie Coding Q/A
Topic: radioList, a new line for each option?
Replies: 2
Views: 525

Re: radioList, a new line for each option?

Where can I find instructions how to install JHTML on Joomla 1.0.13?

I tried the display:block and it kind of works, but now the radiobutton ends up on it's own line then the label/text on new line.
by Urme
Mon Dec 10, 2007 2:51 pm
Forum: Joombie Coding Q/A
Topic: radioList, a new line for each option?
Replies: 2
Views: 525

radioList, a new line for each option?

Dunno if I'm seriously blind or something, I searched both Google and this forum but can't find the answer to my question. I a radioList which looks like this: $voluntary = array(); $voluntary[] = mosHTML::makeOption('0','Option1'); $voluntary[] = mosHTML::makeOption('1','Option2'); $lists["voluntar...
by Urme
Fri Nov 09, 2007 10:20 am
Forum: Joombie Coding Q/A
Topic: getting more columns in com_user/user.php:userEdit();
Replies: 1
Views: 546

Re: getting more columns in com_user/user.php:userEdit();

I found the solution: Added more variables in the function mosUser in joomla.php class mosUser extends mosDBTable { /** @var int Unique id*/ var $id = null; /** @var string The users real name (or nickname)*/ var $name = null; /** @var string The login name*/ var $username = null; /** @var string em...
by Urme
Fri Nov 09, 2007 9:40 am
Forum: Joombie Coding Q/A
Topic: getting more columns in com_user/user.php:userEdit();
Replies: 1
Views: 546

getting more columns in com_user/user.php:userEdit();

I'm trying to edit the "Your details" page, I've added another column in jos_users table, which I named "address". Now I'm trying to recieve the data in that column when a user is editing his details. I'm 100% sure this is the function I need to change, if I add $row->address = "testtest"; after $ro...