Ticket #517: function.note.php
| File function.note.php, 500 bytes (added by Lipki, 10 months ago) |
|---|
| Line | |
|---|---|
| 1 | <?php |
| 2 | /** |
| 3 | * @package jelix |
| 4 | * @subpackage jtpl_plugin |
| 5 | * @author Lepeltier kévin |
| 6 | * @copyright 2007 Lepeltier kévin |
| 7 | * @link http://www.jelix.org |
| 8 | * @licence GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html |
| 9 | */ |
| 10 | |
| 11 | /** |
| 12 | * note plugin : inclu tpl dans un autre |
| 13 | * |
| 14 | * @param jTpl $tpl template engine |
| 15 | * @param string $sel the tpl selector (string) |
| 16 | */ |
| 17 | function jtpl_function_html_note($tpl, $sel) { |
| 18 | |
| 19 | echo $tpl->fetch($sel); |
| 20 | |
| 21 | } |
| 22 | ?> |
