PHP Classes

File: examples/formcontroller/controllers/Form1.php

Recommend this page to a friend!
  Classes of Haseeb Ahmad Basil   PHP Skeleton Framework   examples/formcontroller/controllers/Form1.php   Download  
File: examples/formcontroller/controllers/Form1.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Skeleton Framework
Extensive Web application development framework
Author: By
Last change:
Date: 8 years ago
Size: 2,629 bytes
 

Contents

Class file image Download
<?php
#require_once('A/Filter/Regexp.php');
#require_once('A/Filter/Toupper.php');
#require_once('A/Rule/Notnull.php');
#require_once('A/Rule/Match.php');
#require_once('A/Rule/Range.php');
#require_once('A/Rule/Length.php');
#require_once('A/Controller/Form.php');

class Form1 extends A_Controller_Form {

    function
__construct($locator=null) {
   
$handlers = array(
           
'init' => array($this, '_init'),
           
'submit' => array($this, '_submit'),
           
'done' => array($this, '_done')
            );
       
parent::__construct($locator, $handlers);
    }
   
    function
index($locator) {
       
// get parameter object from controller
       
$this->addField($param1 = new A_Controller_Form_Field('field1'));
       
$param1->addFilter(new A_Filter_Regexp('/[^0-9]/', ''));
       
$param1->addRule(new A_Rule_Notnull('field1', 'Please enter Field 1'));
       
$param1->addRule(new A_Rule_Range(1, 10, 'field1', 'Field 1 must be 1-10'));
       
$param1->setType(array('renderer'=>'A_Html_Form_Select', 'values'=>array(5, 10, 15), 'labels'=>array('five', 'ten', 'fifteen')));
       
       
$this->addField($param2 = new A_Controller_Form_Field('field2'));
       
$param2->addFilter(new A_Filter_Regexp('/[^0-9]/', ''));
       
$param2->addRule(new A_Rule_Notnull('field2', 'Please enter Field 2'));
       
$param2->addRule(new A_Rule_Match('field1', 'field2', 'Field 2 must match Field 1'));
       
$param2->setType(array('renderer'=>'A_Html_Form_Text','size'=>'10'));
       
       
$this->addField($param3 = new A_Controller_Form_Field('field3'));
       
$param3->addFilter(new A_Filter_Regexp('/[^a-zA-Z]/', ''));
       
$param3->addRule(new A_Rule_Length(5, 20, 'field3', 'Field 3 must be 5-20 characters'));
       
       
// create parameter object then add it to the controller
       
$this->addField($param4 = new A_Controller_Form_Field('field4'));
       
$param4->addFilter(new A_Filter_Regexp('/[^a-zA-Z]/', ''));
       
$param4->addFilter(new A_Filter_ToUpper());
       
$param4->addRule(new A_Rule_Notnull('field4', 'Please enter Field 4'));
       
       
parent::run($locator);
    }

/*
 * State Handler Classes
 */

   
function _init($locator) {
        echo
'InitHandler: STATE INIT<br/>';
       
$controller = $locator->get('Controller');
       
       
$this->set('field1', 15);
       
$this->set('field2', 'init');
       
$this->set('field3', 'init');
       
$this->set('field4', 'init');

        include
'templates/example_form.php';
    }
   
    function
_submit($locator) {
        echo
'SubmitHandler: STATE SUBMITTED<br/>';
       
$controller = $locator->get('Controller');
   
        include
'templates/example_form.php';
    }
   
    function
_done($locator) {
        echo
'DoneHandler: STATE DONE<br/><br/><a href="../">Return to Examples</a>';
    }
   
}

?>