Search found 7 matches

by soup a loignon y crouton
Fri Aug 24, 2007 12:38 am
Forum: Joombie Coding Q/A
Topic: php patterns
Replies: 3
Views: 1132

Re: php patterns

another good document explaining the MVC architecture can be found here:

http://manual.cakephp.org/chapter/basic_concepts
by soup a loignon y crouton
Fri Aug 24, 2007 12:16 am
Forum: Joombie Coding Q/A
Topic: question about components development
Replies: 1
Views: 626

question about components development

I went through the MVC tutorials and I agree that the the new API is clean and logical but now i am at a loss when i look at the joomla 1.5 code. under administrators if you compare for example the folder structure  for the components : com_banners and com_contacts in com_banners I see the fold...
by soup a loignon y crouton
Thu Aug 23, 2007 2:23 am
Forum: Joomla! Coding 101
Topic: Joomla! Version 1.3.4
Replies: 20
Views: 3797

Re: Joomla! Version 1.3.4

you need to evaluate clearly your needs and see if you can get by with pure GPL extensions or if you identified already components or modules available under a commercial license. it is very unlikely that developers developing applications under commercial license will develop a 1.5 version of their...
by soup a loignon y crouton
Wed Aug 22, 2007 1:22 am
Forum: Joombie Think Tank
Topic: Writing Components/Modules/Mabots/Plugins for ALL versions. ( start 1.0.12 )
Replies: 6
Views: 2236

Re: Writing Components/Modules/Mabots/Plugins for ALL versions. ( start 1.0.12 )

it might be a large undertaking to try to code both for 1.0 and 1.5. with the new mvc framework in 1.5, you would have to create a huge class library just to insure the compatibility but is it really worth the effort ? php 4.0 supports ends at the end of the year per the php project. thus more than ...
by soup a loignon y crouton
Wed Aug 22, 2007 12:42 am
Forum: Joombie Coding Q/A
Topic: Custom Cookies?
Replies: 4
Views: 1274

Re: Custom Cookies?

The two points of interest are $_COOKIE and setcookie. Cookie information sent by the browser is accessed with $_COOKIE, a super global array containing cookie values keyed by name. The setcookie function is used to assign a key/value pair to be sent back to the client. The client uses the new valu...
by soup a loignon y crouton
Wed Aug 22, 2007 12:32 am
Forum: Joombie Coding Q/A
Topic: Recommendations for learning general programming concepts
Replies: 8
Views: 1751

Re: Recommendations for learning general programming concepts

@pommond a good way for me to learn a new computer language was to create small examples. 1. look at the joomla 1.5 code in components like content , weblinks... a tutorial on joomla site explains how it is done 2. look at what they do, then go to site like devzone to read some tutorials on a specif...
by soup a loignon y crouton
Wed Aug 22, 2007 12:08 am
Forum: Joombie Tools of the Trade
Topic: Building the Ship - IDE
Replies: 116
Views: 27890

Re: Building the Ship - IDE

i have a question about the next piece of the environment. i am using eclipse since a long time for java development and i am used to it and it will work for php. however, another element now is the mvc programming pattern . since setting up Eclipse to work with Cake is fairly simple, i am planning ...