PHP Classes

File: awfDialog/readme.txt

Recommend this page to a friend!
  Classes of AW Ford   awfDialog Wizard   awfDialog/readme.txt   Download  
File: awfDialog/readme.txt
Role: License text
Content type: text/plain
Description: ReadMe File
Class: awfDialog Wizard
Generate wizard-like Web user interface using AJAX
Author: By
Last change: v 1.2 update
Date: 16 years ago
Size: 2,431 bytes
 

Contents

Class file image Download
*********************************************** ** awfDialog Class (PHP programming object) Version 1.2 *********************************************** Generate dynamic, AJAX enabled wizard-style dialog boxes such as those found in standard desktop applications. Copyright (C) 2008 A.W. Ford, flooredmusic.nospam AT gmail.com I'm happy to answer questions, however, quite extensive documentation is provided. Please bother to read it before asking is all I ask. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. A copy of the GNU License is located at awfDialog/docs/license.php *********************************************** Complete documentation can be found in the awfDialog/docs folder. Working samples can be found in the awfDialog/examples folder. *********************************************** Dependencies: - GD library for dynamic gradient support - class.gradient_image.php by Fabricio Biazzotto *********************************************** Installation: Quick Start 1. Unzip the contents of the package zip file 2. Upload the the awfdialog directory and all sub-directories to your server. 3. Include the class using: include('awfDialog/lib/awfDialog.php'); Change the include path based on relativity to file doing the inclusion. 4. Create an instance of the class: $myClass = new awfDialog('id','My First Dialog','Hello World!', ICON_INFO,false,'300'); Start manipulating the class using available functions and properties. See below for detailed description of each. 5. When you're ready to render your dialog box: $myClass->Render(); 6. Happy coding!