Project

General

Profile

1
<?php
2

    
3
namespace OpenAIRE\Component\Widget\Administrator\View\Hello;
4

    
5
defined('_JEXEC') or die;
6

    
7
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
8

    
9
/**
10
 * @package     Joomla.Administrator
11
 * @subpackage  com_openaire
12
 *
13
 * @copyright   Copyright (C) 2020 John Smith. All rights reserved.
14
 * @license     GNU General Public License version 3; see LICENSE
15
 */
16

    
17
/**
18
 * Main "Hello World" Admin View
19
 */
20
class HtmlView extends BaseHtmlView {
21
    
22
    /**
23
     * Display the main "Hello World" view
24
     *
25
     * @param   string  $tpl  The name of the template file to parse; automatically searches through the template paths.
26
     * @return  void
27
     */
28
    function display($tpl = null) {
29
        parent::display($tpl);
30
    }
31

    
32
}
    (1-1/1)