<?php
defined( '_JEXEC' ) or die( 'Restricted access' );
jimport('joomla.application.component.view');
/**
* HTML View class for the mycomponent component
* @package Mycomponent
*/
class ChalangeAdminViewCategoriesAdmin extends JView{
function display($tpl=null){
$model=& $this->getModel();
$datos= $model->getCategories();
$this->assignRef('categories',$datos);
parent::display($tpl);
}
}
?>