HomePHP Page 4 - Scratching the Surface: Getting Started with PHP Fusebox
A Word on FuseDocs - PHP
Originally designed for ColdFusion, Fusebox is a methodology for designing web-applications with extensibility and ease of maintenance that is now available for PHP.
Requirements baselines and prototyping are thoroughly embedded in the architecting techniques favored by Fusebox developers. Part of this process is the creation of documentation elements called FuseDocs. The basic form of a Fusebox 3-compliant XML fusedoc for PHP:
/*
<fusedoc fuse="dsp_circuitName.php">
<responsibilities>
I display information to the user.
</responsibilities>
<history author="Mike Britton" email="mbritton72@djtrock.com" date="20 April 2002" type="Update">File created</history>
<io>
<in>
<string name=" " default="" />
<string name=" " default="" />
</in>
<out>
<boolean name=" " default=" " />
<string name=" " default="" />
</out>
</io>
</fusedoc>
*/
For more on FuseDocs, visit http://www.HalHelms.com, where you'll find a wealth of resources on the subject.