git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_WebCongresos/trunk@2 94ccb1af-fd9d-d947-8d90-7f70ea60afc8
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');
|
|
}
|
|
}
|