Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
component.php
Aller à la documentation de ce fichier.
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  */
20 {
21  /**
22  * Renders a component script and returns the results as a string
23  *
24  * @param string $component The name of the component to render
25  * @param array $params Associative array of values
26  * @param string $content Content script
27  *
28  * @return string The output of the script
29  *
30  * @since 11.1
31  */
32  public function render($component = null, $params = array(), $content = null)
33  {
34  return $content;
35  }
36 }