16 lines
318 B
PHP
16 lines
318 B
PHP
|
|
<?php
|
||
|
|
defined('_JEXEC') or die('Restricted access');
|
||
|
|
|
||
|
|
jimport( 'joomla.application.component.view');
|
||
|
|
|
||
|
|
class ContentView extends JView
|
||
|
|
{
|
||
|
|
function __construct($config = array())
|
||
|
|
{
|
||
|
|
parent::__construct($config);
|
||
|
|
|
||
|
|
//Add the helper path to the JHTML library
|
||
|
|
JHTML::addIncludePath(JPATH_COMPONENT.DS.'helpers');
|
||
|
|
}
|
||
|
|
}
|