Now: Tutorial for Web and Software Design > PHP > PHP Basic > PHP Content
> Implementing MVC in PHP: The View [Bookmark it]
Implementing MVC in PHP: The View

Implementing MVC in PHP: The View

Other Presenters

You can create other presenters, as well. I've created one called debug.php that simply displays various debugging information. You could change your model class's $presenter to debug and it would render completely differently.



Additionally, you could create a presentation layer called rest.php that outputs the model class's $data variable as well-formed XML. If your model detected a REST request, it would switch the presenter by assigning rest to $this->presenter.

<?php



  /**

  * FR_Presenter_rest

  *

  * @author Joe Stump <joe@joestump.net>

  * @copyright Joe Stump <joe@joestump.net>

  * @license http://www.opensource.org/licenses/gpl-license.php

  * @package Framework

  * @filesource

  */



  require_once('XML/Serializer.php');



  /**

  * FR_Presenter_rest

  *

  * Want to display your module's data in valid XML rather than HTML? This

  * presenter will automatically take your data and output it in valid XML.

  *

  * @author Joe Stump <joe@joestump.net>

  * @package Framework

  */

  class FR_Presenter_rest extends FR_Presenter_common

  {

      // {{{ __construct(FR_Module $module)

      /**

      * __construct

      *

      * @author Joe Stump <joe@joestump.net>

      * @access public

      * @param mixed $module Instance of FR_Module

      * @return void

      */

      public function __construct(FR_Module $module)

      {

          parent::__construct($module);

      }

      // }}}

      // {{{ display()

      /**

      * display

      *

      * Output our data array using the PEAR package XML_Serializer. This may

      * not be the optimal output you want for your REST API, but it should

      * display valid XML that can be easily consumed by anyone.

      *

      * @author Joe Stump <joe@joestump.net>

      * @return void

      * @link http://pear.php.net/package/XML_Serializer

      */

      public function display()

      {

          $xml = new XML_Serializer();

          $xml->serialize($this->module->getData());



          header("Content-Type: text/xml");

          echo '<?xml version="1.0" encoding="UTF-8" ?>'."\n";

          echo $xml->getSerializedData();

      }

      // }}}

      // {{{ __destruct()

      public function __destruct()

      {

          parent::__destruct();

      }

      // }}}

  }



?>

In the REST presentation layer I use the PEAR package XML_Serializer to output the FR_Module::$data array as valid XML. It's not extremely intuitive, but it does allow me to output my module in valid XML. I use this REST presentation layer later on in one of my applications.

Conclusion

You get the idea. The presentation layer is an extremely flexible way of displaying the model. To make things even better you can dynamically switch the presenter in the model before the controller renders the module class via the presentation layer.

Before I move on, I'd like to plant the seed for another presentation layer. How about using htmldoc in a presenter named pdf to render your module class as a PDF document?

Up Next

The next article will covering the model portion of the MVC framework, to which my framework also refers as "modules" and "module classes" up to this point. My example model will be a simple module to log people in and out of the system. After that you'll be on your own to build up my little framework into something useful!

Joe Stump is currently the technology manager for eNotes.com.


Return to the PHP DevCenter.

Prev  [1] [2] 

[Bookmark][Print] [Close][To Top]
  • Prev Article-PHP:

  • Next Article-PHP:
  • Related Materias
    Important Notice for Apach
    Custom-Compiling Apache an
    Simplify Your Life with Ap
    Industrial-Strength Webcas
    Monitoring Apache Page-Loa
    Implementing MVC in PHP: T
    Simplify PHP Development w
    Improve Your Build Process
    Implementing MVC in PHP: T
    Important Notice for PHP D
    Topics
    Photoshop Tutorial
     

    Special Effect

      3D Effect
      Photoshop Articles
    Programming Tutorial
     

    C/C++ Tutorial

      Visual Basic
      C# Tutorial
    Database Tutorial
     

    MySQL Tutorial

      MS SQL Tutorial
      Oracle Tutorial
    Graphic Design Tutorial
     

    Coreldraw Tutorial

      Illustrator Tutorial
      3D Graphics Articles
    Webmaster Articles
     

    Domain Service

      Web Hosting
      Site Promotion
    Java Tutorial&Articles
     

    Java Servlets

      JavaEE Tutorial
     

    JavaBeans Tutorial

    XML Tutorial&Articles
     

    XML Style Tutorial

      AJAX Tutorial
      XML Mobile
    Flash Tutorial&Articles
     

    Flash Video

      Action Script
      Flash Articles
    OS Tutorial&Articles
     

    Linux Tutorial

      Symbian Tutorial
      MacOS Tutorial