Source for file view.php

Documentation is available at view.php

  1. <?php
  2. /**
  3.  * @package     Joomla.Platform
  4.  * @subpackage  View
  5.  *
  6.  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
  7.  * @license     GNU General Public License version 2 or later; see LICENSE
  8.  */
  9.  
  10. defined('JPATH_PLATFORM'or die;
  11.  
  12. /**
  13.  * Joomla Platform View Interface
  14.  *
  15.  * @package     Joomla.Platform
  16.  * @subpackage  View
  17.  * @since       12.1
  18.  */
  19. interface JView
  20. {
  21.     /**
  22.      * Method to escape output.
  23.      *
  24.      * @param   string  $output  The output to escape.
  25.      *
  26.      * @return  string  The escaped output.
  27.      *
  28.      * @since   12.1
  29.      */
  30.     public function escape($output);
  31.  
  32.     /**
  33.      * Method to render the view.
  34.      *
  35.      * @return  string  The rendered view.
  36.      *
  37.      * @since   12.1
  38.      * @throws  RuntimeException
  39.      */
  40.     public function render();
  41. }

Documentation generated on Tue, 19 Nov 2013 15:18:12 +0100 by phpDocumentor 1.4.3