Your Design Sucks!
Great Presentation by Paul Boag about how to get design sign off. Some really useful insights as to how Headscape does it. Makes a lot of sense.
http://headscape.co.uk/head/
adventures in web development
Great Presentation by Paul Boag about how to get design sign off. Some really useful insights as to how Headscape does it. Makes a lot of sense.
http://headscape.co.uk/head/
A superb collection of skateboard graphics complied by Chris Spooner.
http://vectortuts.com/designing/30-cool-vector-illustrated-skateboard-decks/
After searching for a long time I still couldn’t find any tutorials on how to set up my directories and code to enable a nice tidy logical folder structure that contains each module of a larger application.
The standard (non-modular) structure is as follows.
web_root/
application/
controllers/
views/
scripts/
models/
library/
htdocs/
To use a modular structure is actually very simple.
Create a ‘modules’ directory under the ‘application’ directory.
You guessed it – place all your module directories here. In each module directory is a standard MVC structure that you would normally see below the ‘application’ dir.
For example say you had a public area and an admin area. This is how it might look.
web_root/
application/
modules/
admin/
controllers/
views/
scripts/
models/
guest/
controllers/
views/
scripts/
models/
library/
htdocs/
This can be extended for as many modules as you wish.
You now need to declare where the modules are located to your scripts. There are a few ways to achieve this, but by far the easiest is to add one line of code to the bootstrap file.
$front->addModuleDirectory('/web_root/application/modules');
Thats it, unless you are using Zend_Layout which I plan to cover in part two of this tutorial.
For more information look in the Zend Framework Manual.
If Cobain could have used photoshop…
http://psdtuts.com/tutorials-effects/50-dirty-filthy-grunge-photoshop-effects/
Useful little app that creates repeatable background patterns.
Change colour, image, canvas texture and view on the website before downloading.
A decent book from Cal Evans published by php|architect.
Based on ZF RC 1.5 so out of date now, but some useful stuff on using web services.
Because it was released as Zend_Layout was only a week old there is a very small appendix on the subject.
Also some of concepts in the ‘Globals secret-super-ninja class’ could now be better executed using Zend_Registry.
On the whole not bad, but until it’s updated you are better reading the docs and the various tutorials out there.
7/10