Ejemplo n.º 1
0
 function __construct($config = array())
 {
     parent::__construct($config);
     self::$com_kbi_admin = JPATH_ROOT . DS . 'administrator' . DS . 'components' . DS . 'com_kbi';
     $this->featurelist = dirname(__FILE__) . '/assets/featurelist.xml';
     $this->datadescription = dirname(__FILE__) . '/assets/datadescription.xml';
 }
Ejemplo n.º 2
0
<?php

/**
 * Entry point for component. It switches to corresponding controller given by paramter.
 *
 * @version		$Id$
 * @package		com_kbi
 * @author		Andrej Hazucha
 * @copyright	Copyright (C) 2010 All rights reserved.
 * @license		GNU/GPL, see LICENSE.php
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
// Require the com_content helper library
require_once JPATH_COMPONENT . DS . 'controller.php';
// Create the controller
$controller = new ARDesignerController();
// Perform the Request task
$controller->execute(JRequest::getCmd('task'));
// Redirect if set by the controller
$controller->redirect();