PHP
  Home arrow PHP arrow Page 2 - Inheritance and Polymorphism in PHP: B...
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Sun Developer Network 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Mobile Linux 
App Generation ROI 
VPS Hosting 
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
PHP

Inheritance and Polymorphism in PHP: Building a Form Generator - Part II
By: Alejandro Gervasio
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 25
    2005-04-12

    Table of Contents:
  • Inheritance and Polymorphism in PHP: Building a Form Generator - Part II
  • That refreshing touch: core definition for base class and subclasses
  • There is a long list in your life: listing the full code for each subclass
  • Coming up: more subclasses
  • Implementing the Form Generator: take one

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Inheritance and Polymorphism in PHP: Building a Form Generator - Part II - That refreshing touch: core definition for base class and subclasses


    (Page 2 of 5 )

    Since the subclasses can quite easy be entirely defined, as you'll see in a moment, before looking at their whole source code and logic it would be useful to refresh our memory of the skeletal structure for at least a couple of them. To begin with, let's show the code for the base class, as it was originally defined:

    class formObject {

    var $label;

    var $name;

    var $style;

    function formObject($label,$name,$style){

    (!is_numeric($label))?$this->label=$label:die('Invalid
    parameter '.$label);

    (!is_numeric($name))?$this->name=$name:die('Invalid
    parameter '.$name);

    (!is_numeric($style))?$this->style=$style:die('Invalid
    parameter '.$style);

    }

    function generateHTML(){

    echo 'You are not overriding the generateHTML() method
    of the formObject super class!';

    }

    }

    The above base class is really acting as the core structure for defining any further form element. It offers three common properties ($label, $name and $style) shared by any form element, being inherited in the derived subclasses. It also offers the "generateHTML()" method, which, as we'll see shortly, will take care of generating the proper HTML for each type of form object (text inputs, radio buttons, and so forth).

    Because each subclass is rather defined in a similar fashion, let's remember the basic definitions for the input text and the radio button objects, just to make sure that we're heading the right way for building the form generator. The basic code for the subclass tied to a text input element looked like this:

    // class definition for input text object

    class inputTextObject extends formObject {

    var $value;

    var $maxlength;

    function inputTextObject($label,$name,$style,$value,$maxlength){

    parent::formObject($label,$name,$style);

    // properties setup

    }

    function generateHTML(){

    }

    }

    And, for radio buttons, the code was the following:

    // class definition for radio button object

    class radioButtonObject extends formObject {

    var $value;

    var $checked;

    function radioButtonObject($label,$name,$style,$value,$checked=''){

    parent::formObject($label,$name,$style);

    // properties setup

    }

    function generateHTML(){

    }

    }

    We're not going to list the basic code for each subclass tied to a form element again! That was already done in the previous article. However, demonstrating how they looked in their original incarnation is the perfect foundation for moving forward and seeing the complete code for each subclass.

    If you ever have worked with HTML forms (and who hasn't?), then you know that they offer numerous elements. It seems that the list for all of the subclasses is rather lengthy. If you don't take my word for it, take a look at the following section.

    More PHP Articles
    More By Alejandro Gervasio


       · In this second part, the article defines the source code for each derived subclass...
       · Lately I read part One and must say i very similar to the last one. I think you...
       · I'm sorry you feel that way. Maybe I should have join the two parts in one section....
       · I just wanted to put a note of appreciation for your tutorial so far. In the past...
       · Thank you for the kind words about the article. I see you're working on a future...
       · Alejandro,I was writing a similar class to what you're describing here.. many...
       · Thank you for your positive opinions about the tutorial. They're very...
     

       

    PHP ARTICLES

    - Working With Different Namespaces in PHP 5
    - User Management Explained: Overview
    - Using Namespaces in PHP 5
    - Database Security: Guarding Against SQL Inje...
    - Building a Modular Exception Class in PHP 5
    - Database and Password Security for Web Appli...
    - Handling MySQL Data Set Failures in PHP 5
    - Building Site Registration for Web Applicati...
    - Intercepting Customized Exceptions in PHP 5
    - Securing Your Web Application Against Attacks
    - Sub Classing Exceptions in PHP 5
    - Authentication for Web Application Security
    - Building a Content Management System with Co...
    - Filters and Login Systems for Web Applicatio...
    - Working with the Email Class in Code Igniter





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway
    Stay green...Green IT