Home arrow PHP arrow 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.

TABLE OF CONTENTS:
  1. Scratching the Surface: Getting Started with PHP Fusebox
  2. Step 1: Setting Up the Core Files
  3. What do the "core files" do?
  4. A Word on FuseDocs
  5. Fusebox Naming Conventions
  6. Picking Up Where We Left Off: Setting Up the Core Files
  7. Using XFAs
  8. Step 2: Creating the "Biography" Circuit
  9. Almost There!
  10. PHP-Fusebox Links
  11. Fusebox Links
By: Mike Britton
Rating: starstarstarstarstar / 8
May 29, 2002

print this article
SEARCH DEV SHED

TOOLS YOU CAN USE

advertisement

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.



 
 
>>> More PHP Articles          >>> More By Mike Britton
 

blog comments powered by Disqus
   

PHP ARTICLES

- Hackers Compromise PHP Sites to Launch Attac...
- Red Hat, Zend Form OpenShift PaaS Alliance
- PHP IDE News
- BCD, Zend Extend PHP Partnership
- PHP FAQ Highlight
- PHP Creator Didn't Set Out to Create a Langu...
- PHP Trends Revealed in Zend Study
- PHP: Best Methods for Running Scheduled Jobs
- PHP Array Functions: array_change_key_case
- PHP array_combine Function
- PHP array_chunk Function
- PHP Closures as View Helpers: Lazy-Loading F...
- Using PHP Closures as View Helpers
- PHP File and Operating System Program Execut...
- PHP: Effects of Wrapping Code in Class Const...

Developer Shed Affiliates

 



© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap

Dev Shed Tutorial Topics: