Source for file component.php

Documentation is available at component.php

  1. <?php
  2. /**
  3.  * @package     Joomla.Platform
  4.  * @subpackage  Document
  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.  * Component renderer
  14.  *
  15.  * @package     Joomla.Platform
  16.  * @subpackage  Document
  17.  * @since       11.1
  18.  */
  19. {
  20.     /**
  21.      * Renders a component script and returns the results as a string
  22.      *
  23.      * @param   string  $component  The name of the component to render
  24.      * @param   array   $params     Associative array of values
  25.      * @param   string  $content    Content script
  26.      *
  27.      * @return  string  The output of the script
  28.      *
  29.      * @since   11.1
  30.      */
  31.     public function render($component null$params array()$content null)
  32.     {
  33.         return $content;
  34.     }
  35. }

Documentation generated on Tue, 19 Nov 2013 14:56:16 +0100 by phpDocumentor 1.4.3